Skip to content

Commit

Permalink
bump export section size limit for replica dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
mraszyk committed Apr 19, 2023
1 parent 9e5f877 commit f91841d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rs/http_endpoints/public/templates/dashboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ <h3>Execution state</h3>
<tr><td>stable_memory_size</td><td>{{ exec_state.stable_memory.size }} pages</td></tr>
<tr><td>exports</td><td>
{% let dbg = format!("{:?}", exec_state.exports) %}
{% if dbg.len() > 5000 %}
{% if dbg.len() > 25000 %}
Exports' debug string is too large: {{ dbg.len() }} bytes!
{% else %}
{{ dbg }}
Expand Down

0 comments on commit f91841d

Please sign in to comment.