Skip to content

Commit edd095d

Browse files
committed
let's see if it fails now
1 parent 3bdbd2e commit edd095d

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

python/integration_tests/test_consumer_rebalancing.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -239,9 +239,8 @@ def test_tasks_written_once_during_rebalancing() -> None:
239239
print(f"Cleaning up test output files in {TESTS_OUTPUT_PATH}")
240240
shutil.rmtree(TESTS_OUTPUT_PATH)
241241

242-
if (
242+
assert (
243243
not all([row[3] == 0 for row in row_count])
244244
or not consumers_have_data
245245
or consumers_have_error
246-
):
247-
assert False
246+
)

src/consumer/kafka.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ pub struct ActorHandles {
172172
impl ActorHandles {
173173
#[instrument(skip(self))]
174174
async fn shutdown(mut self, deadline: Duration) {
175-
debug!("Signaling shutdown to actors...");
175+
error!("Signaling shutdown to actors...");
176176
self.shutdown.cancel();
177177
info!("Actor shutdown signaled, waiting for rendezvous...");
178178

0 commit comments

Comments
 (0)