-
Notifications
You must be signed in to change notification settings - Fork 24
feat: remove 1-or-more stream validation #496
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
Conversation
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.
Pull Request Overview
This PR removes the requirement for at least one stream (or dynamic stream) to be defined in the manifest, allowing for OAuth testing scenarios without a predefined stream. Key changes include:
- Removal of the check that raised a ValidationError if no streams are provided.
- Adjustment of the manifest validation process to rely solely on the JSON schema validation.
Comments suppressed due to low confidence (1)
airbyte_cdk/sources/declarative/manifest_declarative_source.py:285
- Ensure that the removal of the stream validation check is backed by tests verifying that manifests with no streams are handled as expected.
if not (streams or dynamic_streams):
📝 WalkthroughWalkthroughThe update removes a validation step from the Changes
Possibly related PRs
Would you like me to help draft a note linking these PRs for easier tracking, wdyt? 📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (2)
💤 Files with no reviewable changes (2)
⏰ Context from checks skipped due to timeout of 90000ms (9)
✨ Finishing Touches
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
97d020b
to
5308241
Compare
Removes the requirement that at least one stream must exist for the manifest to be valid; this supports https://github.com/airbytehq/airbyte-internal-issues/issues/12079, and the ability to test OAuth from the builder without defining a stream
Summary by CodeRabbit