Skip to content

Commit

Permalink
Merge pull request #109 from NASA-AMMOS/issue-108
Browse files Browse the repository at this point in the history
Issue #108 - Pull all attributes from kwargs and config
  • Loading branch information
MJJoyce authored May 27, 2020
2 parents c9593bb + 2939cb9 commit e4b2825
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ait/dsn/sle/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,8 @@ def __init__(self, *args, **kwargs):
kwargs.get('initiator_id', 'LSE'))
self._responder_id = ait.config.get('dsn.sle.responder_id',
kwargs.get('responder_id', 'SSE'))
self._password = ait.config.get('dsn.sle.password', None)
self._password = ait.config.get('dsn.sle.password',
kwargs.get('password', None))
self._peer_password = ait.config.get('dsn.sle.peer_password',
kwargs.get('peer_password', None))
self._responder_port = ait.config.get('dsn.sle.responder_port',
Expand Down

0 comments on commit e4b2825

Please sign in to comment.