Skip to content

Commit

Permalink
fix gradle wrapper, CI workflow, remove comment
Browse files Browse the repository at this point in the history
  • Loading branch information
austin-denoble committed Feb 9, 2024
1 parent f4bf91d commit 9a6abcc
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -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"));
}
}
Expand Down

0 comments on commit 9a6abcc

Please sign in to comment.