From 9a6abcc19264c6ca3c5c2dc7ebc32e4b159433f6 Mon Sep 17 00:00:00 2001 From: Austin DeNoble Date: Fri, 9 Feb 2024 11:33:58 -0500 Subject: [PATCH] fix gradle wrapper, CI workflow, remove comment --- .github/workflows/pr.yml | 2 +- gradle/wrapper/gradle-wrapper.properties | 2 +- .../integration/controlPlane/pod/CollectionErrorTest.java | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 0533b18d..33732df3 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -79,7 +79,7 @@ jobs: run: gradle clean build - name: Run integration tests - run: gradle integrationTest + run: gradle integrationTest -i env: PINECONE_API_KEY: ${{ secrets.PINECONE_API_KEY }} PINECONE_ENVIRONMENT: ${{ secrets.PINECONE_ENVIRONMENT }} diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 8049c684..da9702f9 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-6.8-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/src/integration/java/io/pinecone/integration/controlPlane/pod/CollectionErrorTest.java b/src/integration/java/io/pinecone/integration/controlPlane/pod/CollectionErrorTest.java index 4d7ff38b..e47ff2aa 100644 --- a/src/integration/java/io/pinecone/integration/controlPlane/pod/CollectionErrorTest.java +++ b/src/integration/java/io/pinecone/integration/controlPlane/pod/CollectionErrorTest.java @@ -133,7 +133,6 @@ public void testCreateCollectionFromNotReadyIndex() { CreateCollectionRequest createCollectionRequest = new CreateCollectionRequest().name(RandomStringBuilder.build("coll4-", 8)).source(notReadyIndexName); controlPlaneClient.createCollection(createCollectionRequest); } catch (PineconeException exception) { - System.out.println("EXCEPTION " + exception.getMessage()); assertTrue(exception.getMessage().contains("Source index is not ready")); } }