Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
ultimate_cron-3279834
Manage
Activity
Members
Labels
Plan
Custom issue tracker
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Issue forks
ultimate_cron-3279834
Commits
dff61ebb
Verified
Commit
dff61ebb
authored
7 years ago
by
vilepickle
Committed by
Arne Jørgensen
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Issue
#2803913
by vilepickle: Don't print watchdog message if cleaning up 0 released locks
parent
2ebeafe8
No related branches found
Branches containing commit
Tags
7.x-1.0-alpha1
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ultimate_cron.lock.inc
+5
-3
5 additions, 3 deletions
ultimate_cron.lock.inc
with
5 additions
and
3 deletions
ultimate_cron.lock.inc
+
5
−
3
View file @
dff61ebb
...
...
@@ -257,9 +257,11 @@ class UltimateCronLock {
}
}
}
while
(
$lids
);
watchdog
(
'ultimate_cron_lock'
,
'Cleaned up @count released locks'
,
array
(
'@count'
=>
$count
,
),
WATCHDOG_DEBUG
);
if
(
$count
>
0
)
{
watchdog
(
'ultimate_cron_lock'
,
'Cleaned up @count released locks'
,
array
(
'@count'
=>
$count
,
),
WATCHDOG_DEBUG
);
}
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment