Skip to content

Commit

Permalink
Issue #225: Changed default WS Port to 5054
Browse files Browse the repository at this point in the history
  • Loading branch information
gornostal committed Mar 31, 2018
1 parent fc1edda commit 7e97f98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ulauncher/api/server/ExtensionServer.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def start(self):

@run_async(daemon=True)
def _start_thread(self):
self.port = self.port or find_unused_port(5050)
self.port = self.port or find_unused_port(5054)
logger.info('Starting WS server on port %s' % self.port)
self.ws_server = SimpleWebSocketServer(self.hostname,
self.port,
Expand Down

0 comments on commit 7e97f98

Please sign in to comment.