Skip to content

Commit

Permalink
fix: Add missing field when creating a SubscriberClient.Settings from…
Browse files Browse the repository at this point in the history
… another.
  • Loading branch information
amanda-tarafa committed May 16, 2023
1 parent 20aaac2 commit 204866c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ public sealed class Settings
internal Settings(Settings other)
{
FlowControlSettings = other.FlowControlSettings;
UseLegacyFlowControl = other.UseLegacyFlowControl;
AckDeadline = other.AckDeadline;
AckExtensionWindow = other.AckExtensionWindow;
Scheduler = other.Scheduler;
Expand Down
2 changes: 1 addition & 1 deletion apis/Google.Cloud.PubSub.V1/docs/history.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ and are also sent to the Cloud Pub/Sub server but not enforced on
the server side yet. Server side flow control is on track to be
enabled by the 2nd week of December 2020. Users that face issues
with server side flow control can disable it by setting
`SubscriberClient.Settings.UseLegacyFlowControl`# to `true` which
`SubscriberClient.Settings.UseLegacyFlowControl` to `true` which
will result in the enforcement of client side flow control only.

## Version 2.1.0, released 2020-08-03
Expand Down

0 comments on commit 204866c

Please sign in to comment.