Skip to content

Commit

Permalink
Fix for issue #1184
Browse files Browse the repository at this point in the history
  • Loading branch information
chidanandpujar committed Jul 20, 2022
1 parent 1c10fbc commit c56c10f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/jnpr/junos/device.py
Original file line number Diff line number Diff line change
Expand Up @@ -1231,7 +1231,7 @@ def __init__(self, *vargs, **kvargs):
self._fact_style = kvargs.get("fact_style", "new")
self._use_filter = kvargs.get("use_filter", False)
self._huge_tree = kvargs.get("huge_tree", False)
self._conn_open_timeout = kvargs.get("conn_open_timeout", None)
self._conn_open_timeout = kvargs.get("conn_open_timeout", 30)
if self._fact_style != "new":
warnings.warn(
"fact-style %s will be removed in a future "
Expand Down

0 comments on commit c56c10f

Please sign in to comment.