Skip to content

Commit

Permalink
Bump version in BWC check after backport
Browse files Browse the repository at this point in the history
VERSION_HASHED_TOKENS needs to point to 7.2, after #42220 was
merged
  • Loading branch information
jkakavas committed May 21, 2019
1 parent 749135b commit 49bd667
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ public final class TokenService {
static final int MINIMUM_BYTES = VERSION_BYTES + TOKEN_LENGTH + 1;
static final int LEGACY_MINIMUM_BASE64_BYTES = Double.valueOf(Math.ceil((4 * LEGACY_MINIMUM_BYTES) / 3)).intValue();
static final int MINIMUM_BASE64_BYTES = Double.valueOf(Math.ceil((4 * MINIMUM_BYTES) / 3)).intValue();
static final Version VERSION_HASHED_TOKENS = Version.V_8_0_0;
static final Version VERSION_HASHED_TOKENS = Version.V_7_2_0;
static final Version VERSION_TOKENS_INDEX_INTRODUCED = Version.V_7_2_0;
static final Version VERSION_ACCESS_TOKENS_AS_UUIDS = Version.V_7_2_0;
static final Version VERSION_MULTIPLE_CONCURRENT_REFRESHES = Version.V_7_2_0;
Expand Down

0 comments on commit 49bd667

Please sign in to comment.