Skip to content

Commit

Permalink
don't throw and fail thread when topic not subscribed
Browse files Browse the repository at this point in the history
  • Loading branch information
firestar committed Sep 27, 2024
1 parent 9aed643 commit 7523603
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group = 'com.nucleodb'
version = '1.18.12'
version = '1.18.13'

repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,8 @@ public void run() {
getConsumer().poll(Duration.ofMillis(100));
Thread.sleep(1000);
} catch (InterruptedException e) {
throw new RuntimeException(e);
// throw new RuntimeException(e);
e.printStackTrace();
}
}
seek(offsets);
Expand All @@ -189,7 +190,7 @@ public void run() {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
throw new RuntimeException(e);
//throw new RuntimeException(e);

}
}
Expand Down

0 comments on commit 7523603

Please sign in to comment.