dimw

Results 4 issues of dimw

In Spring MVC it is possible to [annotate body parameter as optional](http://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/web/bind/annotation/RequestBody.html) using `@RequestBody(required = false)` parameter annotation, e.g.: ``` java @FeignClient("foo-service") public interface FooService { @RequestMapping(value = "/foo", method...

enhancement
help wanted

### What is the problem this feature will solve? The HTTP debug information for [node-fetch](https://www.npmjs.com/package/node-fetch) can be turned on by setting the the environment variable `NODE_DEBUG=http`: ```js // node-fetch.test.js const...

enhancement

- Trim env. variable names and values when using with `--variables`. - Trim secret names when using with `--secrets`. - Add support for trailing comma in `--variables` and `--secrets`.

**Actual behaviour:** When passing multiple variables alongside with the `--variables` [multiline configuration](https://docs.gitlab.com/ee/ci/yaml/script.html#split-long-commands) might be used: ```yaml deploy: stage: deploy image: cdrx/rancher-gitlab-deploy script: - > upgrade --variables " DB_HOST=db.example.com, DB_USER=foo, DB_PASSWORD=bar...