sgrimm-sg

Results 10 comments of sgrimm-sg

As a workaround until this fix is released, you can add ``` [diff] renames = false ``` to `.git/config` in the repo that git2consul monitors.

Ah, that's an interesting idea. I think a variant of it might be better: rather than a second health check for the same service, instead register a second service with...

Yes, that's actually exactly what we're doing so our application knows internally when it has become the primary, but you can only start a session if you have a passing...

Yesterday I tried switching to this setup (adding a second service with the `urlprefix-` tag and a health check that passed only when the instance was the primary). It worked...

This causes the IntelliJ plugin to stop working in IntelliJ 2019.2 which uses Java 11, and just having the plugin installed causes failures in IntelliJ's documentation viewer.

There was one thing I ran into in my 2.x implementation of this that went beyond using `SELECT FOR UPDATE`. The code needs to make sure it acquires locks in...

How about something like `dao.withReturning(callback).insert(...)`? Then in Java 8 you could do something like ``` dao.withReturning(MyPojo::setId).insert(myPojo); ``` which doesn't seem too horrible. This kind of method chaining seems like it's...

I'd like to see this in `cp` and/or `mv` as well. The reason I don't use `sync` for this right now is that `sync` has major performance problems if the...

The docs do contain configuration snippets for the specific components, but what’s missing, as far as I could tell, is any kind of introduction or high-level description of how the...

I successfully worked around this on OS X 10.13 just now with Chromium 68.0.3419.0. Setting the `AutoSelectCertificateForUrls` policy is the right approach. But the documentation at https://www.chromium.org/administrators/policy-list-3#AutoSelectCertificateForUrls is wrong. The...