Travis H.

Results 11 comments of Travis H.

I'm using Kotlin with the Lettuce coroutine support. The client is configured to connect to a primary-replica AWS ElastiCache instance.

Homebrew would build/install the binary, and replace it during an upgrade. The `brew outdated` command would indicate when a new version is available. In general, its easier for a MacOS...

bucket4j is a fairly complicated project, so although I haven't used Kotlin multiplatform for anything yet myself, it seems like a new GitHub project may be warranted. You would have...

I don't think its working with 3.0.0 for me. I cannot override the default settings for the following in `application.yml`: ``` management: metrics: export: statsd: host: ${STATSD_HOST} enabled: true ```...

This issue appeared relevant. I'm using Kotlin as well, and Spring 3.x wont allow me to configure the properties I mentioned in the comment above. It always uses the default...

Ran into this too. Tried using newer builder pattern, ``` WebDriver driver = RemoteWebDriver.builder() .address(webDriverContainer.getSeleniumAddress()) .oneOf(browserOptions) .build(); ``` later read that this auto-applies the augmentation changed it to ``` WebDriver...

Hello! We've been hit by similar issue this past week during some load testing. I have attached a [stacktrace](https://github.com/user-attachments/files/17562104/queue_limit_exceeded_stacktrace.txt). We also saw a few Netty LEAK errors [stacktrace](https://github.com/user-attachments/files/17590038/leak_stacktrace.txt). - Spring...

@alexeykurshakov we haven't see the issue again For "It usually only happens on one server instance", we run multiple k8s pods, so it was observed on a single pod in...

Similar, but different, with 4.x to 5.x I'm seeing, ``` Error: unable to find field "spec.template.metadata.labels.[app.kubernetes.io/version]" in replacement target ``` for a `replacement` template like ``` source: kind: Rollout name:...

@natasha41575 any thoughts about [what I ran across](https://github.com/kubernetes-sigs/kustomize/issues/5128#issuecomment-1516768593), which wasn't using a regex, but had the same error as originally reported?