Github user haohui commented on the issue:
https://github.com/apache/flink/pull/3655
Looks good to me overall. Instead of changing in the normal code path,
maybe it is a little bit less intrusive to use Mockito to change the field? For
example:
```
JobArchiveFetcherTask task = Whitebox.getInternal(archiveFetcher,
"fetcherTask");
JobArchiveFetcherTask spiedTask = Mockito.spy(task);
Whitebox.setInternal(archiveFetcher, "fetcherTask", spiedTask);
doAnswer(answer ->
latch.countDown()).doCallRealMethod().when(spiedTask).run();
```
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---