fix(async ingest): Fix async ingest path (#7269)

This commit is contained in:
Pedro Silva 2023-02-07 18:39:52 +00:00 committed by GitHub
parent c2d6ea7c42
commit bec5a27a7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -877,7 +877,7 @@ public class EntityService {
} else { } else {
// When async is turned on, we write to proposal log and return without waiting // When async is turned on, we write to proposal log and return without waiting
_producer.produceMetadataChangeProposal(entityUrn, mcp); _producer.produceMetadataChangeProposal(entityUrn, mcp);
return new IngestProposalResult(mcp.getEntityUrn(), false, true); return new IngestProposalResult(entityUrn, false, true);
} }
} else { } else {
// For timeseries aspects // For timeseries aspects