Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
renzodgc committed Nov 13, 2020
1 parent 691f2ca commit c48741d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/processor_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def start(self):
if self.settings.config.get_boolean("API", "SSLEnabled"):
# HTTPs is enabled
kwargs.update({
"ssl_keyfile": f"{self.settings.config.get_section_dict("API")["SSLKeyFile"]}",
"ssl_certfile": f"{self.settings.config.get_section_dict("API")["SSLCertificateFile"]}"
"ssl_keyfile": f"{self.settings.config.get_section_dict('API')['SSLKeyFile']}",
"ssl_certfile": f"{self.settings.config.get_section_dict('API')['SSLCertificateFile']}"
})
uvicorn.run(self.app, **kwargs)

0 comments on commit c48741d

Please sign in to comment.