Skip to content

Commit

Permalink
fix(generic-binding): fix autoconfiguration
Browse files Browse the repository at this point in the history
Co-authored-by: Timon Back <[email protected]>
  • Loading branch information
sam0r040 and timonback committed Oct 13, 2023
1 parent 182b13c commit 4b36d7a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import org.springframework.core.annotation.Order;

@Configuration
public class SpringwolfGenericBindingConfiguration {
public class SpringwolfGenericBindingAutoConfiguration {

@Bean
@Order(value = BindingProcessorPriority.GENERIC_BINDING)
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
io.github.stavshamir.springwolf.addons.generic_binding.annotation.processor.AsyncGenericOperationBindingProcessor
io.github.stavshamir.springwolf.addons.generic_binding.annotation.configuration.SpringwolfGenericBindingAutoConfiguration
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,12 @@
"operationId": "another-queue_subscribe",
"description": "Custom, optional description defined in the AsyncPublisher annotation",
"bindings": {
"sqs": { }
"sqs": {
"internal-field": "customValue",
"nested": {
"key": "nestedValue"
}
}
},
"message": {
"schemaFormat": "application/vnd.oai.openapi+json;version=3.0.0",
Expand Down Expand Up @@ -166,4 +171,4 @@
}
},
"tags": [ ]
}
}

0 comments on commit 4b36d7a

Please sign in to comment.