Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix has_served_traffic safety check so it doesn't break notebook development #694

Merged
merged 4 commits into from
Jul 30, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion mesop/runtime/runtime.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,11 @@ def context(self) -> Context:
return g._mesop_context

def create_context(self) -> Context:
self._has_served_traffic = True
# In debug mode, do not set _has_served_traffic to True,
# otherwise this breaks Colab / notebok use cases where users
# will want to register pages after traffic has been served.
if not self.debug_mode:
self._has_served_traffic = True
if len(self._state_classes) == 0:
states = {EmptyState: EmptyState()}
else:
Expand Down
Loading