Skip to content

Commit 9bec841

Browse files
authored
Fix url escaping on exceptions dashboard for non-string keys (#8891)
1 parent 4840709 commit 9bec841

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

distributed/http/templates/exceptions.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ <h2 class="title is-3">Exceptions</h2>
2626
<div style="display: inline-block;">
2727
<p>
2828
<span>Task:</span>
29-
<code> <a href="../task/{{ url_escape(ts.key) }}.html">{{ts.key}}</a> </code>
29+
<code> <a href="../task/{{ url_escape(str(ts.key)) }}.html">{{ts.key}}</a> </code>
3030
</p>
3131
<div>
3232
<span>Worker(s):</span>

0 commit comments

Comments
 (0)