-
Notifications
You must be signed in to change notification settings - Fork 4.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bmoric/convert destination definition controller micronaut #20277
Merged
benmoriceau
merged 47 commits into
bmoric/convert-health-micronaut
from
bmoric/convert-destination-definition-controller-micronaut
Dec 9, 2022
Merged
Changes from all commits
Commits
Show all changes
47 commits
Select commit
Hold shift + click to select a range
b42d814
tmp
benmoriceau 5da2868
Fix build
benmoriceau 83c3edc
tmp
benmoriceau 27ccea0
Merge branch 'bmoric/convert-health-micronaut' of github.com:airbyteh…
benmoriceau e3323ee
Tmp
benmoriceau 648494e
Merge branch 'bmoric/convert-health-micronaut' of github.com:airbyteh…
benmoriceau 9f4fee5
tmp
benmoriceau 2391852
tmp
benmoriceau 453f2fd
Merge branch 'bmoric/convert-health-micronaut' of github.com:airbyteh…
benmoriceau 9032d55
Merge branch 'bmoric/convert-health-micronaut' of github.com:airbyteh…
benmoriceau 212dd86
Tmp
benmoriceau 8fd0939
tmp
benmoriceau d378aab
tmp
benmoriceau 0ff5a15
Clean up
benmoriceau 8dcef2e
Merge branch 'bmoric/convert-health-micronaut' of github.com:airbyteh…
benmoriceau 4ad415e
tmp
benmoriceau 58d51db
Merge branch 'bmoric/convert-health-micronaut' of github.com:airbyteh…
benmoriceau c982867
Convert Connection Api Controller
benmoriceau 8de361a
Merge branch 'bmoric/convert-health-micronaut' of github.com:airbyteh…
benmoriceau 3580902
Tmp
benmoriceau fccb967
PR Comments
benmoriceau e0730b3
convert openapiapicontroller to micronaut (#20258)
colesnodgrass 8855858
Fix bean
benmoriceau 9f0da43
Add JsonSchemaValidator as a Bean
benmoriceau df5a30e
Merge branch 'bmoric/convert-health-micronaut' of github.com:airbyteh…
benmoriceau 0024dff
Merge branch 'bmoric/convert-health-micronaut' of github.com:airbyteh…
benmoriceau 4d8d7c2
Fix build
benmoriceau 9d6c512
Merge branch 'bmoric/convert-destination-controller-micronaut' of git…
benmoriceau abbf357
Format
benmoriceau 395c900
Merge brach 'bmoric/convert-connection-micronaut' of github.com:airby…
benmoriceau b63bf4b
Merge branch 'bmoric/convert-destination-controller-micronaut' of git…
benmoriceau 50a7bb6
Format
benmoriceau 0cbc790
Test fix
benmoriceau 67b69e5
Pr comments
benmoriceau c053aa7
Merge branch 'bmoric/convert-health-micronaut' of github.com:airbyteh…
benmoriceau 7490f23
Remove media type
benmoriceau 556e7d3
Format
benmoriceau b320000
Merge branch 'bmoric/convert-connection-micronaut' of github.com:airb…
benmoriceau f7698c5
Remove media type
benmoriceau f143e2a
Format
benmoriceau fc595d8
Merge branch 'bmoric/convert-destination-controller-micronaut' of git…
benmoriceau fa20dc1
Remove media type
benmoriceau f84305f
Format
benmoriceau e67f012
Merge branch 'bmoric/convert-health-micronaut' of github.com:airbyteh…
benmoriceau 3fec796
api client
benmoriceau e9ad7a9
missing annotation
benmoriceau a8165f4
format
benmoriceau File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 0 additions & 21 deletions
21
...e-server/src/main/java/io/airbyte/server/apis/binders/DestinationDefinitionApiBinder.java
This file was deleted.
Oops, something went wrong.
29 changes: 0 additions & 29 deletions
29
...erver/src/main/java/io/airbyte/server/apis/factories/DestinationDefinitionApiFactory.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same question as on the Source PR, is this annotation necessary?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@colesnodgrass I believe the intent is to force this singleton to be created on startup for performance reasons. Otherwise, the first call to this endpoint has to wait for all of the related beans to be initialized. We should look into why it is slow (maybe we are doing something in a constructor of a singleton that should be deferred, etc). I think that the use of
@Context
here is okay in this context because we are using it on endpoints/controllers to avoid a first request impact.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I answered in the other PR