Skip to content

Commit

Permalink
[hotfix] Fix inactive branch in TtlStateTestBase
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanRRichter committed Mar 20, 2019
1 parent 21cff1d commit aee1f18
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@ private void triggerMoreIncrementalCleanupByOtherOps() throws Exception {
// trigger more cleanup by doing something out side of INC_CLEANUP_ALL_KEYS
for (int i = INC_CLEANUP_ALL_KEYS; i < INC_CLEANUP_ALL_KEYS * 2; i++) {
sbetc.setCurrentKey(Integer.toString(i));
if (i / 2 == 0) {
if (i % 2 == 0) {
ctx().get();
} else {
ctx().update(ctx().updateEmpty);
Expand Down

0 comments on commit aee1f18

Please sign in to comment.