File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed
client/src/main/kotlin/io/hstream/impl Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 3434 run : ./gradlew ktlintCheck
3535
3636 - name : Prepare test env
37- run : script/prepare-test-env-latest .sh
37+ run : script/prepare-test-env.sh
3838
3939 - name : Build and test with Gradle
4040 run : ./gradlew build
Original file line number Diff line number Diff line change @@ -59,8 +59,7 @@ class ConsumerKtImpl(
5959 refreshServerUrl()
6060 streamingFetchWithRetry(requestFlow)
6161 } else if (status.code == Status .CANCELLED .code) {
62- notifyStopped()
63- logger.info(" consumer [{}] is stopped" , consumerName)
62+ // this means consumer closed actively, and do nothing here
6463 } else {
6564 notifyFailed(HStreamDBClientException (e))
6665 }
Original file line number Diff line number Diff line change 22
33set -e
44
5- DEFAULT_HSTREAM_DOCKER_TAG=" v0.6.0 "
5+ DEFAULT_HSTREAM_DOCKER_TAG=" v0.6.6 "
66
77docker pull hstreamdb/hstream:${DEFAULT_HSTREAM_DOCKER_TAG} || true
88
You can’t perform that action at this time.
0 commit comments