Skip to content

Commit

Permalink
Unignore CacheMergedIT test methods
Browse files Browse the repository at this point in the history
  • Loading branch information
jfallows committed Jun 11, 2024
1 parent 8b64c52 commit a5f7ff1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3645,8 +3645,7 @@ private void onFetchInitialReset(
state = KafkaState.closedInitial(state);

final KafkaResetExFW kafkaResetEx = extension.get(kafkaResetExRO::tryWrap);
final int defaultError = KafkaState.replyClosed(state) ? ERROR_NOT_LEADER_FOR_PARTITION : -1;
final int error = kafkaResetEx != null ? kafkaResetEx.error() : defaultError;
final int error = kafkaResetEx != null ? kafkaResetEx.error() : -1;

doFetchReplyResetIfNecessary(traceId);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ public void shouldFetchMergedMessagesWithHeaderFilter() throws Exception
k3po.finish();
}

@Ignore("io.aklivity.k3po")
@Test
@Configuration("cache.options.merged.yaml")
@Specification({
Expand All @@ -81,7 +80,6 @@ public void shouldFetchMergedMessagesWithHeaderFilterAfterCompaction() throws Ex
k3po.finish();
}

@Ignore("io.aklivity.k3po")
@Test
@Configuration("cache.options.merged.yaml")
@Specification({
Expand Down Expand Up @@ -289,7 +287,6 @@ public void shouldFetchMergedFromParameterizedTopicInvalid() throws Exception
k3po.finish();
}

@Ignore("io.aklivity.k3po")
@Test
@Configuration("cache.options.validate.yaml")
@Specification({
Expand All @@ -300,7 +297,6 @@ public void shouldFetchMergedMessageValueInvalid() throws Exception
k3po.finish();
}

@Ignore("io.aklivity.k3po")
@Test
@Configuration("cache.options.merged.yaml")
@Specification({
Expand All @@ -315,7 +311,6 @@ public void shouldFetchMergedPartitionLeaderChanged() throws Exception
k3po.finish();
}

@Ignore("io.aklivity.k3po")
@Test
@Configuration("cache.options.merged.yaml")
@Specification({
Expand Down

0 comments on commit a5f7ff1

Please sign in to comment.