From 83dcf7bcfc0705c1c243eff965c0dabd0e854ee6 Mon Sep 17 00:00:00 2001 From: Olivier Cuypers Date: Thu, 19 Sep 2019 19:18:28 +0200 Subject: [PATCH 1/2] fix(formatter): comply date to ISO format --- src/formatter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/formatter.py b/src/formatter.py index 1b1ebcc..ea260aa 100644 --- a/src/formatter.py +++ b/src/formatter.py @@ -75,7 +75,7 @@ def format_time(record): https://en.wikipedia.org/wiki/ISO_8601 """ utc_time = time.gmtime(record.created) - time_string = time.strftime('%Y-%m-%d %H:%M:%S', utc_time) + time_string = time.strftime('%Y-%m-%dT%H:%M:%S', utc_time) return '%s.%03dZ' % (time_string, record.msecs) From ef82fbfade5df25b845719409bff32b4defc79f6 Mon Sep 17 00:00:00 2001 From: Olivier Cuypers Date: Thu, 19 Sep 2019 21:01:58 +0200 Subject: [PATCH 2/2] fix(circleci): add workflow to have context envs --- .circleci/config.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6ddf6a7..6d30a45 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -25,3 +25,9 @@ jobs: bash ./run-sonar.sh check bash ./run-sonar.sh install bash ./run-sonar.sh run +workflows: + version: 2 + main: + jobs: + - build: + context: DockerHub