Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
WP Plugins
Cron-Control
Commits
207e552c
Commit
207e552c
authored
Aug 01, 2017
by
Erick Hitter
Committed by
GitHub
Aug 01, 2017
Browse files
Don't constrain unless necessary
parent
f82c797e
Changes
1
Hide whitespace changes
Inline
Side-by-side
includes/constants.php
View file @
207e552c
...
...
@@ -8,16 +8,16 @@ namespace Automattic\WP\Cron_Control;
$job_queue_size
=
10
;
if
(
defined
(
'CRON_CONTROL_JOB_QUEUE_SIZE'
)
&&
is_numeric
(
\
CRON_CONTROL_JOB_QUEUE_SIZE
)
)
{
$job_queue_size
=
absint
(
\
CRON_CONTROL_JOB_QUEUE_SIZE
);
$job_queue_size
=
max
(
1
,
min
(
$job_queue_size
,
250
)
);
}
$job_queue_size
=
max
(
1
,
min
(
$job_queue_size
,
250
)
);
define
(
__NAMESPACE__
.
'\JOB_QUEUE_SIZE'
,
$job_queue_size
);
unset
(
$job_queue_size
);
$job_concurrency_limit
=
10
;
if
(
defined
(
'CRON_CONTROL_JOB_CONCURRENCY_LIMIT'
)
&&
is_numeric
(
\
CRON_CONTROL_JOB_CONCURRENCY_LIMIT
)
)
{
$job_concurrency_limit
=
absint
(
\
CRON_CONTROL_JOB_CONCURRENCY_LIMIT
);
$job_concurrency_limit
=
max
(
1
,
min
(
$job_concurrency_limit
,
250
)
);
}
$job_concurrency_limit
=
max
(
1
,
min
(
$job_concurrency_limit
,
250
)
);
define
(
__NAMESPACE__
.
'\JOB_CONCURRENCY_LIMIT'
,
$job_concurrency_limit
);
unset
(
$job_concurrency_limit
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment