Changeset 1774 for pykota/trunk
- Timestamp:
- 10/05/04 11:20:07 (20 years ago)
- Location:
- pykota/trunk
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/NEWS
r1771 r1774 24 24 - 1.20alpha20 : 25 25 26 - Reduced delay in internal SNMP and PJL_over_TCP handlers 27 from 2 to 1 second. 28 26 29 - dumpykota can now output XML. 27 30 -
pykota/trunk/pykota/accounters/hardware.py
r1749 r1774 22 22 # 23 23 # $Log$ 24 # Revision 1.29 2004/10/05 09:20:07 jalet 25 # Reduced delay from 2 to 1 seconds in internal SNMP and PJL_over_TCP 26 # handlers 27 # 24 28 # Revision 1.28 2004/09/27 20:09:30 jalet 25 29 # Lowered timeout delay for PJL queries … … 128 132 from pykota.accounter import AccounterBase, PyKotaAccounterError 129 133 130 ITERATIONDELAY = 2.0 # 2 Seconds134 ITERATIONDELAY = 1.0 # 1 Second 131 135 STABILIZATIONDELAY = 3 # We must read three times the same value to consider it to be stable 132 136