Skip to content

Commit

Permalink
bugfix: enable env binds for ssl.cert and ssl.key options
Browse files Browse the repository at this point in the history
  • Loading branch information
edaniszewski committed Apr 13, 2020
1 parent 183d943 commit c6b51b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions synse_server/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
))
)),
DictOption('ssl', required=False, scheme=Scheme(
Option('cert', field_type=str),
Option('key', field_type=str),
Option('cert', bind_env=True, field_type=str),
Option('key', bind_env=True, field_type=str),
)),
DictOption('metrics', scheme=Scheme(
Option('enabled', default=False, bind_env=True, field_type=bool),
Expand Down

0 comments on commit c6b51b1

Please sign in to comment.