We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70780dd commit 9e677a4Copy full SHA for 9e677a4
src/main/java/no/nav/foreldrepenger/autotest/klienter/fpkalkulus/KalkulusKlient.java
@@ -6,6 +6,7 @@
6
import static no.nav.foreldrepenger.autotest.klienter.JavaHttpKlient.send;
7
8
import java.net.http.HttpRequest;
9
+import java.time.Duration;
10
11
import io.qameta.allure.Step;
12
import no.nav.folketrygdloven.fpkalkulus.kontrakt.BeregnRequestDto;
@@ -54,6 +55,7 @@ public BeregningsgrunnlagDto hentGUIBeregningsgrunnlag(HentBeregningsgrunnlagGUI
54
55
56
public TilstandResponse kjørBeregning(BeregnRequestDto beregnRequestDto) {
57
var request = requestMedInnloggetSaksbehandler(saksbehandlerRolle, KLIENT_ID)
58
+ .timeout(Duration.ofSeconds(10))
59
.uri(fromUri(BaseUriProvider.KALKULUS_BASE)
60
.path(KALKULUS_BEREGN_URL)
61
.build())
0 commit comments