summaryrefslogtreecommitdiff
path: root/src/script.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/script.c')
-rw-r--r--src/script.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script.c b/src/script.c
index 8b1545b1a..d99c928ce 100644
--- a/src/script.c
+++ b/src/script.c
@@ -85,7 +85,7 @@ int scriptInterrupt(scriptRunCtx *run_ctx) {
}
long long elapsed = elapsedMs(run_ctx->start_time);
- if (elapsed < server.script_time_limit) {
+ if (elapsed < server.busy_reply_threshold) {
return SCRIPT_CONTINUE;
}