fix(tvix/glue/tvix_store_io): disable concurrent fetches for now
We need some shared queue, preventing the same fetches/builds from getting triggered multiple times unnecessarily. Change-Id: I7c4a3c66db558f5cccd66865b170242b758e3e02 Reviewed-on: https://cl.tvl.fyi/c/depot/+/11800 Reviewed-by: aspen <root@gws.fyi> Autosubmit: flokli <flokli@flokli.de> Tested-by: BuildkiteCI
This commit is contained in:
parent
79bfa931ed
commit
d947f61d36
1 changed files with 3 additions and 1 deletions
|
@ -238,7 +238,9 @@ impl TvixStoreIO {
|
|||
)
|
||||
})
|
||||
.flatten()
|
||||
.buffer_unordered(10) // TODO: make configurable
|
||||
.buffer_unordered(
|
||||
1, /* TODO: increase again once we prevent redundant fetches */
|
||||
) // TODO: make configurable
|
||||
.try_collect()
|
||||
.await?;
|
||||
|
||||
|
|
Loading…
Reference in a new issue