Skip to content

Commit

Permalink
debugging heroku
Browse files Browse the repository at this point in the history
  • Loading branch information
farirat committed Feb 24, 2022
1 parent e7636dc commit 4def573
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jasmin/protocols/http/configs.py
Expand Up @@ -17,7 +17,7 @@ def __init__(self, config_file=None):
ConfigFile.__init__(self, config_file)

self.bind = self._get('http-api', 'bind', os.getenv('API_BIND', '0.0.0.0'))
self.port = self._getint('http-api', 'port', os.getenv('API_PORT', 1401))
self.port = self._getint('http-api', 'port', int(os.getenv('API_PORT', 1401)))

# Logging
self.access_log = self._get(
Expand Down

0 comments on commit 4def573

Please sign in to comment.