8202 ingest prog bars on EDT; job cancel off EDT

This commit is contained in:
Richard Cordovano 2021-11-29 16:58:46 -05:00
parent ce634ce909
commit c80d81675f
2 changed files with 2 additions and 2 deletions

View File

@ -170,7 +170,7 @@ public final class IngestJob {
* Starts data source level analysis for this job if it is running in
* streaming ingest mode.
*/
void processStreamingIngestDataSource() {
void addStreamedDataSource() {
if (ingestMode == Mode.STREAMING) {
if (ingestModuleExecutor != null) {
ingestModuleExecutor.addStreamedDataSource();

View File

@ -67,7 +67,7 @@ class IngestJobInputStream implements IngestStream {
@Override
public synchronized void close() {
closed = true;
ingestJob.processStreamingIngestDataSource();
ingestJob.addStreamedDataSource();
}
@Override