This commit is contained in:
Romain GERARD
2022-03-18 09:19:37 +01:00
parent 32c998b1b9
commit ce3d4a0cfa
3 changed files with 3 additions and 3 deletions

View File

@@ -951,7 +951,7 @@ fn aws_eks_deploy_a_working_environment_with_sticky_session() {
assert!(matches!(ret, TransactionResult::Ok));
// let time for nginx to reload the config
thread::sleep(Duration::from_secs(5));
thread::sleep(Duration::from_secs(10));
// checking if cookie is properly set on the app
assert!(routers_sessions_are_sticky(environment.routers.clone()));

View File

@@ -836,7 +836,7 @@ fn digitalocean_doks_deploy_a_working_environment_with_sticky_session() {
assert!(matches!(result, TransactionResult::Ok));
// let time for nginx to reload the config
thread::sleep(Duration::from_secs(5));
thread::sleep(Duration::from_secs(10));
// checking cookie is properly set on the app
assert!(routers_sessions_are_sticky(environment.routers.clone()));

View File

@@ -956,7 +956,7 @@ fn scaleway_kapsule_deploy_a_working_environment_with_sticky_session() {
assert!(matches!(result, TransactionResult::Ok));
// let time for nginx to reload the config
thread::sleep(Duration::from_secs(5));
thread::sleep(Duration::from_secs(10));
// checking cookie is properly set on the app
assert!(routers_sessions_are_sticky(environment.routers.clone()));