Skip to content

Commit ea4e3fd

Browse files
committed
MINIFICPP-2834 Fixing AwsProcessor::AWSCredentialsProviderService::withAllowedTypes typo
1 parent c4c9358 commit ea4e3fd

2 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/references/ubuntu_22_04_clang_arm_manifest.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1516,9 +1516,9 @@
15161516
"propertyDescriptors": {
15171517
"AWS Credentials Provider service": {
15181518
"typeProvidedByValue": {
1519-
"type": "org.apache.nifi.minifi.aws.AWSCredentialsProvider",
1519+
"type": "org.apache.nifi.minifi.aws.controllers.AWSCredentialsService",
15201520
"group": "org.apache.nifi.minifi",
1521-
"artifact": "minifi-system"
1521+
"artifact": "minifi-aws"
15221522
},
15231523
"name": "AWS Credentials Provider service",
15241524
"description": "The name of the AWS Credentials Provider controller service that is used to obtain AWS credentials.",
@@ -2999,9 +2999,9 @@
29992999
"propertyDescriptors": {
30003000
"AWS Credentials Provider service": {
30013001
"typeProvidedByValue": {
3002-
"type": "org.apache.nifi.minifi.aws.AWSCredentialsProvider",
3002+
"type": "org.apache.nifi.minifi.aws.controllers.AWSCredentialsService",
30033003
"group": "org.apache.nifi.minifi",
3004-
"artifact": "minifi-system"
3004+
"artifact": "minifi-aws"
30053005
},
30063006
"name": "AWS Credentials Provider service",
30073007
"description": "The name of the AWS Credentials Provider controller service that is used to obtain AWS credentials.",
@@ -5186,9 +5186,9 @@
51865186
"propertyDescriptors": {
51875187
"AWS Credentials Provider service": {
51885188
"typeProvidedByValue": {
5189-
"type": "org.apache.nifi.minifi.aws.AWSCredentialsProvider",
5189+
"type": "org.apache.nifi.minifi.aws.controllers.AWSCredentialsService",
51905190
"group": "org.apache.nifi.minifi",
5191-
"artifact": "minifi-system"
5191+
"artifact": "minifi-aws"
51925192
},
51935193
"name": "AWS Credentials Provider service",
51945194
"description": "The name of the AWS Credentials Provider controller service that is used to obtain AWS credentials.",
@@ -7949,9 +7949,9 @@
79497949
"propertyDescriptors": {
79507950
"AWS Credentials Provider service": {
79517951
"typeProvidedByValue": {
7952-
"type": "org.apache.nifi.minifi.aws.AWSCredentialsProvider",
7952+
"type": "org.apache.nifi.minifi.aws.controllers.AWSCredentialsService",
79537953
"group": "org.apache.nifi.minifi",
7954-
"artifact": "minifi-system"
7954+
"artifact": "minifi-aws"
79557955
},
79567956
"name": "AWS Credentials Provider service",
79577957
"description": "The name of the AWS Credentials Provider controller service that is used to obtain AWS credentials.",
@@ -8531,9 +8531,9 @@
85318531
"propertyDescriptors": {
85328532
"AWS Credentials Provider service": {
85338533
"typeProvidedByValue": {
8534-
"type": "org.apache.nifi.minifi.aws.AWSCredentialsProvider",
8534+
"type": "org.apache.nifi.minifi.aws.controllers.AWSCredentialsService",
85358535
"group": "org.apache.nifi.minifi",
8536-
"artifact": "minifi-system"
8536+
"artifact": "minifi-aws"
85378537
},
85388538
"name": "AWS Credentials Provider service",
85398539
"description": "The name of the AWS Credentials Provider controller service that is used to obtain AWS credentials.",

extensions/aws/processors/AwsProcessor.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@
2727
#include <utility>
2828

2929
#include "aws/core/auth/AWSCredentialsProvider.h"
30-
#include "AWSCredentialsProvider.h"
3130
#include "minifi-cpp/core/PropertyDefinition.h"
3231
#include "core/PropertyDefinitionBuilder.h"
3332
#include "minifi-cpp/core/PropertyValidator.h"
3433
#include "core/ProcessorImpl.h"
3534
#include "minifi-cpp/controllers/ProxyConfigurationServiceInterface.h"
3635
#include "controllers/ProxyConfiguration.h"
36+
#include "controllerservices/AWSCredentialsService.h"
3737

3838

3939
namespace org::apache::nifi::minifi::aws::processors {
@@ -108,7 +108,7 @@ class AwsProcessor : public core::ProcessorImpl { // NOLINT(cppcoreguidelines-s
108108
.build();
109109
EXTENSIONAPI static constexpr auto AWSCredentialsProviderService = core::PropertyDefinitionBuilder<>::createProperty("AWS Credentials Provider service")
110110
.withDescription("The name of the AWS Credentials Provider controller service that is used to obtain AWS credentials.")
111-
.withAllowedTypes<AWSCredentialsProvider>()
111+
.withAllowedTypes<controllers::AWSCredentialsService>()
112112
.build();
113113
EXTENSIONAPI static constexpr auto Region = core::PropertyDefinitionBuilder<region::REGIONS.size()>::createProperty("Region")
114114
.isRequired(true)

0 commit comments

Comments
 (0)