-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
[low code connectors] add missing/mistyped values for declarative sendgrid + sentry #15734
[low code connectors] add missing/mistyped values for declarative sendgrid + sentry #15734
Conversation
@@ -247,7 +248,7 @@ streams: | |||
$ref: "*ref(definitions.requester)" | |||
request_options_provider: | |||
request_parameters: | |||
limit: 1000 | |||
limit: "1000" |
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.
The alternative to this, is we change the type of RequestInput
from RequestInput = Union[str, Mapping[str, str]]
to RequestInput = Union[str, Mapping[str, Any]]
. That would then make 1000 a valid input
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.
lgtm assuming the acceptance tests pass
/test connector=connectors/source-sendgrid
Build PassedTest summary info:
|
/test connector=connectors/source-sentry
Build PassedTest summary info:
|
/publish connector=connectors/source-sendgrid
if you have connectors that successfully published but failed definition generation, follow step 4 here |
/publish connector=connectors/source-sentry
if you have connectors that successfully published but failed definition generation, follow step 4 here |
/publish connector=connectors/source-sentry
if you have connectors that successfully published but failed definition generation, follow step 4 here |
…ttps://github.com/airbytehq/airbyte into brian/fix_schema_for_published_declarative_sources
…dgrid + sentry (#15734) * add missing/mistyped values for declarative sendgrid + sentry * bump docker versions and add changelog * auto-bump connector version [ci skip] * auto-bump connector version [ci skip] Co-authored-by: Octavia Squidington III <[email protected]>
What
After running schema validation against our existing connectors, there were a few small things that got flagged. These should be fixed before we merge the validation code, otherwise we'll break our daily connector testing
How
A few connectors were missing version, and we should be sending all query parameters as strings as per our type definition