Skip to content

Commit

Permalink
fixed port
Browse files Browse the repository at this point in the history
  • Loading branch information
valearna committed Dec 12, 2024
1 parent f886323 commit ea97913
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def main():
sentence_classification_reader = SentenceClassificationReader()
app.add_route('/api/sentence_classification/{req_type}', sentence_classification_reader)

httpd = simple_server.make_server('0.0.0.0', int(8003), app)
httpd = simple_server.make_server('0.0.0.0', int(8002), app)
httpd.serve_forever()


Expand Down

0 comments on commit ea97913

Please sign in to comment.