We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddad11e commit a4acb2aCopy full SHA for a4acb2a
waterfall/cvo-waterfall.py
@@ -3,6 +3,7 @@
3
# $ curl -s https://storage.googleapis.com/origin-ci-test/logs/release-openshift-origin-installer-e2e-aws-4.0/6016/artifacts/e2e-aws/pods/openshift-cluster-version_cluster-version-operator-74d8d99566-2bh4q_cluster-version-operator.log.gz | gunzip | cvo-waterfall.py >cvo.svg
4
5
import datetime
6
+import logging
7
import re
8
import sys
9
@@ -33,6 +34,7 @@
33
34
for objType, names in resources.items():
35
for name, data in names.items():
36
if 'Done syncing' not in data:
37
+ logging.warning('not finished: {} {}'.format(objType, name))
38
continue
39
start = (data['Running sync'] - reference_time).total_seconds()
40
stop = (data['Done syncing'] - reference_time).total_seconds()
0 commit comments