Skip to content
This repository has been archived by the owner on Jun 6, 2024. It is now read-only.

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Binyang2014 committed May 19, 2021
1 parent 6c8e2ed commit 7010edc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pylon/config/pylon.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def run(self):
port = self.service_configuration['port']
sslConfig = {'port': 443}
if 'ssl' in self.service_configuration:
sslConfig= self.service_configuration['ssl']
sslConfig.update(self.service_configuration['ssl'])
sslPort = sslConfig['port']
uri = 'http://{0}:{1}'.format(master_ip, port)
uriHttps = 'https://{0}:{1}'.format(master_ip, sslPort)
Expand Down

0 comments on commit 7010edc

Please sign in to comment.