Skip to content

Commit

Permalink
Merge pull request #1192 from chidanandpujar/pyez_timeout
Browse files Browse the repository at this point in the history
Fix for issue #1184
  • Loading branch information
dineshbaburam91 authored Jul 21, 2022
2 parents 1c10fbc + c56c10f commit 95de2a4
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 95de2a4

Please sign in to comment.