-
Notifications
You must be signed in to change notification settings - Fork 55
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
[ECO-4201] Convert HTTP code to use promises #1603
Merged
lawrence-forooghian
merged 16 commits into
integration/v2
from
1533-remove-callbacks-from-http-code
Feb 21, 2024
Merged
[ECO-4201] Convert HTTP code to use promises #1603
lawrence-forooghian
merged 16 commits into
integration/v2
from
1533-remove-callbacks-from-http-code
Feb 21, 2024
Conversation
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
github-actions
bot
temporarily deployed
to
staging/pull/1603/features
January 30, 2024 17:56
Inactive
lawrence-forooghian
force-pushed
the
remove-callbacks-part-1
branch
from
January 30, 2024 18:02
14e1e5b
to
b429c13
Compare
lawrence-forooghian
force-pushed
the
1533-remove-callbacks-from-http-code
branch
from
January 30, 2024 18:09
742dee8
to
3118ff9
Compare
github-actions
bot
temporarily deployed
to
staging/pull/1603/features
January 30, 2024 18:09
Inactive
github-actions
bot
temporarily deployed
to
staging/pull/1603/typedoc
January 30, 2024 18:10
Inactive
github-actions
bot
temporarily deployed
to
staging/pull/1603/bundle-report
January 30, 2024 18:10
Inactive
lawrence-forooghian
force-pushed
the
1533-remove-callbacks-from-http-code
branch
from
February 1, 2024 17:31
3118ff9
to
5eb4a70
Compare
github-actions
bot
temporarily deployed
to
staging/pull/1603/features
February 1, 2024 17:32
Inactive
github-actions
bot
temporarily deployed
to
staging/pull/1603/typedoc
February 1, 2024 17:32
Inactive
github-actions
bot
temporarily deployed
to
staging/pull/1603/bundle-report
February 1, 2024 17:32
Inactive
lawrence-forooghian
force-pushed
the
1533-remove-callbacks-from-http-code
branch
from
February 7, 2024 16:06
5eb4a70
to
9ccf880
Compare
github-actions
bot
temporarily deployed
to
staging/pull/1603/features
February 7, 2024 16:06
Inactive
github-actions
bot
temporarily deployed
to
staging/pull/1603/bundle-report
February 7, 2024 16:07
Inactive
github-actions
bot
temporarily deployed
to
staging/pull/1603/typedoc
February 7, 2024 16:07
Inactive
lawrence-forooghian
force-pushed
the
1533-remove-callbacks-from-http-code
branch
from
February 7, 2024 16:24
9ccf880
to
dc01ee5
Compare
github-actions
bot
temporarily deployed
to
staging/pull/1603/features
February 7, 2024 16:25
Inactive
github-actions
bot
temporarily deployed
to
staging/pull/1603/bundle-report
February 7, 2024 16:26
Inactive
github-actions
bot
temporarily deployed
to
staging/pull/1603/typedoc
February 7, 2024 16:26
Inactive
lawrence-forooghian
force-pushed
the
1533-remove-callbacks-from-http-code
branch
from
February 8, 2024 17:31
dc01ee5
to
8775cba
Compare
github-actions
bot
temporarily deployed
to
staging/pull/1603/features
February 8, 2024 17:32
Inactive
github-actions
bot
temporarily deployed
to
staging/pull/1603/bundle-report
February 8, 2024 17:32
Inactive
github-actions
bot
temporarily deployed
to
staging/pull/1603/typedoc
February 8, 2024 17:32
Inactive
lawrence-forooghian
force-pushed
the
1533-remove-callbacks-from-http-code
branch
from
February 8, 2024 19:51
8775cba
to
8902807
Compare
github-actions
bot
temporarily deployed
to
staging/pull/1603/features
February 8, 2024 19:51
Inactive
lawrence-forooghian
changed the title
1533 remove callbacks from http code
[SDK-3982] remove callbacks from http code
Feb 8, 2024
github-actions
bot
temporarily deployed
to
staging/pull/1603/typedoc
February 8, 2024 19:52
Inactive
github-actions
bot
temporarily deployed
to
staging/pull/1603/bundle-report
February 8, 2024 19:52
Inactive
lawrence-forooghian
changed the title
[SDK-3982] remove callbacks from http code
[SDK-3982] Convert HTTP code to use promises
Feb 8, 2024
For consistency with our other callbacks.
The approach taken here is the same as that taken in 2001675, in order to be able to emit both an error _and_ the response body. Note that in the "just in case" handling of thrown errors I’ve just typed the thrown error as `any` and not worried about the consequences of doing so; we can figure out how to handle this properly and consistently in #1617.
lawrence-forooghian
force-pushed
the
1533-remove-callbacks-from-http-code
branch
from
February 15, 2024 19:59
a9f8642
to
10be312
Compare
github-actions
bot
temporarily deployed
to
staging/pull/1603/features
February 15, 2024 19:59
Inactive
github-actions
bot
temporarily deployed
to
staging/pull/1603/bundle-report
February 15, 2024 20:00
Inactive
github-actions
bot
temporarily deployed
to
staging/pull/1603/typedoc
February 15, 2024 20:00
Inactive
lawrence-forooghian
force-pushed
the
1533-remove-callbacks-from-http-code
branch
from
February 15, 2024 20:05
10be312
to
2cf5a6b
Compare
jamienewcomb
changed the title
[SDK-3982] Convert HTTP code to use promises
[ECO-4201] Convert HTTP code to use promises
Feb 18, 2024
VeskeR
approved these changes
Feb 19, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Resolves #1533. See commit messages for more details.