Skip to content

Commit

Permalink
Format bytes in info worker page (#1752)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrocklin committed Feb 12, 2018
1 parent 319fd87 commit 155b040
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion distributed/bokeh/templates/worker.html
Expand Up @@ -17,7 +17,7 @@ <h2 class="subtitle"> In Memory </h2>
{% for ts in ws.has_what %}
<tr>
<td> <a href="../task/{{ url_escape(ts.key) }}.html">{{ts.key}}</a></td>
<td> {{ts.nbytes}} </td>
<td> {{format_bytes(ts.nbytes)}} </td>
</tr>
{% end %}
</table>
Expand Down

0 comments on commit 155b040

Please sign in to comment.