diff options
author | Robert Haas <rhaas@postgresql.org> | 2021-11-15 14:22:13 -0500 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2021-11-15 14:22:13 -0500 |
commit | 1b098da2009362e0e8d9a1d0a6aac2f2bd3e2f0b (patch) | |
tree | 1bfe6347d4f51418f24371c9411c521f138f6cbc /src | |
parent | b0f7425ec2445678f32381de8bd3174d3cc2167e (diff) |
Fix thinko in bbsink_throttle_manifest_contents.
Report and diagnosis by Dmitry Dolgov.
Discussion: http://postgr.es/m/20211115162641.dmo6l32fklh64gnw@localhost
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/replication/basebackup_throttle.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/replication/basebackup_throttle.c b/src/backend/replication/basebackup_throttle.c index f163931f8a3..f5202bae87c 100644 --- a/src/backend/replication/basebackup_throttle.c +++ b/src/backend/replication/basebackup_throttle.c @@ -122,7 +122,7 @@ bbsink_throttle_manifest_contents(bbsink *sink, size_t len) { throttle((bbsink_throttle *) sink, len); - bbsink_forward_manifest_contents(sink->bbs_next, len); + bbsink_forward_manifest_contents(sink, len); } /* |