diff --git a/src/integrationTest/java/integration/tests/SystemEngineTest.java b/src/integrationTest/java/integration/tests/SystemEngineTest.java index 2af1c2f9..6e400ca1 100644 --- a/src/integrationTest/java/integration/tests/SystemEngineTest.java +++ b/src/integrationTest/java/integration/tests/SystemEngineTest.java @@ -293,7 +293,7 @@ private String getClientSecret(Connection connection, String serviceAccountName, FireboltConnection fbConn = (FireboltConnection)connection; String accessToken = fbConn.getAccessToken().orElseThrow(() -> new IllegalStateException("access token is not found")); FireboltProperties fbProps = fbConn.getSessionProperties(); - URL url = new URL(format("%s/query?output_format=TabSeparatedWithNamesAndTypes&database=%s&account_id=%s", fbProps.getHttpConnectionUrl(), database, fbProps.getAccountId())); + URL url = new URL(format("%s/query?output_format=TabSeparatedWithNamesAndTypes&database=%s", fbProps.getHttpConnectionUrl(), database)); HttpURLConnection con = (HttpURLConnection)url.openConnection(); con.setRequestMethod("POST"); con.setRequestProperty("Content-Type", "application/x-www-form-urlencoded"); diff --git a/src/integrationTest/java/integration/tests/TimeoutTest.java b/src/integrationTest/java/integration/tests/TimeoutTest.java index 54fa6cd2..9e1f967c 100644 --- a/src/integrationTest/java/integration/tests/TimeoutTest.java +++ b/src/integrationTest/java/integration/tests/TimeoutTest.java @@ -24,7 +24,7 @@ @CustomLog class TimeoutTest extends IntegrationTest { private static final int MIN_TIME_SECONDS = 350; - private static final Map SERIES_SIZE = Map.of(1, 80000000000L, 2, 180000000000L); + private static final Map SERIES_SIZE = Map.of(1, 80000000000L, 2, 450000000000L); private long startTime; @BeforeEach