Steven L

Results 47 issues of Steven L

The request in a nutshell: can enough internal details be exposed to allow building custom operators externally? Ideally in a stable way. I very much realize this is not a...

I'm attempting to contribute some code changes, but I'd like to make sure they pass all the tests, and *ideally* I'll add some benchmarks to provide evidence of improved results...

## The bug I just started hooking up revive, and results are very good so far! Many thanks for this project :) When adding the `string-of-int` check, I toyed around...

bug
low-priority

Title describes much of it on its own, and a bigger explanation is below in the "additional context" section, but basically: `*Logger.Info("msg", zap.Object("key", value))` checks if the log-level is enabled...

proposal

### What A human-oriented "get all dynamic config values for X, Y, and Z" API. Internally I imagine we'll expose this on some of our debug UIs, so we can...

We have some non-deterministic failures in a user's workflows, which (as far as either of us can tell) are not due to flawed workflow code. We have been unable to...

Builds on #1167, but adds delay before retrying service-busy errors. For now, since our server-side RPS quotas are calculated per second, this delays at least 1 second per service busy...

Workflow goroutines are shut down concurrently, which can lead to race conditions and crashes. This is an attempt to make them less likely to terminate the hosting process, specifically due...

Well that was surprisingly simple. I'm not confident about it though. need to read more of the core coroutine system to be more confident :\

```go package experiments import ( "testing" "time" "github.com/stretchr/testify/assert" "go.uber.org/cadence/activity" "go.uber.org/cadence/testsuite" "go.uber.org/cadence/workflow" ) func init() { workflow.Register(selectorWork) activity.Register(selectorAct) } func selectorWork(ctx workflow.Context, sync bool) error { ctx = workflow.WithActivityOptions(ctx, workflow.ActivityOptions{ ScheduleToStartTimeout:...

bug
customer