This is an automated email from the ASF dual-hosted git repository. szaszm pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git
commit 2600a98f8d9b067f6380031981fdc0f4e7774988 Author: Gabor Gyimesi <[email protected]> AuthorDate: Tue Feb 14 16:33:25 2023 +0100 MINIFICPP-2044 Make listing processors single threaded Closes #1506 Signed-off-by: Marton Szasz <[email protected]> --- extensions/aws/processors/ListS3.h | 2 +- extensions/azure/processors/ListAzureBlobStorage.h | 2 +- extensions/azure/processors/ListAzureDataLakeStorage.h | 2 +- extensions/standard-processors/processors/ListFile.h | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/extensions/aws/processors/ListS3.h b/extensions/aws/processors/ListS3.h index 2381af106..31477f6ea 100644 --- a/extensions/aws/processors/ListS3.h +++ b/extensions/aws/processors/ListS3.h @@ -58,7 +58,7 @@ class ListS3 : public S3Processor { EXTENSIONAPI static constexpr bool SupportsDynamicProperties = true; EXTENSIONAPI static constexpr bool SupportsDynamicRelationships = false; EXTENSIONAPI static constexpr core::annotation::Input InputRequirement = core::annotation::Input::INPUT_FORBIDDEN; - EXTENSIONAPI static constexpr bool IsSingleThreaded = false; + EXTENSIONAPI static constexpr bool IsSingleThreaded = true; ADD_COMMON_VIRTUAL_FUNCTIONS_FOR_PROCESSORS diff --git a/extensions/azure/processors/ListAzureBlobStorage.h b/extensions/azure/processors/ListAzureBlobStorage.h index ca4603e96..e11611d70 100644 --- a/extensions/azure/processors/ListAzureBlobStorage.h +++ b/extensions/azure/processors/ListAzureBlobStorage.h @@ -56,7 +56,7 @@ class ListAzureBlobStorage final : public AzureBlobStorageProcessorBase { EXTENSIONAPI static constexpr bool SupportsDynamicProperties = false; EXTENSIONAPI static constexpr bool SupportsDynamicRelationships = false; EXTENSIONAPI static constexpr core::annotation::Input InputRequirement = core::annotation::Input::INPUT_FORBIDDEN; - EXTENSIONAPI static constexpr bool IsSingleThreaded = false; + EXTENSIONAPI static constexpr bool IsSingleThreaded = true; ADD_COMMON_VIRTUAL_FUNCTIONS_FOR_PROCESSORS diff --git a/extensions/azure/processors/ListAzureDataLakeStorage.h b/extensions/azure/processors/ListAzureDataLakeStorage.h index bc8a64b9b..9a24b9488 100644 --- a/extensions/azure/processors/ListAzureDataLakeStorage.h +++ b/extensions/azure/processors/ListAzureDataLakeStorage.h @@ -59,7 +59,7 @@ class ListAzureDataLakeStorage final : public AzureDataLakeStorageProcessorBase EXTENSIONAPI static constexpr bool SupportsDynamicProperties = false; EXTENSIONAPI static constexpr bool SupportsDynamicRelationships = false; EXTENSIONAPI static constexpr core::annotation::Input InputRequirement = core::annotation::Input::INPUT_FORBIDDEN; - EXTENSIONAPI static constexpr bool IsSingleThreaded = false; + EXTENSIONAPI static constexpr bool IsSingleThreaded = true; ADD_COMMON_VIRTUAL_FUNCTIONS_FOR_PROCESSORS diff --git a/extensions/standard-processors/processors/ListFile.h b/extensions/standard-processors/processors/ListFile.h index 5ca29fa78..05b72ba23 100644 --- a/extensions/standard-processors/processors/ListFile.h +++ b/extensions/standard-processors/processors/ListFile.h @@ -70,7 +70,7 @@ class ListFile : public core::Processor { EXTENSIONAPI static constexpr bool SupportsDynamicProperties = false; EXTENSIONAPI static constexpr bool SupportsDynamicRelationships = false; EXTENSIONAPI static constexpr core::annotation::Input InputRequirement = core::annotation::Input::INPUT_FORBIDDEN; - EXTENSIONAPI static constexpr bool IsSingleThreaded = false; + EXTENSIONAPI static constexpr bool IsSingleThreaded = true; ADD_COMMON_VIRTUAL_FUNCTIONS_FOR_PROCESSORS
