Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56f0b81 commit e81e474Copy full SHA for e81e474
1 file changed
lib/controller/checks.py
@@ -1180,8 +1180,8 @@ def checkWaf():
1180
conf.identifyWaf = True
1181
1182
if conf.timeout == defaults.timeout:
1183
- logger.warning("dropping timeout to 5 seconds (i.e. '--timeout=5')")
1184
- conf.timeout = 5
+ logger.warning("dropping timeout to %d seconds (i.e. '--timeout=%d')" % (IDS_WAF_CHECK_TIMEOUT, IDS_WAF_CHECK_TIMEOUT))
+ conf.timeout = IDS_WAF_CHECK_TIMEOUT
1185
1186
return retVal
1187
0 commit comments