diff options
author | Johannes Weißl <[email protected]> | 2013-07-18 22:09:51 +0200 |
---|---|---|
committer | Johannes Weißl <[email protected]> | 2013-09-05 09:29:10 +0200 |
commit | 720721e41c90cc2105326cf0e84accae75a1786a (patch) | |
tree | d97c510d6eb180e3e82eb822b1ff6790000af5f3 /lib/dialyzer/test/r9c_SUITE_data/src | |
parent | 3d893f4b170a43e746d65496e254afd8c4571f14 (diff) | |
download | otp-720721e41c90cc2105326cf0e84accae75a1786a.tar.gz otp-720721e41c90cc2105326cf0e84accae75a1786a.tar.bz2 otp-720721e41c90cc2105326cf0e84accae75a1786a.zip |
Fix httpd config option 'script_timeout'
This fixes the usage of the httpd configuration option 'script_timeout',
which got ignored before.
The documentation states that the value is in seconds, which was true
when using the Apache like configuration file, but not true when using
the proplist style configuration.
Diffstat (limited to 'lib/dialyzer/test/r9c_SUITE_data/src')
-rw-r--r-- | lib/dialyzer/test/r9c_SUITE_data/src/inets/mod_cgi.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dialyzer/test/r9c_SUITE_data/src/inets/mod_cgi.erl b/lib/dialyzer/test/r9c_SUITE_data/src/inets/mod_cgi.erl index d3f67eb77a..8c91b6f430 100644 --- a/lib/dialyzer/test/r9c_SUITE_data/src/inets/mod_cgi.erl +++ b/lib/dialyzer/test/r9c_SUITE_data/src/inets/mod_cgi.erl @@ -338,7 +338,7 @@ exec_script(false,Info,Script,_AfterScript,_RequestURI) -> %% proxy(#mod{config_db = ConfigDb} = Info, Port) -> - Timeout = httpd_util:lookup(ConfigDb, cgi_timeout, ?DEFAULT_CGI_TIMEOUT), + Timeout = httpd_util:lookup(ConfigDb, script_timeout, ?DEFAULT_CGI_TIMEOUT), proxy(Info, Port, 0, undefined,[], Timeout). proxy(Info, Port, Size, StatusCode, AccResponse, Timeout) -> |