Derek P. Moore
Derek P. Moore
@aldas -- Ahh, right. No default implementations in Go? At least generics are improving! ;) I do hide the ugly code under some reasonable abstractions. Thanks!
@spericas -- I think not having exceptions for all statuses is an oversight. It is nice to cause specific status codes in responses simply by raising the corresponding exception. Having...
@spericas -- It looks like @jeyvison's PR was rejected. To me it is all or nothing, and Jeyvison's PR looks like it went with "all," but some maintainers want user-programmers...
@spericas -- How do we know which ones are worth implementing or which exceptions won't be rejected if implemented? I was asking for exceptions for "NOT_IMPLEMENTED & friends." Just implement...
@spericas -- Yes, I'm aware how PRs work. 😄 Which is why I'm asking question so I don't just shoot in the dark trying to bring this home, as I...
This is also something I've been using since 2012 as Jersey's `WebResourceFactory`: https://github.com/eclipse-ee4j/jersey/blob/master/ext/proxy-client/src/main/java/org/glassfish/jersey/client/proxy/WebResourceFactory.java When MicroProfile REST Client spec was being written, I made sure the spec writers considered `@BeanParam`s and...
Some interesting PRs involving `WebResourceFactory` proxy client from before the Eclipse donation: JERSEY-1653: Add support for @BeanParam in jersey-proxy-client https://github.com/jersey/jersey/pull/235 JERSEY-3248: support parameter converters in WebResourceFactory https://github.com/jersey/jersey/pull/269
Here's a run action that provides a consistent way to get the branch name for both `push` & `pull_request` event types: ``` - env: BRANCH_NAME_OR_REF: ${{ github.head_ref || github.ref }}...
@TheSnoozer -- > Note: > ... the repo seems to be in detached head and results in the corresponding git-commit as branch... A workaround might be to also specify the...
I finally got coveralls-maven-plugin to publish the master branch name by passing the information along using `CI_*` environment variables instead of command line arguments (or using `set-output` instead of `set-env`...