Skip to content

Commit

Permalink
Fix invalid option of traitlets
Browse files Browse the repository at this point in the history
  • Loading branch information
dtaniwaki committed Feb 21, 2018
1 parent c9a64a9 commit a7a5d5c
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions ucrspawner/ucrspawner.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,13 @@ class UCRSpawner(Spawner):
help='Constraints to be passed through to Marathon').tag(config=True)

mesos_master_host = Unicode(
u'',
help="Hostname of Mesos Master server").tag(config=True, allow_none=True)
None,
help=dedent(
"""
Hostname of Mesos Master server.
Leave it empty if you want to use Mesos leader UI URL of Marathon config.
"""
), allow_none=True).tag(config=True)

unreachable_strategy = Any(
None,
Expand Down

0 comments on commit a7a5d5c

Please sign in to comment.