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
{{ message }}
This repository has been archived by the owner on Dec 23, 2024. It is now read-only.
BucketDiscovery spawns several goroutines and calls on each of them BucketStat.
We can achieve the same behavior without spawning new goroutines, just split BuckerStat into bucketStatAsync and bucketStatWait stages/parts.
The text was updated successfully, but these errors were encountered:
* BucketStat: split into bucketStatAsync and bucketStatWait parts
* BucketDiscovery: do not spawn goroutines, just use futures in the single goroutine
* BucketResolve: make it alias for BucketDiscovery
* BucketStat: split into bucketStatAsync and bucketStatWait parts
* BucketDiscovery: do not spawn goroutines, just use futures in the single goroutine
* BucketResolve: make it alias for BucketDiscovery
* BucketStat: split into bucketStatAsync and bucketStatWait parts
* BucketDiscovery: do not spawn goroutines, just use futures in the single goroutine
* BucketResolve: make it alias for BucketDiscovery
BucketDiscovery
spawns several goroutines and calls on each of themBucketStat
.We can achieve the same behavior without spawning new goroutines, just split
BuckerStat
intobucketStatAsync
andbucketStatWait
stages/parts.The text was updated successfully, but these errors were encountered: