You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A Bootstrapper instance cannot deal with being used in multiple Community instances. Effectively, this causes the Community instances to overwrite eachother. Instead, each Community instance should have its own bootstrapper. This is how it looked before #6206:
If you're using the same bootstrapper configuration everywhere, I'd recomment replacing ipv8.bootstrapper with a factory method ipv8.get_bootstrapper() that makes new DispersyBootstrapper instances.
The text was updated successfully, but these errors were encountered:
The IPv8 component has a single
bootstrapper
:tribler/src/tribler-core/tribler_core/components/implementation/ipv8.py
Line 101 in 47c9b6e
This instance is being inserted into multiple communities, for example:
tribler/src/tribler-core/tribler_core/components/implementation/gigachannel.py
Line 50 in 47c9b6e
tribler/src/tribler-core/tribler_core/components/implementation/popularity.py
Line 36 in 47c9b6e
A
Bootstrapper
instance cannot deal with being used in multipleCommunity
instances. Effectively, this causes theCommunity
instances to overwrite eachother. Instead, eachCommunity
instance should have its own bootstrapper. This is how it looked before #6206:tribler/src/tribler-core/tribler_core/modules/community_loader.py
Lines 27 to 35 in ecb479d
If you're using the same bootstrapper configuration everywhere, I'd recomment replacing
ipv8.bootstrapper
with a factory methodipv8.get_bootstrapper()
that makes newDispersyBootstrapper
instances.The text was updated successfully, but these errors were encountered: