Github user kkhatua commented on a diff in the pull request:
https://github.com/apache/drill/pull/1055#discussion_r154246413
--- Diff:
exec/java-exec/src/main/java/org/apache/drill/exec/testing/ExecutionControlsInjector.java
---
@@ -81,8 +83,20 @@ public void injectPause(final ExecutionControls
executionControls, final String
executionControls.lookupPauseInjection(this, desc);
if (pauseInjection != null) {
- logger.debug("Pausing at {}", desc);
- pauseInjection.pause();
+ long pauseDuration = pauseInjection.getMsPause();
+ if ( pauseDuration > 0L) {
--- End diff --
Agreed, but the only purpose of that check is to indicate during debugging
that a non-zero timed pause was injected. Hence, the check.
---