rudolphreti / BewerbungMaster

BewerbungMaster is a Blazor web application designed to efficiently create and manage job applications.
MIT License
1 stars 0 forks source link

Program turns off after several minutes. Error: Error: Failed to complete negotiation with the server: TypeError: Failed to fetch #2

Open rudolphreti opened 2 weeks ago

rudolphreti commented 2 weeks ago

Program turns off after several minutes.

Browser: Error: Error: Failed to complete negotiation with the server: TypeError: Failed to fetch

VS Output: The program '[22836] BewerbungMasterApp.exe' has exited with code 4294967295 (0xffffffff).

rudolphreti commented 2 weeks ago

// Configure SignalR for indefinite connection builder.Services.AddSignalR(options => { options.ClientTimeoutInterval = TimeSpan.FromDays(1); options.KeepAliveInterval = TimeSpan.FromSeconds(10); });

// Configure Blazor Server options builder.Services.AddServerSideBlazor(options => { options.DisconnectedCircuitRetentionPeriod = TimeSpan.FromDays(1); options.DisconnectedCircuitMaxRetained = 100; options.JSInteropDefaultCallTimeout = TimeSpan.FromMinutes(5); options.MaxBufferedUnacknowledgedRenderBatches = 100; });