Bug timeout resolved

System.Threading.Tasks.TaskCanceledException: The request was canceled due to the configured HttpClient.Timeout of 10 seconds elapsing

The timeout issue is caused by the line:

public int ProxyReadWriteTimeoutMilliseconds { get; set; } = 10000;

This code controls the timeout for System.Net, making all requests last a maximum of 10 seconds regardless of any changes you make elsewhere. This hardcoded limit overrides other timeout configurations and forces the requests to terminate after 10 seconds.

If you want to fix this issue, you simply need to have Visual C# installed. Then, navigate to:

RuriLib -> Models -> Settings -> ProxySettings.cs

or simply search for the code.

You can either just change the read/write value

1 Like

its really helping me, thanks.

does this possible to edit current running OB without need publish the configuration file that start from 0?