Skip to content

Commit

Permalink
Fix : Daemon are active by default #1455. Passive reactionner seems n…
Browse files Browse the repository at this point in the history
…ot to work
  • Loading branch information
Sébastien Coavoux committed Jan 14, 2015
1 parent 343943b commit fa90a46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shinken/satellitelink.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class SatelliteLink(Item):
'satellitemap': DictProp(default={}, elts_prop=AddrProp, to_send=True, override=True),
'use_ssl': BoolProp(default=False, fill_brok=['full_status']),
'hard_ssl_name_check':BoolProp(default=True, fill_brok=['full_status']),
'passive': BoolProp(default=True, fill_brok=['full_status'], to_send=True),
'passive': BoolProp(default=False, fill_brok=['full_status'], to_send=True),
})

running_properties = Item.running_properties.copy()
Expand Down

1 comment on commit fa90a46

@naparuba
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Arg, bad bug combo. Congrats for finding it 👍

Please sign in to comment.