Skip to content

Commit

Permalink
fix: fix spaces addBuiltinPlugins
Browse files Browse the repository at this point in the history
  • Loading branch information
AllanZhengYP committed Dec 2, 2019
1 parent b3aeafc commit b831fe8
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,17 +56,17 @@ public List<RuntimeClientPlugin> getClientPlugins() {
RuntimeClientPlugin.builder()
.withConventions("@aws-sdk/middleware-sdk-api-gateway", "^0.1.0-preview.5",
"AcceptsHeader", HAS_MIDDLEWARE)
.servicePredicate((m,s) -> s.getId().getName().equals("BackplaneControlService"))
.servicePredicate((m, s) -> s.getId().getName().equals("BackplaneControlService"))
.build(),
RuntimeClientPlugin.builder()
.withConventions("@aws-sdk/middleware-sdk-s3", "^0.1.0-preview.2",
"validateBucketNameMiddleware", HAS_MIDDLEWARE)
.servicePredicate((m,s) -> s.getId().getName().equals("AmazonS3"))
.servicePredicate((m, s) -> s.getId().getName().equals("AmazonS3"))
.build(),
RuntimeClientPlugin.builder()
.withConventions("@aws-sdk/middleware-expect-continue", "^0.1.0-preview.5",
"AddExpectContinue", HAS_MIDDLEWARE)
.servicePredicate((m,s) -> s.getId().getName().equals("AmazonS3"))
.servicePredicate((m, s) -> s.getId().getName().equals("AmazonS3"))
.build()
);
}
Expand Down

0 comments on commit b831fe8

Please sign in to comment.