Fixed Blazor reconnection after system sleep (#849)
Some checks are pending
Build and Release / Determine run mode (push) Waiting to run
Build and Release / Read metadata (push) Blocked by required conditions
Build and Release / Sync Flatpak repo (push) Blocked by required conditions
Build and Release / Collect Flatpak artifacts (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-apple-darwin, osx-arm64, macos-latest, aarch64-apple-darwin, dmg,app,updater, dmg) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-pc-windows-msvc.exe, win-arm64, windows-latest, aarch64-pc-windows-msvc, nsis,updater, nsis) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-unknown-linux-gnu, linux-arm64, ubuntu-22.04-arm, aarch64-unknown-linux-gnu, appimage,updater, appimage) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-apple-darwin, osx-x64, macos-latest, x86_64-apple-darwin, dmg,app,updater, dmg) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-unknown-linux-gnu, linux-x64, ubuntu-22.04, x86_64-unknown-linux-gnu, appimage,updater, appimage) (push) Blocked by required conditions
Build and Release / Prepare & create release (push) Blocked by required conditions
Build and Release / Publish release (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-pc-windows-msvc.exe, win-x64, windows-latest, x86_64-pc-windows-msvc, nsis,updater, nsis) (push) Blocked by required conditions

This commit is contained in:
Thorsten Sommer 2026-07-10 09:01:41 +02:00 committed by GitHub
parent 3f95bfb157
commit 51462ea647
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 84 additions and 18 deletions

View File

@ -21,6 +21,9 @@
<body style="overflow: hidden;">
<Routes @rendermode="new InteractiveServerRenderMode(prerender: false)"/>
<div id="reconnect-modal" style="display: none; position: fixed; inset: 0; z-index: 20000; align-items: center; justify-content: center; padding: 2rem; background: rgba(15, 23, 42, 0.82); color: white; font-size: 1.1rem; text-align: center;">
Reconnecting to AI Studio...
</div>
<script src="_framework/blazor.web.js" autostart="false"></script>
<script src="boot.js"></script>
<script src="system/MudBlazor/MudBlazor.min.js"></script>

View File

@ -154,12 +154,17 @@ internal sealed class Program
// ReSharper restore AccessToDisposedClosure
builder.Services.AddRazorComponents()
.AddInteractiveServerComponents()
.AddInteractiveServerComponents(options =>
{
options.DisconnectedCircuitRetentionPeriod = TimeSpan.FromDays(30);
options.DisconnectedCircuitMaxRetained = 2;
})
.AddHubOptions(options =>
{
options.MaximumReceiveMessageSize = null;
options.ClientTimeoutInterval = TimeSpan.FromDays(14);
options.ClientTimeoutInterval = TimeSpan.FromSeconds(120);
options.HandshakeTimeout = TimeSpan.FromSeconds(30);
options.KeepAliveInterval = TimeSpan.FromSeconds(30);
});
builder.Services.AddSingleton(new HttpClient

View File

@ -1,33 +1,73 @@
(() => {
const maximumRetryCount = 3;
const retryIntervalMilliseconds = 500;
const maximumRetryCount = 12;
const reconnectModal = document.getElementById('reconnect-modal');
const retryDelaysMilliseconds = [
0,
1_000,
2_000,
5_000,
10_000,
15_000,
30_000,
];
let currentReconnectionProcess = null;
let isConnectionDown = false;
const delay = milliseconds => new Promise(resolve => setTimeout(resolve, milliseconds));
const getRetryDelayMilliseconds = attempt => retryDelaysMilliseconds[Math.min(attempt, retryDelaysMilliseconds.length - 1)];
const showReconnectModal = () => {
if (reconnectModal)
reconnectModal.style.display = 'flex';
};
const hideReconnectModal = () => {
if (reconnectModal)
reconnectModal.style.display = 'none';
};
const setReconnectModalText = text => {
if (reconnectModal)
reconnectModal.textContent = text;
};
const startReconnectionProcess = () => {
reconnectModal.style.display = 'block';
showReconnectModal();
let isCanceled = false;
let forceAttempt = false;
(async () => {
for (let i = 0; i < maximumRetryCount; i++) {
reconnectModal.innerText = `Attempting to reconnect: ${i + 1} of ${maximumRetryCount}`;
const waitForNextAttempt = async milliseconds => {
const startedAt = Date.now();
while (!isCanceled && !forceAttempt && Date.now() - startedAt < milliseconds)
await delay(250);
await new Promise(resolve => setTimeout(resolve, retryIntervalMilliseconds));
forceAttempt = false;
};
if (isCanceled) {
void (async () => {
for (let attempt = 0; attempt < maximumRetryCount && !isCanceled; attempt++) {
setReconnectModalText(`Reconnecting to AI Studio (${attempt + 1}/${maximumRetryCount})...`);
const retryDelayMilliseconds = getRetryDelayMilliseconds(attempt);
if (retryDelayMilliseconds > 0)
await waitForNextAttempt(retryDelayMilliseconds);
if (isCanceled)
return;
}
try {
const result = await Blazor.reconnect();
if (!result) {
if (result === false) {
// The server was reached, but the connection was rejected; reload the page.
location.reload();
return;
}
// Successfully reconnected to the server.
return;
if (result === true)
return;
} catch {
// Didn't reach the server; try again.
}
@ -40,25 +80,42 @@
return {
cancel: () => {
isCanceled = true;
reconnectModal.style.display = 'none';
hideReconnectModal();
},
triggerImmediateAttempt: () => {
forceAttempt = true;
},
};
};
let currentReconnectionProcess = null;
const triggerReconnectAfterWake = () => {
if (isConnectionDown)
currentReconnectionProcess?.triggerImmediateAttempt();
};
document.addEventListener('visibilitychange', () => {
if (document.visibilityState === 'visible')
triggerReconnectAfterWake();
});
globalThis.addEventListener('pageshow', triggerReconnectAfterWake);
Blazor.start({
circuit: {
reconnectionHandler: {
onConnectionDown: () => currentReconnectionProcess ??= startReconnectionProcess(),
onConnectionDown: () => {
isConnectionDown = true;
currentReconnectionProcess ??= startReconnectionProcess();
},
onConnectionUp: () => {
isConnectionDown = false;
currentReconnectionProcess?.cancel();
currentReconnectionProcess = null;
}
},
configureSignalR: function (builder) {
builder.withServerTimeout(1_200_000);
builder.withServerTimeout(120_000);
builder.withKeepAliveInterval(30_000);
},
}

View File

@ -1,5 +1,6 @@
# v26.7.3, build 245 (2026-07-xx xx:xx UTC)
- Improved the "My Tasks Assistant": you can now provide one or more documents in addition to text or use documents alone when asking to identify tasks.
- Fixed an issue that could leave AI Studio unresponsive after waking the computer from sleep.
- Fixed enterprise configuration plugins from Windows-created ZIP files not loading correctly on Linux when the ZIP contained plugin files inside a folder.
- Upgraded Rust to v1.97.0.
- Upgraded Tauri to v2.11.5.