Skip to content

Commit

Permalink
Downgrade active Pure protocol to 1_32 (#2407)
Browse files Browse the repository at this point in the history
  • Loading branch information
aziemchawdhary-gs authored Oct 25, 2023
1 parent d544a51 commit 8532e21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class PureClientVersions
assert !hasRepeatedVersions(versions) : "Repeated version id :" + versions.toBag().selectByOccurrences(i -> i > 1).toSet().makeString("[", ", ", "]");
}

public static String production = "v1_33_0";
public static String production = "v1_32_0";

static boolean hasRepeatedVersions(ImmutableList<String> versions)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ public class TestProtocolUpdates
public void testProductionProtocolVersion()
{
String productionProtocolVersion = PureClientVersions.production;
Assert.assertEquals("v1_33_0", productionProtocolVersion);
Assert.assertEquals("v1_32_0", productionProtocolVersion);
}
}

0 comments on commit 8532e21

Please sign in to comment.