Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Backend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Arkindex
Backend
Merge requests
!2233
Remove Ponos from CE
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Remove Ponos from CE
move-ponos-ee
into
community
Overview
1
Commits
23
Pipelines
0
Changes
1
Merged
Valentin Rigal
requested to merge
move-ponos-ee
into
community
1 year ago
Overview
1
Commits
23
Pipelines
0
Changes
1
Expand
Based on
!2227 (merged)
TODO:
Remove & update tests
Edited
1 year ago
by
Valentin Rigal
0
0
Merge request reports
Viewing commit
69b30464
Show latest version
1 file
+
10
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
69b30464
Support stopping task
· 69b30464
Valentin Rigal
authored
1 year ago
arkindex/ponos/tasks.py
+
10
−
1
Options
@@ -114,10 +114,18 @@ def run_docker_task(client, task, temp_dir):
task
.
state
=
State
.
Running
task
.
save
()
# 4. Read logs
(see agent.setup_logging)
# 4. Read logs
logger
.
debug
(
"
Reading logs from the docker container
"
)
data
=
b
""
for
line
in
container
.
logs
(
stream
=
True
):
# Stop a task scheduled to be stopped
task
.
refresh_from_db
()
if
task
.
state
==
State
.
Stopping
:
container
.
stop
()
task
.
state
=
State
.
Stopped
task
.
save
()
return
data
+=
line
try
:
task
.
logs
.
s3_object
.
upload_fileobj
(
@@ -128,6 +136,7 @@ def run_docker_task(client, task, temp_dir):
logger
.
warning
(
f
"
Failed uploading logs for task
{
task
}
:
{
e
}
"
)
# 5. Retrieve the state of the container
# Reload container to update `attrs` attribute
container
.
reload
()
exit_code
=
container
.
attrs
[
"
State
"
][
"
ExitCode
"
]
if
exit_code
!=
0
:
Loading