Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
argo
nrm
Commits
bfe0f5b1
Commit
bfe0f5b1
authored
Jan 21, 2019
by
Valentin Reis
Browse files
Adds container_exit to `cmd`'s filters. This prints the "profile_data"
container.
parent
27a3fdec
Changes
1
Hide whitespace changes
Inline
Side-by-side
bin/cmd
View file @
bfe0f5b1
...
...
@@ -73,6 +73,10 @@ class CommandLineInterface(object):
print
(
"%s, %s, %s"
%
(
msg
.
type
,
time
.
time
(),
msg
.
total
))
sys
.
stdout
.
flush
()
if
msg
.
type
==
"container_exit"
:
print
(
"%s, %s, %s"
%
(
msg
.
type
,
time
.
time
(),
msg
.
profile_data
))
sys
.
stdout
.
flush
()
else
:
print
(
"%s, %s"
%
(
msg
.
type
,
time
.
time
()))
sys
.
stdout
.
flush
()
...
...
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