From 36cb92f6d5055a17e7f0c4bb0cac453b98ee18c8 Mon Sep 17 00:00:00 2001 From: Ivan Usov Date: Mon, 23 Feb 2026 12:54:21 +0100 Subject: [PATCH] Avoid reconnection feature in bokeh/3.8+ --- pyzebra/app/main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyzebra/app/main.py b/pyzebra/app/main.py index 8fd4fdd..98ecb41 100644 --- a/pyzebra/app/main.py +++ b/pyzebra/app/main.py @@ -20,6 +20,8 @@ from pyzebra.app import ( ) doc = curdoc() +doc.config.reconnect_session = False +doc.config.notify_connection_status = False doc.title = "pyzebra" parser = argparse.ArgumentParser()