Skip to content

Commit 75990a8

Browse files
Fix traceback hash for error monitoring (#1700)
fix traceback hash for error monitoring
1 parent fa35715 commit 75990a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

install/error-handling.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ cleanup () {
148148
echo "$traceback"
149149

150150
if [ "$REPORT_SELF_HOSTED_ISSUES" == 1 ]; then
151-
local traceback_hash=$(echo -n $traceback | docker run --rm busybox md5sum | cut -d' ' -f1)
151+
local traceback_hash=$(echo -n $traceback | docker run -i --rm busybox md5sum | cut -d' ' -f1)
152152
send_event "$traceback_hash" "$cmd_exit"
153153
fi
154154

0 commit comments

Comments
 (0)