input memes work now
continuous-integration/drone/push Build was killed Details

This commit is contained in:
Torma Kristóf 2020-10-23 18:37:18 +02:00
parent ad34718991
commit 837869065f
Signed by: tormakris
GPG Key ID: DC83C4F2C41B1047
1 changed files with 1 additions and 1 deletions

View File

@ -204,7 +204,7 @@ class InputAnalyzer(CsvAnalyzer):
item = {}
for (name, value) in items:
item[name] = value.strip()
sec = datetime.datetime.strptime(item['http_start_time'], '%Y-%m-%dT%H:%M:%S.%f')
sec = datetime.datetime.strptime(item['http_start_time'], '%Y-%m-%dT%H:%M:%S.%f').strftime("%H:%M:%S")
if sec not in responsepersec:
responsepersec[sec] = []
else: