Alejandro Durante

Results 17 comments of Alejandro Durante

We are seeing a similar behaviour with the following VaultStaticSecret when the referenced secret in vault has no keys (empty value `{}`). ```yaml apiVersion: secrets.hashicorp.com/v1beta1 kind: VaultStaticSecret metadata: creationTimestamp: '2024-09-20T11:48:27Z'...

Hey @tynrol As you point out, the best way to cancel a particular task at the moment is to pass a custom cancellable context to it directly in the function...

Hey @opengs! v2 of `pond` was released and it introduces a new feature called ["Subpools"](https://github.com/alitto/pond?tab=readme-ov-file#subpools-v2) which might be useful in this particular situation. The core idea is each pool can...

Hey @lospejos! Sorry for the late response. I think i got what you are trying to achieve but yeah, there is no built-in mechanism to implement the pattern you want....

Hi @Azer0s! At the moment, this library doesn't provide any built-in mechanism to "store" state on a worker. Under the hoods, each worker is simply a goroutine running the `worker`...

I think your use case is better suited with `sync.Pool`, which is part of the standard `sync` package: https://pkg.go.dev/sync#Pool. From the struct's description: > A Pool is a set of...

Hi @CfirTsabari! Could you provide some examples of the changes in the interfaces you are proposing and giving some more detail about how these would be used? I would like...