Nikolay Grechanov
Nikolay Grechanov
Also due to https://github.com/SAP/jenkins-library/issues/3441 the `newmanInstallCommand` is a bit messy: I needed to replace whitespaces with tabs and couldn't use YAML `>-` as it adds whitespaces. The command is: ```sh...
@SAP/jenkins-library-team still valid.
Maybe a customizable newman command instead of a [hardcoded](https://github.com/SAP/jenkins-library/blob/0696f64ecd385403c8045d8c31bac89962b1037d/cmd/newmanExecute.go#L109) one is a good workaround. Then I could simply specify `sh` as a newman command: ```diff newmanExecute: vaultCredentialPath: 'cfApiCredentials' # same...
@SAP/jenkins-library-team still valid.
Maybe you can simply check if an http(s) agent is a CookieAgent? Also, FYI axios-retry removes http(s) agents if they are default ones, but I am not sure if other...
Seems relevant to https://github.com/axios/axios/issues/5089 which shall be fixed in https://github.com/axios/axios/pull/5090
Duplicates https://github.com/Huachao/vscode-restclient/issues/706
It looks like type-scoped contexts are applied before `@nest`ing, but maybe I missed the part of the specification that states this processing order explicitly. As for me the spec states...
Many thanks for quick answers and even a solution! Totally agree with the following points: > * Rejecting the promise indicates a parsing failure > * Returning an empty object...
Nested properties require that I know their names and define them explicitly in the `@context`, but in my case I receive JSONs with _arbitrary_ properties: an indexed maps nested inside...