mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-19 09:54:24 -05:00
Increases socketio timeout
This commit is contained in:
@@ -24,7 +24,9 @@ import * as InvokeAI from '../invokeai';
|
||||
export const socketioMiddleware = () => {
|
||||
const { hostname, port } = new URL(window.location.href);
|
||||
|
||||
const socketio = io(`http://${hostname}:9090`);
|
||||
const socketio = io(`http://${hostname}:9090`, {
|
||||
timeout: 60000,
|
||||
});
|
||||
|
||||
let areListenersSet = false;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user