Skip to content

Commit ea24369

Browse files
authored
Update real-time-transcription-python.md
update port from 5001 to 8081
1 parent 5278d1b commit ea24369

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/communication-services/how-tos/call-automation/includes/real-time-transcription-python.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,9 +132,9 @@ async def handle_client(websocket, path):
132132
except Exception as e:
133133
print("Unexpected error: %s", e)
134134

135-
start_server = websockets.serve(handle_client, "localhost", 5001)
135+
start_server = websockets.serve(handle_client, "localhost", 8081)
136136

137-
print('WebSocket server running on port 5001')
137+
print('WebSocket server running on port 8081')
138138

139139
asyncio.get_event_loop().run_until_complete(start_server)
140140
asyncio.get_event_loop().run_forever()

0 commit comments

Comments
 (0)