diff options
author | Martin Zumsande <mzumsande@gmail.com> | 2023-05-04 14:59:29 -0400 |
---|---|---|
committer | Martin Zumsande <mzumsande@gmail.com> | 2023-06-21 15:11:00 -0400 |
commit | 30778124b82791abdc6e930373460ef1dd587cb2 (patch) | |
tree | 7139ed9185f5eac634f4a1638c66d8e2d811096c /test/functional/feature_config_args.py | |
parent | 6c7ebcc14b7908a67a8f8764b398e76c8fb4fe8b (diff) |
net: Give seednodes time before falling back to fixed seeds
Before, we'd remove a seednode from the list right after connecting
to it, leading to a race with loading the fixed seed and connecting
to them.
Diffstat (limited to 'test/functional/feature_config_args.py')
-rwxr-xr-x | test/functional/feature_config_args.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/feature_config_args.py b/test/functional/feature_config_args.py index f9730b48c5..664f829fd3 100755 --- a/test/functional/feature_config_args.py +++ b/test/functional/feature_config_args.py @@ -213,7 +213,7 @@ class ConfArgsTest(BitcoinTestFramework): with self.nodes[0].assert_debug_log(expected_msgs=[ "Loaded 0 addresses from peers.dat", "DNS seeding disabled", - "Adding fixed seeds as -dnsseed=0 (or IPv4/IPv6 connections are disabled via -onlynet), -addnode is not provided and all -seednode(s) attempted\n", + "Adding fixed seeds as -dnsseed=0 (or IPv4/IPv6 connections are disabled via -onlynet) and neither -addnode nor -seednode are provided\n", ]): self.start_node(0, extra_args=['-dnsseed=0', '-fixedseeds=1']) assert time.time() - start < 60 |