diff options
author | elie <elie> | 2013-11-25 22:16:44 +0000 |
---|---|---|
committer | elie <elie> | 2013-11-25 22:16:44 +0000 |
commit | 733925089b0d3196a42e3c949ed6b80c5a5c170a (patch) | |
tree | 93da2b1231502c8863be30176b5e863a6aac8e18 /examples | |
parent | 878f0b03eb6dd52d72df85223f706eded1fabc02 (diff) | |
download | pysnmp-git-733925089b0d3196a42e3c949ed6b80c5a5c170a.tar.gz |
comments improved
Diffstat (limited to 'examples')
-rw-r--r-- | examples/hlapi/asyncore/sync/manager/cmdgen/custom-timeout-and-retries.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/hlapi/asyncore/sync/manager/cmdgen/custom-timeout-and-retries.py b/examples/hlapi/asyncore/sync/manager/cmdgen/custom-timeout-and-retries.py index 2c06aab1..35f575d5 100644 --- a/examples/hlapi/asyncore/sync/manager/cmdgen/custom-timeout-and-retries.py +++ b/examples/hlapi/asyncore/sync/manager/cmdgen/custom-timeout-and-retries.py @@ -13,10 +13,10 @@ # individual request timeout in seconds) can be set on a per-target basis # as explained by the code that follows. # -# Keep in mind that while timeout value can be specified in fraction of a -# second, default pysnmp timer resolution is quite low (tenth of a second) -# so there's no much point in using timeouts below 0.5. Internal timer -# can be programmatically adjusted to finer resolution if needed. +# Keep in mind that while timeout value can be specified in fractions of a +# second, default pysnmp timer resolution is quite low (about 0.5 sec) +# so there's no much point in using timeouts which is not a multiple of 0.5 +# Internal timer can be programmatically adjusted to finer resolution if needed. # # If retries value is set to 0, pysnmp will issue a single request. Even # if no response arrives, there will be no retry. Likewise, retries=1 |