Jens Rantil

Results 132 issues of Jens Rantil

## CUE version ``` $ cue version cue version (devel) CUE language version v0.15.1 Go version go1.25.4 -buildmode exe -compiler gc -trimpath true DefaultGODEBUG containermaxprocs=0,decoratemappings=0,tlssha1=1,updatemaxprocs=0,x509sha256skid=0 CGO_ENABLED 1 GOARCH arm64 GOOS...

NeedsInvestigation
Triage

### What version of CUE are you using (`cue version`)? $ cue version cue version (devel) CUE language version v0.15.1 Go version go1.25.4 -buildmode exe -compiler gc -trimpath true DefaultGODEBUG...

NeedsInvestigation
Triage

An alias is not needed. One less thing to think about for a beginner.

Tests don't compile for one of my pull requests. Had Github Actions been in place to test compilation and running tests, this would not have been an issue.

Hi, Given that there has been no new commit added to this project in four years, and no response has been given to multiple submitted pull requests - **would you...

When I execute `cmdstalk -cmd my-command -tubes pages,listing`, cmdstalk [starts two "reserve loops"](https://github.com/99designs/cmdstalk/blob/fbd704da919d283643e673bd02efcf0221224b92/broker/broker_dispatcher.go#L48). There are two problems with this: * Suddenly the concurrency to execute jobs becomes _two_. Instead of...

This adds support for a circuit breaker, which will pause reserving new jobs for period of time if jobs are starting to fail. This is a useful feature to avoid...

For every loop of processing a job, there are multiple consecutive implicit calls to https://github.com/99designs/cmdstalk/blob/fbd704da919d283643e673bd02efcf0221224b92/bs/job.go#L93. This requires a full , unnecessary, roundtrip on the network. To fix this, [the Run...

I was reading the source and thought I would report a tiny bug such that no one runs into it: [`watchNewTubes()` method](https://github.com/99designs/cmdstalk/blob/fbd704da919d283643e673bd02efcf0221224b92/broker/broker_dispatcher.go#L82-L95) only starts new worker dispatchers, but never closes...

A common case is that a task queue worker issues a DDoS against a downstream resource (database, website it scrapes, ...). To reduce the impact of such event, a common...