Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to JiHu GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Chenhao Ma
core
Commits
88322e80
Commit
88322e80
authored
7 years ago
by
Harsha Kethineni
Committed by
Megan Henning
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
add to job log if job is orphaned
parent
292686e0
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
api/jobs/queue.py
+4
-3
4 additions, 3 deletions
api/jobs/queue.py
with
4 additions
and
3 deletions
api/jobs/queue.py
+
4
−
3
View file @
88322e80
...
...
@@ -8,7 +8,7 @@ import pymongo
import
datetime
from
..
import
config
from
.jobs
import
Job
from
.jobs
import
Job
,
Logs
from
.gears
import
get_gear
,
validate_gear_config
,
fill_gear_default_values
from
..validators
import
InputValidationException
from
..dao.containerutil
import
create_filereference_from_dictionary
,
create_containerreference_from_dictionary
,
create_containerreference_from_filereference
...
...
@@ -411,6 +411,7 @@ class Queue(object):
else
:
orphaned
+=
1
j
=
Job
.
load
(
doc
)
Queue
.
retry
(
j
)
Logs
.
add
(
j
.
id_
,
[{
"
msg
"
:
"
The job did not report in for a long time and was canceled.
"
,
"
fd
"
:
-
1
}])
new_id
=
Queue
.
retry
(
j
)
Logs
.
add
(
j
.
id_
,
[{
"
msg
"
:
"
Retried job as
"
+
str
(
new_id
)
if
new_id
else
"
Job retries exceeded maximum allowed
"
,
"
fd
"
:
-
1
}])
return
orphaned
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