radianer
radianer
Hello, We try to scan a C++ project with `sonarExecuteScan`. We execute the build wrapper before the scan. But the `sonarExecuteScan` fails with the following exception: ``` [2022-08-11T09:44:25.386Z] info sonarExecuteScan...
Hello, the command `dockerExecuteOnKubernetes` ignores the parameter `stashExcludes` and `stashIncludes` if the parameters are set at call in code. E.g. ```groovy dockerExecuteOnKubernetes(script:this, dockerImage:'someImage', stashExcludes:[workspace:'**' ,stashBack:''], stashIncludes:[workspace:'foo', stashBack:'bar'] ) {...} ```...
Hi all, In the [msrest-for-python](https://github.com/Azure/msrest-for-python) repository i can read, that this package is deprecated. Are there plans to replace this package? Thank you
Allow kwargs in the [Quart.test_client](https://github.com/pallets/quart/blob/main/src/quart/app.py#L902) like in [Flask.test_client](https://github.com/pallets/flask/blob/main/src/flask/app.py#L622), to pass custom parameters to custom test client implementations. ```python class CustomClient(QuartClient): def __init__(self, *args: Any, **kwargs: Any) -> None: self._authorization =...
# Changes If a pipeline gets superseded or a stage failed, because of `failFast: true`, the exception dose not contains a message, that results in an NullPointerException in the `catch`...