Re: [DISCUSS] Change Jenkins default logging format

2018-04-05 Thread gsimpson via Jenkins Developers
> On Wednesday, April 4, 2018 at 9:12:39 AM UTC-7, Oleg Nenashev wrote: > Anyone can easily change the logging format in Jenkins by passing custom J.U.L properties file. > I am going to go ahead and strongly disagree with the characterization that changing the logging is easy. I may be the

Re: hello & improving Jenkins & Kubernetes CI / CD

2018-03-07 Thread gsimpson via Jenkins Developers
Definitely interested in this space. Also happy to host a meetup in the bay area if anyone is interested. On Thursday, March 1, 2018 at 5:50:57 AM UTC-8, James Strachan wrote: > > Hello folks! > > I’m James Strachan. I’m a long time Jenkins user and OSS developer. (e.g. > I created Groovy,

WebMethod using @RequirePOST annotation missing crumb

2017-05-17 Thread gsimpson via Jenkins Developers
I added a @RequirePOST annotation to a web method. When I access the URL in Chrome the browser shows me an error with a 'Try POSTing' button. Clicking the button returns a 403 with the message 'No valid crumb was included in the request'. I know that I can turn off CSRF protection to

When to ACL.impersonate for reading queue items

2017-05-14 Thread gsimpson via Jenkins Developers
I want to publish a queue depth metric and I looked at the Metrics plugin source code for an example :https://github.com/jenkinsci/metrics-plugin/blob/d94a4547b11263c094b2f713b37f7f0610882878/src/main/java/jenkins/metrics/impl/JenkinsMetricProviderImpl.java The author of that class calls (line

Re: What should we do with the CLI?

2017-03-16 Thread gsimpson via Jenkins Developers
REST, REST, REST, REST. Toss the CLI. Don't worry about a replacement. Don't just bolt onto the existing REST api. Design a modern restful interface. If you do that we can all make a client work with it. Please and thank you! On Monday, December 12, 2016 at 8:04:02 PM UTC-8, Daniel Beck

Gradle plugin - discuss gradle wrapper location

2016-05-23 Thread gsimpson via Jenkins Developers
Opened a new issue to work on the location of the gradle wrapper file. Plan to use some waterfall logic to look for the wrapper in all the usual places. If you have a strong opinion about how the plugin should handle the wrapper, please leave a comment on the issue:

Plugin dependencies automatically installed

2016-03-23 Thread gsimpson via Jenkins Developers
My plugin depends on the mailer plugin (set up as described here https://wiki.jenkins-ci.org/display/JENKINS/Dependencies+among+plugins). The plugin works, but when I install it it doesn't try and install it's dependencies. I hoped that Jenkins would handle installing the dependencies as

Re: Install self developed plugin without restart

2016-02-15 Thread gsimpson via Jenkins Developers
If you uninstall the plugin you will lose your configuration. I typically increment the version number and 'upload' the plugin. This still requires a restart, but Jenkins keeps track of the version numbers and allows for reverting. All the configuration is retained when I do this. On