clintropolis commented on a change in pull request #9519: Ability to Delete
task logs and segments from Google Storage
URL: https://github.com/apache/druid/pull/9519#discussion_r394190486
##########
File path:
extensions-core/s3-extensions/src/main/java/org/apache/druid/storage/s3/S3TaskLogs.java
##########
@@ -165,7 +165,7 @@ String getTaskLogKey(String taskid, String filename)
@Override
public void killAll() throws IOException
{
- log.info("Deleting all task logs from s3 location [bucket: %s prefix:
%s].",
+ log.info("Deleting all task logs from s3 location [bucket: '%s' prefix:
'%s'].",
config.getS3Bucket(), config.getS3Prefix()
);
Review comment:
```suggestion
log.info(
"Deleting all task logs from s3 location [bucket: '%s' prefix:
'%s'].",
config.getS3Bucket(),
config.getS3Prefix()
);
```
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]