2013-10-17 17:40:50 -03:00
|
|
|
"""Constants."""
|
|
|
|
|
2013-11-01 18:12:50 -03:00
|
|
|
# After the connection is lost, log warnings after this many write()s.
|
2013-10-17 17:40:50 -03:00
|
|
|
LOG_THRESHOLD_FOR_CONNLOST_WRITES = 5
|
2013-11-01 18:12:50 -03:00
|
|
|
|
|
|
|
# Seconds to wait before retrying accept().
|
|
|
|
ACCEPT_RETRY_DELAY = 1
|
2017-11-07 12:50:48 -04:00
|
|
|
|
|
|
|
# Number of stack entries to capture in debug mode.
|
|
|
|
# The large the number, the slower the operation in debug mode
|
|
|
|
# (see extract_stack() in events.py)
|
|
|
|
DEBUG_STACK_DEPTH = 10
|