You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Being signed into multiple accounts (e.g. a corporate and a personal Microsoft
138
+
account) does **not** by itself break the WebSocket — those extra accounts live as
139
+
cookies on the identity provider's domain, not on your app's domain, so they do not
140
+
enlarge your app's request headers. If multiple accounts *seem* to matter, it is
141
+
usually because one account simply has larger tokens and tips you over the header
142
+
limit described above.
143
+
144
+
What multiple accounts *can* cause is the wrong account being selected during login.
145
+
To control this, forward a `prompt` parameter to the provider via
146
+
`oauth_extra_params`, for example for Azure/Entra ID:
72
147
73
-
You may experience this issue when the *token* used by the client to create the WebSocket connection to the Panel server has grown larger than allowed by your proxy settings.
74
-
This is particularly common when using the `--oauth-encryption-key` parameter, which significantly increases the token size.
75
-
76
-
To troubleshoot, try removing the `--oauth-encryption-key` parameter or `PANEL_OAUTH_ENCRYPTION` environment variable to see if encryption is the cause of the issue.
77
-
78
-
Potential solutions include:
79
-
80
-
1.**Update your proxy settings** to allow larger header sizes (recommended for production environments).
81
-
82
-
2.**Run without an encryption key** (less secure, but works with default proxy configurations)
83
-
84
-
For more details on this issue, see [Issue #7909](https://github.com/holoviz/panel/issues/7909).
85
-
86
-
#### Cause: Multiple Accounts
87
-
88
-
You may experience this issue when using multiple accounts (for example corporate and personal) in the same browser. Try opening your Panel application in a private/incognito browser window to test if this might be the cause.
89
-
90
-
If this confirms that browser history or configuration is causing the issue, try one or more of these steps:
0 commit comments