Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
containers
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
argo
containers
Commits
3e8a8ca8
Commit
3e8a8ca8
authored
Dec 20, 2018
by
Kamil Iskra
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fix-kill-content' into 'master'
[fix] Fixes issue
#4
Closes
#4
See merge request
!7
parents
80cc57b0
c16f13a8
Pipeline
#4748
passed with stage
in 33 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/container_manager.cpp
src/container_manager.cpp
+3
-3
No files found.
src/container_manager.cpp
View file @
3e8a8ca8
...
...
@@ -1076,14 +1076,14 @@ void Container_manager::clean_config(string command)
_containers
[
i
]
->
check_task_ownership
(
true
,
true
);
}
if
(
kill_content
)
sleep
(
1
);
vector
<
Argo_container
*>::
iterator
it
;
for
(
it
=
_containers
.
begin
();
it
!=
_containers
.
end
();
it
++
)
{
if
(
kill_content
)
{
(
*
it
)
->
kill_content
(
false
);
sleep
(
1
);
}
(
*
it
)
->
remove
();
delete
*
it
;
}
...
...
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