Skip to content

Commit bdd282f

Browse files
authored
[app-server] increase currentTime/read timeout (openai#30384)
## Summary Increase the external currentTime/read request timeout from 5 seconds to 10 seconds. ## Validation - just fmt - Focused app-server test build was stopped to defer validation to CI.
1 parent 9dbdb4e commit bdd282f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

codex-rs/app-server/src/current_time.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ use crate::outgoing_message::ConnectionId;
2222
use crate::outgoing_message::OutgoingMessageSender;
2323
use crate::thread_state::ThreadStateManager;
2424

25-
const CURRENT_TIME_REQUEST_TIMEOUT: Duration = Duration::from_secs(5);
25+
const CURRENT_TIME_REQUEST_TIMEOUT: Duration = Duration::from_secs(10);
2626
const CURRENT_TIME_POLL_INTERVAL: Duration = Duration::from_secs(1);
2727

2828
pub(crate) fn app_server_time_provider(

0 commit comments

Comments
 (0)