Skip to content

Commit

Permalink
one task
Browse files Browse the repository at this point in the history
Signed-off-by: Sarthak Aggarwal <sarthagg@amazon.com>
  • Loading branch information
sarthakaggarwal97 committed Jan 25, 2024
1 parent 0ab0a1c commit 462fe9c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/actions/run-bwc-suite/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ runs:
-Dtests.opensearch.username=${{ inputs.username }}
-Dtests.opensearch.password=${{ inputs.password }}
-Dbwc.version.previous=${{ steps.build-previous.outputs.built-version }}
-Dbwc.version.next=${{ steps.build-next.outputs.built-version }} -i
-Dbwc.version.next=${{ steps.build-next.outputs.built-version }} -i --info --stacktrace
- uses: alehechka/upload-tartifact@v2
if: always()
Expand Down
4 changes: 2 additions & 2 deletions bwc-test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,6 @@ tasks.register("${baseName}#fullRestartClusterTask", StandaloneRestIntegTestTask
task bwcTestSuite(type: StandaloneRestIntegTestTask) {
exclude '**/**' // Do not run any tests as part of this aggregate task
dependsOn tasks.named("${baseName}#mixedClusterTask")
dependsOn tasks.named("${baseName}#rollingUpgradeClusterTask")
dependsOn tasks.named("${baseName}#fullRestartClusterTask")
// dependsOn tasks.named("${baseName}#rollingUpgradeClusterTask")
// dependsOn tasks.named("${baseName}#fullRestartClusterTask")
}
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public class CustomCodecsCompatibilityIT extends OpenSearchRestTestCase {
private static RestClient testUserRestClient = null;

public void testCreateIndexWithZstdCodec() throws IOException {
logger.info("RUNNING TEST");
System.out.println("RUNNING TEST");
// final String index = "custom-codecs-test-index" + UUID.randomUUID();
//
// // creating index
Expand Down Expand Up @@ -158,13 +158,13 @@ protected boolean preserveIndicesUponCompletion() {
@Before
public void testSetup() {
final String bwcsuiteString = System.getProperty("tests.rest.bwcsuite");
logger.info(bwcsuiteString);
System.out.println(bwcsuiteString);
// Assume.assumeTrue("Test cannot be run outside the BWC gradle task 'bwcTestSuite' or its dependent tasks", bwcsuiteString != null);
CLUSTER_TYPE = ClusterType.parse(bwcsuiteString);
CLUSTER_NAME = System.getProperty("tests.clustername");

logger.info(CLUSTER_TYPE);
logger.info(CLUSTER_NAME);
System.out.println(CLUSTER_TYPE);
System.out.println(CLUSTER_NAME);
}

@Override
Expand Down

0 comments on commit 462fe9c

Please sign in to comment.