1
0

[MINOR] Fix error information in exception (#2341)

This commit is contained in:
ChangLi
2020-12-16 19:37:01 +08:00
committed by GitHub
parent 26cdc457f6
commit 6a6b772c49

View File

@@ -196,7 +196,7 @@ public class InstantGenerateOperator extends AbstractStreamOperator<HoodieRecord
return;
}
}
throw new InterruptedException("Last instant costs more than ten second, stop task now");
throw new InterruptedException(String.format("Last instant costs more than %s second, stop task now", retryTimes * retryInterval));
}