Skip to content

Commit

Permalink
🐛 Event-log enpoint hot fix.
Browse files Browse the repository at this point in the history
🐛 Event-log enpoint doesn't return TRACE_START + TRACE_END anymore.
  • Loading branch information
jonahschueller authored Dec 16, 2020
1 parent 172d297 commit 9ce0e59
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/api/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ def event_log():
try:
content = event_store.pull_event_log(id)

log, activities = importer.import_str(content, [], [])
log, activities = \
importer.import_str(content, [], [], extended_trace=False)

return jsonify({
'id': id,
Expand Down

0 comments on commit 9ce0e59

Please sign in to comment.