zachjsh 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_r394683656
##########
File path:
extensions-core/google-extensions/src/main/java/org/apache/druid/storage/google/GoogleTaskLogs.java
##########
@@ -33,19 +34,28 @@
import java.io.IOException;
import java.io.InputStream;
import java.nio.file.Files;
+import java.util.Date;
public class GoogleTaskLogs implements TaskLogs
{
private static final Logger LOG = new Logger(GoogleTaskLogs.class);
private final GoogleTaskLogsConfig config;
private final GoogleStorage storage;
+ private final GoogleInputDataConfig inputDataConfig;
+ private final CurrentTimeMillisSupplier timeSupplier;
@Inject
- public GoogleTaskLogs(GoogleTaskLogsConfig config, GoogleStorage storage)
+ public GoogleTaskLogs(
+ GoogleTaskLogsConfig config,
+ GoogleStorage storage,
+ GoogleInputDataConfig inputDataConfig,
+ CurrentTimeMillisSupplier timeSupplier)
Review comment:
done
----------------------------------------------------------------
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]