MINOR: Enable Log streaming for ingestion pipelines (#23551)

This commit is contained in:
Mayur Singal 2025-09-25 14:35:18 +05:30 committed by GitHub
parent 8eaf4f585d
commit 787d27f3f7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1181,6 +1181,9 @@ public class IngestionPipelineResource
decryptOrNullify(securityContext, ingestionPipeline, true);
ServiceEntityInterface service =
Entity.getEntity(ingestionPipeline.getService(), "", Include.NON_DELETED);
if (repository.isS3LogStorageEnabled()) {
ingestionPipeline.setEnableStreamableLogs(true);
}
PipelineServiceClientResponse status =
pipelineServiceClient.deployPipeline(ingestionPipeline, service);
if (status.getCode() == 200) {