findingrish commented on code in PR #14192:
URL: https://github.com/apache/druid/pull/14192#discussion_r1205095323
##########
indexing-service/src/main/java/org/apache/druid/indexing/seekablestream/SeekableStreamIndexTaskClientSyncImpl.java:
##########
@@ -85,7 +85,11 @@ private boolean stop(final String id, final boolean publish)
publish ? "publish=true" : null,
true
);
- return isSuccess(response);
+ boolean isSuccess = isSuccess(response);
+ if (!isSuccess) {
+ log.warn("Task [%s] coundln't be stopped because of http request
failure.", id);
Review Comment:
Added
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]