-
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
🐛[source-confluence] 'expand' request parameter converted to comma separated string #36339
🐛[source-confluence] 'expand' request parameter converted to comma separated string #36339
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 1 Ignored Deployment
|
I'm going to run integration tests and validate the change @cjkindel thanks for the contribution. |
It appears I need someone w/ permissions to rebase/run tests/merge or else I will be stuck in a rebase loop |
@cjkindel I need to create a duplicated non-forked branch to run tests properly to your contribution. I'm going to this week, sorry the delay! |
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.
Waiting CI to merge the contribution @cjkindel thanks for this!
…parated string (airbytehq#36339) Co-authored-by: Marcos Marx <marcosmarxm@users.noreply.github.com> Co-authored-by: marcosmarxm <marcosmarxm@gmail.com>
Atlassian APIs like Confluence support an
expand
request parameter that expands the response to include the requested fields. The documentation for this parameter states that it must be a comma separated string. The Page and Blogpostexpand
parameters were not strings. I updated all 3expand
parameters (including the functional but out-of-spec Space's) to meet the specification of comma separated string.Atlassian Documentation: https://developer.atlassian.com/server/confluence/expansions-in-the-rest-api/
Related Issue: #33347