File tree Expand file tree Collapse file tree
docs/content.en/docs/release-notes Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ Information about release notes of Coco Server is provided here.
3131- fix: fixed incorrect taskbar icon display on linux #783
3232- fix: fix data inconsistency issue on secondary pages #784
3333- fix: incorrect status when installing extension #789
34+ - fix: increase read_timeout for HTTP streaming stability #798
3435- fix: enter key problem #794
3536
3637### ✈️ Improvements
Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ use tokio::sync::Mutex;
1111
1212pub ( crate ) fn new_reqwest_http_client ( accept_invalid_certs : bool ) -> Client {
1313 Client :: builder ( )
14- . read_timeout ( Duration :: from_secs ( 3 ) ) // Set a timeout of 3 second
15- . connect_timeout ( Duration :: from_secs ( 3 ) ) // Set a timeout of 3 second
14+ . read_timeout ( Duration :: from_secs ( 60 ) ) // Set a timeout of 60 second
15+ . connect_timeout ( Duration :: from_secs ( 30 ) ) // Set a timeout of 30 second
1616 . timeout ( Duration :: from_secs ( 5 * 60 ) ) // Set a timeout of 5 minute
1717 . danger_accept_invalid_certs ( accept_invalid_certs) // allow self-signed certificates
1818 . build ( )
You can’t perform that action at this time.
0 commit comments