Skip to content

Commit

Permalink
Bump SQL connection timeout for tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmygchen committed May 3, 2024
1 parent 0e3b0a1 commit b700737
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pub const POOL_SIZE: u32 = 1;
#[cfg(not(test))]
pub const CONNECTION_TIMEOUT: Duration = Duration::from_secs(5);
#[cfg(test)]
pub const CONNECTION_TIMEOUT: Duration = Duration::from_millis(500);
pub const CONNECTION_TIMEOUT: Duration = Duration::from_secs(1);

/// Supported version of the interchange format.
pub const SUPPORTED_INTERCHANGE_FORMAT_VERSION: u64 = 5;
Expand Down

0 comments on commit b700737

Please sign in to comment.