Skip to content

Commit

Permalink
Fix url escaping on exceptions dashboard for non-string keys (#8891)
Browse files Browse the repository at this point in the history
  • Loading branch information
phofl authored Oct 15, 2024
1 parent 4840709 commit 9bec841
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion distributed/http/templates/exceptions.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ <h2 class="title is-3">Exceptions</h2>
<div style="display: inline-block;">
<p>
<span>Task:</span>
<code> <a href="../task/{{ url_escape(ts.key) }}.html">{{ts.key}}</a> </code>
<code> <a href="../task/{{ url_escape(str(ts.key)) }}.html">{{ts.key}}</a> </code>
</p>
<div>
<span>Worker(s):</span>
Expand Down

0 comments on commit 9bec841

Please sign in to comment.