Willem1987
Willem1987
Recently Opendistro for Elasticsearch continued as OpenSearch. This project has it's own go client. Requesting for an Opensearch sink based on elasticsearch client using https://github.com/opensearch-project/opensearch-go . The es7 sink will...
Pull request for #174
Given the build step: ```groovy stage("Call` some other build") { steps { script { build(job: "start", parameters: [string(name: 'application', value: 'All')], wait: true) } } } ``` Shows up as:...
Undo extending all Declarations from GenericPipelineDeclaration (this adds unwanted properties) Remove GenericPipelineDeclaration implementation of getProperty. Instead implement propertyMissing method to fallback to env and params. Append test to use env...
In actual jenkins the this object in the pipeline can be used to pass the pipeline script. I workaround this by adding a line: Script pipelineScript = this Above the...
From a.groovy i try to call b.grooy as b("firstVar","secondVar") ``` import helper.SomeClass def call(String firstVar, String secondVar) { } ``` This syntax works in actual jenkins pipeline and is documented...
Attempt to make useOneOfInterfaces configOption usable. #13484 #11715
To fix #13393. By passing along the queryparams to the UriComponents builder it should encode them where needed. I would think the manual building of the query string should not...