Skip to content
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

Merged
merged 6 commits into from
Aug 17, 2022
Merged
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
version: "0.1.0"
definitions:
page_size: 50
step: "30d"
Expand Down Expand Up @@ -247,7 +248,7 @@ streams:
$ref: "*ref(definitions.requester)"
request_options_provider:
request_parameters:
limit: 1000
limit: "1000"
Copy link
Contributor Author

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

query: 'last_event_time BETWEEN TIMESTAMP "{{stream_slice.start_time}}" AND TIMESTAMP "{{stream_slice.end_time}}"'
stream_slicer:
$ref: "*ref(definitions.messages_stream_slicer)"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
version: "0.1.0"
definitions:
page_size: 50
schema_loader:
Expand Down