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
The ipfs pubsub subsystem is currently an MVP and needs some hardening before it can truly be considered "ready":
Use pubsub's new built-in discovery system instead of literally putting a block advertising our interest in the topic into the blockstore.
Manage pubsub topics. This may involve changing the API. At the moment, calling pubsub publish will "join" the topic permanently.
Pass pubsub.WithReadyness(pubsub.MinTopicSize(1)) on publish so we don't publish into the void. We can pass a context with a short (1-10s) timeout to avoid blocking forever.
Use the non-deprecated topic.Publish function so we can actually pass in a context.
The text was updated successfully, but these errors were encountered:
The
ipfs pubsub
subsystem is currently an MVP and needs some hardening before it can truly be considered "ready":pubsub publish
will "join" the topic permanently.pubsub.WithReadyness(pubsub.MinTopicSize(1))
on publish so we don't publish into the void. We can pass a context with a short (1-10s) timeout to avoid blocking forever.topic.Publish
function so we can actually pass in a context.The text was updated successfully, but these errors were encountered: