Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Felix Seibert
xtreemfs_client
Commits
4fca1206
Commit
4fca1206
authored
Mar 22, 2018
by
Felix Seibert
Browse files
removing redundant wait loop
parent
14be265d
Changes
1
Hide whitespace changes
Inline
Side-by-side
xtreemfs_client/div_util.py
View file @
4fca1206
...
...
@@ -86,12 +86,6 @@ def run_commands(commands, max_processes=200, print_errors=True):
for
finished_process
in
difference
:
del
running_processes_map
[
finished_process
]
# for p in running_processes:
for
p
in
running_processes_map
:
p
.
wait
()
num_finished
+=
1
print
(
"progress: "
+
str
(
num_finished
)
+
"/"
+
str
(
num_total
))
# for finished_process in running_processes:
for
finished_process
in
running_processes_map
:
# try:
...
...
@@ -105,6 +99,9 @@ def run_commands(commands, max_processes=200, print_errors=True):
if
print_errors
:
print_error
(
finished_process
)
num_finished
+=
1
print
(
"progress: "
+
str
(
num_finished
)
+
"/"
+
str
(
num_total
))
return
errored_processes
# return list(map(lambda proc: (proc.args, proc.communicate(), proc.returncode), all_processes))
...
...
Write
Preview
Supports
Markdown
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