-
Notifications
You must be signed in to change notification settings - Fork 1
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
Added rca support #148
Added rca support #148
Conversation
…lient-web into feature/rca-link-service-aws-2
…-link-service-aws-2
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.
looks good just remove the added files
package.json
Outdated
@@ -0,0 +1,5 @@ | |||
{ |
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.
Delete these stray package and package-lock files from the project root
@@ -33,7 +33,7 @@ export abstract class DecoratedReadableStream { | |||
upsertResponse?: UpsertResponse; | |||
|
|||
constructor(byteLimit: number, underlyingSource: UnderlyingSource) { |
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.
If we don't allow byteLimit to be set anymore should we go through and remove it entirely?
If these changes look good, signoff on them with:
If they aren't any good, please remove them with:
|
Signed-off-by: Daniel Ricaud <dricaud@virtru.com>
7c86681
to
f213c4e
Compare
Kudos, SonarCloud Quality Gate passed! 0 Bugs No Coverage information |
constructor(byteLimit: number, underlyingSource: UnderlyingSource) { | ||
this.stream = new ReadableStream(underlyingSource, { highWaterMark: byteLimit }); | ||
constructor(underlyingSource: UnderlyingSource) { | ||
this.stream = new ReadableStream(underlyingSource, { highWaterMark: 1 }); |
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.
IIUC this will always immediately write whatever to the underlying stream. Which makes sense, as this is just supposed to be a proxy, not a buffer.
…-link-service-aws-2