From c1b6c1b697661eb06db5f33a0ae9b8a2d63da251 Mon Sep 17 00:00:00 2001 From: Slimane AMAR Date: Wed, 4 Sep 2024 17:24:56 +0200 Subject: [PATCH] Reverse order of limit durations --- src/main/resources/config/application.yaml | 12 ++++++------ src/test/resources/application-default.yml | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/main/resources/config/application.yaml b/src/main/resources/config/application.yaml index a1aab88c..3efd276d 100644 --- a/src/main/resources/config/application.yaml +++ b/src/main/resources/config/application.yaml @@ -68,17 +68,17 @@ security-analysis: lowBound: 300 highBound: 500 limitDurations: - - lowBound: 0 - lowClosed: true - highBound: 300 + - lowBound: 600 + lowClosed: false + highBound: ~ highClosed: false - lowBound: 300 lowClosed: true highBound: 600 highClosed: true - - lowBound: 600 - lowClosed: false - highBound: ~ + - lowBound: 0 + lowClosed: true + highBound: 300 highClosed: false defaultValues: - [ 1, 1, 1, 1 ] diff --git a/src/test/resources/application-default.yml b/src/test/resources/application-default.yml index b4fbb6ec..b9dcb5f0 100644 --- a/src/test/resources/application-default.yml +++ b/src/test/resources/application-default.yml @@ -30,17 +30,17 @@ security-analysis: lowBound: 300 highBound: 500 limitDurations: - - lowBound: 0 - lowClosed: true - highBound: 300 + - lowBound: 600 + lowClosed: false + highBound: ~ highClosed: false - lowBound: 300 lowClosed: true highBound: 600 highClosed: true - - lowBound: 600 - lowClosed: false - highBound: ~ + - lowBound: 0 + lowClosed: true + highBound: 300 highClosed: false defaultValues: - [ 1, 1, 1, 1 ]