This is an automated email from the ASF dual-hosted git repository.
xiangfu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pinot.git
The following commit(s) were added to refs/heads/master by this push:
new c8d108506d Fix log to reflect job type (#9381)
c8d108506d is described below
commit c8d108506d098b6de8017b4226b4a8911ea0d775
Author: Kartik Khare <[email protected]>
AuthorDate: Mon Sep 12 16:26:25 2022 +0530
Fix log to reflect job type (#9381)
---
.../apache/pinot/tools/admin/command/LaunchDataIngestionJobCommand.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/pinot-tools/src/main/java/org/apache/pinot/tools/admin/command/LaunchDataIngestionJobCommand.java
b/pinot-tools/src/main/java/org/apache/pinot/tools/admin/command/LaunchDataIngestionJobCommand.java
index b2c5602844..b661352aba 100644
---
a/pinot-tools/src/main/java/org/apache/pinot/tools/admin/command/LaunchDataIngestionJobCommand.java
+++
b/pinot-tools/src/main/java/org/apache/pinot/tools/admin/command/LaunchDataIngestionJobCommand.java
@@ -129,7 +129,7 @@ public class LaunchDataIngestionJobCommand extends
AbstractBaseAdminCommand impl
try {
IngestionJobLauncher.runIngestionJob(spec);
} catch (Exception e) {
- LOGGER.error("Got exception to kick off standalone data ingestion job -
", e);
+ LOGGER.error("Got exception to kick off {} data ingestion job - ",
spec.getExecutionFrameworkSpec().getName(), e);
throw e;
}
return true;
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]