Skip to content

Commit

Permalink
Possible websocket fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-jsummer committed Oct 28, 2024
1 parent 4dbce89 commit 91a5248
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions journeys/iteration.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
from streamlit import config
# Set minCachedMessageSize to 500 MB to disable forward message cache:
# st.set_config would trigger an error, only the set_config from config module works
config.set_option("global.minCachedMessageSize", 500 * 1e6)

import json
import time
from typing import Any, Dict, List, Optional
Expand Down

0 comments on commit 91a5248

Please sign in to comment.