diff options
author | Amit Kapila <akapila@postgresql.org> | 2023-09-14 08:39:03 +0530 |
---|---|---|
committer | Amit Kapila <akapila@postgresql.org> | 2023-09-14 08:39:03 +0530 |
commit | a2e0d5e5f6a05f436f7b73c7f12ffcc22611d23d (patch) | |
tree | 213cdefdb877036cbf5bed0009887eb5db7cd538 /src | |
parent | 7369798a83c883a6314b8a8ed6d3063c508de784 (diff) | |
download | postgresql-a2e0d5e5f6a05f436f7b73c7f12ffcc22611d23d.tar.gz postgresql-a2e0d5e5f6a05f436f7b73c7f12ffcc22611d23d.zip |
Remove redundant result assignment in 004_sync.pl.
Author: Peter Smith
Discussion: http://postgr.es/m/CAHut+PuTNdxnpn24s6jfPDe+fKJoe3M-CoNv-DFsZmJN-ed0Xw@mail.gmail.com
Diffstat (limited to 'src')
-rw-r--r-- | src/test/subscription/t/004_sync.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/subscription/t/004_sync.pl b/src/test/subscription/t/004_sync.pl index aa7714c533b..bf4d59efbad 100644 --- a/src/test/subscription/t/004_sync.pl +++ b/src/test/subscription/t/004_sync.pl @@ -156,7 +156,7 @@ $node_subscriber->safe_psql('postgres', "CREATE SUBSCRIPTION tap_sub CONNECTION '$publisher_connstr' PUBLICATION tap_pub" ); -$result = $node_subscriber->poll_query_until('postgres', $started_query) +$node_subscriber->poll_query_until('postgres', $started_query) or die "Timed out while waiting for subscriber to start sync"; # DROP SUBSCRIPTION must clean up slots on the publisher side when the |