[JIRA] [support-core-plugin] (JENKINS-34462) Support core plugin needs to obtain the status of whether CSRF protection is enabled

2016-04-26 Thread ow...@cloudbees.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Owen Wood created an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Jenkins /  JENKINS-34462 
 
 
 
  Support core plugin needs to obtain the status of whether CSRF protection is enabled  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  New Feature 
 
 
 

Assignee:
 
 Owen Wood 
 
 
 

Components:
 

 support-core-plugin 
 
 
 

Created:
 

 2016/Apr/27 5:45 AM 
 
 
 

Priority:
 
  Major 
 
 
 

Reporter:
 
 Owen Wood 
 
 
 
 
 
 
 
 
 
 
Proposal: 
Add 

 

out.println("  * CSRF Protection: "  + Helper.getActiveInstance().isUseCrumbs());
 

 
to about.md 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 
   

[JIRA] [extended-choice-parameter-plugin] (JENKINS-34440) JSON-editor File upload is not working and is blocking the whole display

2016-04-26 Thread vi...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 vimil resolved as Not A Defect 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
there is a syntax error in the groovy script, correcting that fixes the issue 
 
 
 
 
 
 
 
 
 
 Jenkins /  JENKINS-34440 
 
 
 
  JSON-editor File upload is not working and is blocking the whole display  
 
 
 
 
 
 
 
 
 

Change By:
 
 vimil 
 
 
 

Status:
 
 Open Resolved 
 
 
 

Resolution:
 
 Not A Defect 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [extended-choice-parameter-plugin] (JENKINS-34440) JSON-editor File upload is not working and is blocking the whole display

2016-04-26 Thread vi...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 vimil edited a comment on  JENKINS-34440 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: JSON-editor File upload is not working and is blocking the whole display  
 
 
 
 
 
 
 
 
 
   Since you are using a slashy string, you will have to escape the slash. Try the below script to fix the issue.{code: groovy java }import org.boon.Boon;def jsonEditorOptions = Boon.fromJson(/{disable_edit_json: false,disable_properties: false,no_additional_properties: false,disable_collapse: true,disable_array_add: false,disable_array_delete: false,disable_array_reorder: true,theme: "bootstrap3",iconlib:"bootstrap3",schema: {"title": "SVN Permission for Branch: x","type": "array","format": "table","uniqueItems": true,"items": {"type": "object","title": "User","properties": {"Username": {"type": "string","propertyOrder": 1},"Permission": {"type": "string","propertyOrder": 2,"enum": ["RO","RW","NO",""],"default": ""}, "File": { "type": "string", "propertyOrder": 3, "media": { "binaryEncoding": "base64", "type": "image\/png" }, "options": { "include_filename": true } }}}}startval: [{"Username": "user2", "Permission":"RW" },{"Username": "user3", "Permission":"RW" },{"Username": "user4", "Permission":"RW" },]}/);return jsonEditorOptions;{code} 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [extended-choice-parameter-plugin] (JENKINS-34440) JSON-editor File upload is not working and is blocking the whole display

2016-04-26 Thread vi...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 vimil edited a comment on  JENKINS-34440 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: JSON-editor File upload is not working and is blocking the whole display  
 
 
 
 
 
 
 
 
 
  Since you are using a slashy string, you will have to escape the slash. Try the below script to fix the issue. {code:groovy} import org.boon.Boon;def jsonEditorOptions = Boon.fromJson(/{disable_edit_json: false,disable_properties: false,no_additional_properties: false,disable_collapse: true,disable_array_add: false,disable_array_delete: false,disable_array_reorder: true,theme: "bootstrap3",iconlib:"bootstrap3",schema: {"title": "SVN Permission for Branch: x","type": "array","format": "table","uniqueItems": true,"items": {"type": "object","title": "User","properties": {"Username": {"type": "string","propertyOrder": 1},"Permission": {"type": "string","propertyOrder": 2,"enum": ["RO","RW","NO",""],"default": ""}, "File": { "type": "string", "propertyOrder": 3, "media": { "binaryEncoding": "base64", "type": "image\/png" }, "options": { "include_filename": true } }}}}startval: [{"Username": "user2", "Permission":"RW" },{"Username": "user3", "Permission":"RW" },{"Username": "user4", "Permission":"RW" },]}/);return jsonEditorOptions; {code} 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [extended-choice-parameter-plugin] (JENKINS-34440) JSON-editor File upload is not working and is blocking the whole display

2016-04-26 Thread vi...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 vimil commented on  JENKINS-34440 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: JSON-editor File upload is not working and is blocking the whole display  
 
 
 
 
 
 
 
 
 
 
Since you are using a slashy string, you will have to escape the slash. Try the below script to fix the issue. 
import org.boon.Boon; 
def jsonEditorOptions = Boon.fromJson(/{ disable_edit_json: false, disable_properties: false, no_additional_properties: false, disable_collapse: true, disable_array_add: false, disable_array_delete: false, disable_array_reorder: true, theme: "bootstrap3", iconlib:"bootstrap3", 
schema: { "title": "SVN Permission for Branch: x", "type": "array", "format": "table", "uniqueItems": true, "items": { "type": "object", "title": "User", "properties": { "Username":  { "type": "string", "propertyOrder": 1 } 
, "Permission":  { "type": "string", "propertyOrder": 2, "enum": [ "RO", "RW", "NO", "" ], "default": "" } 
, "File": { "type": "string", "propertyOrder": 3, "media":  { "binaryEncoding": "base64", "type": "image\/png" } 
, "options":  { "include_filename": true } 
 } } } } startval: [  {"Username": "user2", "Permission":"RW" } 
,  {"Username": "user3", "Permission":"RW" } 
,  {"Username": "user4", "Permission":"RW" } 
, ] }/); 
return jsonEditorOptions; 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [core] (JENKINS-33652) Job Name and Cancel button gets displayed outside of the Build Queue Pane

2016-04-26 Thread hai...@126.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 hai li updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Jenkins /  JENKINS-33652 
 
 
 
  Job Name and Cancel button gets displayed outside of the Build Queue Pane  
 
 
 
 
 
 
 
 
 

Change By:
 
 hai li 
 
 
 

Attachment:
 
 side-panel-show-incorrect.png 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [core] (JENKINS-33652) Job Name and Cancel button gets displayed outside of the Build Queue Pane

2016-04-26 Thread hai...@126.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 hai li commented on  JENKINS-33652 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Job Name and Cancel button gets displayed outside of the Build Queue Pane  
 
 
 
 
 
 
 
 
 
 
I hit the same issue in 1.642.4 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [core] (JENKINS-34461) IE11: side-panel does not display Job running build and cancel button correctly

2016-04-26 Thread hai...@126.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 hai li resolved as Duplicate 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
It should duplicate to JENKINS-33652(https://issues.jenkins-ci.org/browse/JENKINS-33652) 
 
 
 
 
 
 
 
 
 
 Jenkins /  JENKINS-34461 
 
 
 
  IE11: side-panel does not display Job running build and cancel button correctly  
 
 
 
 
 
 
 
 
 

Change By:
 
 hai li 
 
 
 

Status:
 
 Open Resolved 
 
 
 

Resolution:
 
 Duplicate 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [core] (JENKINS-34461) IE11: side-panel does not display Job running build and cancel button correctly

2016-04-26 Thread hai...@126.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 hai li updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Jenkins /  JENKINS-34461 
 
 
 
  IE11: side-panel does not display Job running build and cancel button correctly  
 
 
 
 
 
 
 
 
 

Change By:
 
 hai li 
 
 
 

Attachment:
 
 side-panel-show-incorrect.tiff 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [core] (JENKINS-34461) IE11: side-panel does not display Job running build and cancel button correctly

2016-04-26 Thread hai...@126.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 hai li updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Jenkins /  JENKINS-34461 
 
 
 
  IE11: side-panel does not display Job running build and cancel button correctly  
 
 
 
 
 
 
 
 
 

Change By:
 
 hai li 
 
 
 

Attachment:
 
 side-panel-show-incorrect.png 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [core] (JENKINS-34461) IE11: side-panel does not display Job running build and cancel button correctly

2016-04-26 Thread hai...@126.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 hai li created an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Jenkins /  JENKINS-34461 
 
 
 
  IE11: side-panel does not display Job running build and cancel button correctly  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Bug 
 
 
 

Assignee:
 

 Unassigned 
 
 
 

Attachments:
 

 side-panel-show-incorrect.tiff 
 
 
 

Components:
 

 core 
 
 
 

Created:
 

 2016/Apr/27 2:56 AM 
 
 
 

Environment:
 

 Jenkins 1.642.4 
 
 
 

Priority:
 
  Minor 
 
 
 

Reporter:
 
 hai li 
 
 
 
 
 
 
 
 
 
 
Job running build and cancel button should be shown in side-panel. It works fine when browsing with Chrome, Firefox and Safari. However, it did not work for IE. Job name display in side-panel, but build and cancel button are displayed in main-panel. 
 
 
 
 
 
 
 
 
 
 
 
 

[JIRA] [core] (JENKINS-27530) ISE from RunMap.put after reloading configuration from disk

2016-04-26 Thread hai...@126.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 hai li commented on  JENKINS-27530 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: ISE from RunMap.put after reloading configuration from disk  
 
 
 
 
 
 
 
 
 
 
My Jenkins is 1.642.4. Also trigger this issue frequently. Any permanent fixes?  
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [jira-plugin] (JENKINS-34457) Jira REST SocketTimeoutException

2016-04-26 Thread radek.anton...@quiddia.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Radek Antoniuk commented on  JENKINS-34457 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Jira REST SocketTimeoutException  
 
 
 
 
 
 
 
 
 
 
1. have you checked if you can access JIRA URL e.g. via CURL from the jenkins server? 2. Are you using proxy? 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [weblogic-deployer-plugin] (JENKINS-19962) Add the ability to declare a job successful even if there are no changes

2016-04-26 Thread mustafaulu....@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Mustafa Ulu updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Jenkins /  JENKINS-19962 
 
 
 
  Add the ability to declare a job successful even if there are no changes  
 
 
 
 
 
 
 
 
 

Change By:
 
 Mustafa Ulu 
 
 
 

Summary:
 
 Add the ability to declare a job successful even if there 's  are  no changes 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [weblogic-deployer-plugin] (JENKINS-19962) Add the ability to declare a job successful even if there's no changes

2016-04-26 Thread mustafaulu....@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Mustafa Ulu commented on  JENKINS-19962 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Add the ability to declare a job successful even if there's no changes  
 
 
 
 
 
 
 
 
 
 
Any progress on this issue? I would like to help implement it.  
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [weblogic-deployer-plugin] (JENKINS-19962) Add the ability to declare a job successful even if there's no changes

2016-04-26 Thread mustafaulu....@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Mustafa Ulu updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Jenkins /  JENKINS-19962 
 
 
 
  Add the ability to declare a job successful even if there's no changes  
 
 
 
 
 
 
 
 
 

Change By:
 
 Mustafa Ulu 
 
 
 
 
 
 
 
 
 
 Hello, I run some builds every night. I force the execution of those builds because of some quality analysis of projectsEach one has a "post-build action" which deploys on weblogic server. In order to reduce the server load and to only deploy the updated projects I mark the option "Deploying only when sources changes".In some projects, the status is unstable even the unit tests are good.I saw on a previous issue (JENKINS-19016) that you changed the job's status from "FAILED" to "UNSTABLE". However,it would be nice if this behaviour could be customizable ( eg . add some radio button to choose the expected behaviour.Thanks.Regards 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [_unsorted] (JENKINS-34460) domain-discover - ping to discover-jenkins. is done over http irrespective of the scheme used for the connection to Jenkins.

2016-04-26 Thread k...@kohsuke.org (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kohsuke Kawaguchi commented on  JENKINS-34460 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: domain-discover - ping to discover-jenkins. is done over http irrespective of the scheme used for the connection to Jenkins.  
 
 
 
 
 
 
 
 
 
 
First, this change is subsequently reverted, so this is not currently an issue. Nonetheless I talked to Ben offline about this to understand his concerns. 
The decision back then was that we'd switch to SRV record pointing to URL that specifies the collection endpoint, which Ben agrees that would address his concern #2 (because it's rather uncommon that hosters add SRV records for tenants) and #3 (because the admin can designate https endpoint.) 
The reporting also does not go through user's browser session. Instead, it's the Jekins master making a connection to the collection endpoint and sending information directly, which includes the URL that Jenkins is running as. Ben agrees that this clarifies #1. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [_unsorted] (JENKINS-34460) domain-discover - ping to discover-jenkins. is done over http irrespective of the scheme used for the connection to Jenkins.

2016-04-26 Thread bwald...@cloudbees.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Ben Walding created an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Jenkins /  JENKINS-34460 
 
 
 
  domain-discover - ping to discover-jenkins. is done over http irrespective of the scheme used for the connection to Jenkins.  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Improvement 
 
 
 

Assignee:
 
 Oleg Nenashev 
 
 
 

Components:
 

 _unsorted 
 
 
 

Created:
 

 2016/Apr/26 11:28 PM 
 
 
 

Priority:
 
  Minor 
 
 
 

Reporter:
 
 Ben Walding 
 
 
 
 
 
 
 
 
 
 
(no component for domain-discover exists) 
Imagine I connected to a secure HTTPS Jenkins with a "secret" in the URL and the domain-discover pinger worked - it would report the secret over http to the discover-jenkins endpoint (as the full URL is transferred in the referer) 
1) Should only the hostname (and or IP address) reported to discover-jenkins (I.e. is it worth reporting a payload - privacy concerns of course) 2) Putting this on by default might cause some entertaining side effects in public hosting infrastructure - e.g. openshift / cloudbees depending on their vhosting layout - I would register a customer discover-jenkins and all customers would report to them (if the hosting provider didn't disable the module) 3) should the ping use the same scheme as the incoming request?; and should it check the certs (to avoid MITM)? IMO - with the introduction of LetsEncrypt there is no reason not to have valid https all the time - even for relative low value instances. 
 
 
 
 
 
 
 
 
 
  

[JIRA] [core] (JENKINS-34137) Possible to close install wizard during plugin install.

2016-04-26 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 SCM/JIRA link daemon commented on  JENKINS-34137 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Possible to close install wizard during plugin install.  
 
 
 
 
 
 
 
 
 
 
Code changed in jenkins User: Daniel Beck Path: war/src/main/js/pluginSetupWizardGui.js war/src/main/js/templates/pluginSelectionPanel.hbs war/src/main/js/templates/welcomePanel.hbs http://jenkins-ci.org/commit/jenkins/5d90f816566aed1d60e77409c722f4e652f3040a Log: Merge pull request #2259 from kzantow/

JENKINS-34137
-smarter-setup-wizard-close 


JENKINS-34137
 setup wizard: better handling of the close button 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [core] (JENKINS-34137) Possible to close install wizard during plugin install.

2016-04-26 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 SCM/JIRA link daemon commented on  JENKINS-34137 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Possible to close install wizard during plugin install.  
 
 
 
 
 
 
 
 
 
 
Code changed in jenkins User: kzantow Path: Jenkinsfile changelog.html cli/pom.xml cli/src/main/java/hudson/cli/CLI.java core/pom.xml core/src/main/java/hudson/ClassicPluginStrategy.java core/src/main/java/hudson/Functions.java core/src/main/java/hudson/PluginManager.java core/src/main/java/hudson/PluginWrapper.java core/src/main/java/hudson/Util.java core/src/main/java/hudson/model/Action.java core/src/main/java/hudson/model/ManagementLink.java core/src/main/java/hudson/model/TopLevelItemDescriptor.java core/src/main/java/hudson/model/UpdateCenter.java core/src/main/java/hudson/model/UpdateSite.java core/src/main/java/hudson/model/User.java core/src/main/java/hudson/model/View.java core/src/main/java/hudson/model/ViewDescriptor.java core/src/main/java/jenkins/ClassLoaderReflectionToolkit.java core/src/main/java/jenkins/model/Jenkins.java core/src/main/java/jenkins/model/RunIdMigrator.java core/src/main/resources/jenkins/management/Messages_lt.properties core/src/main/resources/jenkins/model/Messages_lt.properties core/src/main/resources/jenkins/slaves/systemInfo/Messages_lt.properties core/src/main/resources/jenkins/triggers/Messages_lt.properties core/src/test/java/jenkins/xml/XMLUtilsTest.java pom.xml test/pom.xml test/src/test/java/hudson/bugs/JnlpAccessWithSecuredHudsonTest.java test/src/test/java/hudson/model/ManagementLinkTest.java war/pom.xml http://jenkins-ci.org/commit/jenkins/1c39655f564733c06e7c9eb0c3859ba890b7b7bc Log: Merge remote-tracking branch 'primary/master' into 

JENKINS-34137
-smarter-setup-wizard-close 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit 

[JIRA] [core] (JENKINS-34137) Possible to close install wizard during plugin install.

2016-04-26 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 SCM/JIRA link daemon commented on  JENKINS-34137 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Possible to close install wizard during plugin install.  
 
 
 
 
 
 
 
 
 
 
Code changed in jenkins User: kzantow Path: war/src/main/js/pluginSetupWizardGui.js war/src/main/js/templates/pluginSelectionPanel.hbs war/src/main/js/templates/welcomePanel.hbs http://jenkins-ci.org/commit/jenkins/d0f5c2b074ab0776bf9605ccbdbe0475c72c1041 Log: 

JENKINS-34137
 - better handling of the close button: not allowed while plugins installing or in certain other places, close now directs to setup complete panel, with message about skipping admin user creation 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [android-lint-plugin] (JENKINS-19713) "Hide zero warnings projects" can not be enabled from GUI

2016-04-26 Thread ch...@orr.me.uk (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Christopher Orr closed an issue as Fixed 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
Version 2.3 of the plugin has been released, which includes this fix. 
 
 
 
 
 
 
 
 
 
 Jenkins /  JENKINS-19713 
 
 
 
  "Hide zero warnings projects" can not be enabled from GUI  
 
 
 
 
 
 
 
 
 

Change By:
 
 Christopher Orr 
 
 
 

Status:
 
 Resolved Closed 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [android-lint-plugin] (JENKINS-29870) Make Android Lint Plugin compatible with Workflow

2016-04-26 Thread ch...@orr.me.uk (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Christopher Orr closed an issue as Fixed 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
With an additional fix that was required to make the plugin work with the newer version of analysis-core, version 2.3 of the plugin has now been released. 
 
 
 
 
 
 
 
 
 
 Jenkins /  JENKINS-29870 
 
 
 
  Make Android Lint Plugin compatible with Workflow  
 
 
 
 
 
 
 
 
 

Change By:
 
 Christopher Orr 
 
 
 

Status:
 
 Resolved Closed 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [android-lint-plugin] (JENKINS-33311) Jenkins Pipeline (Workflow) support for Android Lint Plugin plugin

2016-04-26 Thread ch...@orr.me.uk (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Christopher Orr closed an issue as Fixed 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
Version 2.3 of the plugin has been released, which includes Pipeline support. 
 
 
 
 
 
 
 
 
 
 Jenkins /  JENKINS-33311 
 
 
 
  Jenkins Pipeline (Workflow) support for Android Lint Plugin plugin  
 
 
 
 
 
 
 
 
 

Change By:
 
 Christopher Orr 
 
 
 

Status:
 
 Resolved Closed 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [android-lint-plugin] (JENKINS-33075) Android lint plugin fails to run and hangs indefinitely on a Workflow script

2016-04-26 Thread ch...@orr.me.uk (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Christopher Orr closed an issue as Fixed 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
Version 2.3 of the plugin has been released, which includes Pipeline support. 
 
 
 
 
 
 
 
 
 
 Jenkins /  JENKINS-33075 
 
 
 
  Android lint plugin fails to run and hangs indefinitely on a Workflow script  
 
 
 
 
 
 
 
 
 

Change By:
 
 Christopher Orr 
 
 
 

Status:
 
 Open Closed 
 
 
 

Resolution:
 
 Fixed 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [accelerated-build-now-plugin] (JENKINS-34453) Tech Support !!((1 800 686 6918))!!quickbooks pro technical support phone number,quickbooks pro customer service phone number

2016-04-26 Thread cksjclcjkl...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Santa Kumar closed an issue as Fixed 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Jenkins /  JENKINS-34453 
 
 
 
  Tech Support !!((1 800 686 6918))!!quickbooks pro technical support phone number,quickbooks pro customer service phone number  
 
 
 
 
 
 
 
 
 

Change By:
 
 Santa Kumar 
 
 
 

Status:
 
 Open Closed 
 
 
 

Resolution:
 
 Fixed 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [git-plugin] (JENKINS-34459) Exception when using snippet generator with custom git checkout

2016-04-26 Thread o...@nerdnetworks.org (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 owenmehegan commented on  JENKINS-34459 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Exception when using snippet generator with custom git checkout  
 
 
 
 
 
 
 
 
 
 
I just noticed that the Groovy generated in version 1.10 of Pipeline has the following syntax error: 
mergeStrategy:  
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [core] (JENKINS-34450) Deadlock between Executor and AsynchronousExecution

2016-04-26 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 SCM/JIRA link daemon commented on  JENKINS-34450 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Deadlock between Executor and AsynchronousExecution  
 
 
 
 
 
 
 
 
 
 
Code changed in jenkins User: Jesse Glick Path: src/main/java/org/jenkinsci/plugins/workflow/job/WorkflowRun.java http://jenkins-ci.org/commit/workflow-job-plugin/5e95677577ae786b89245591ae9ea2fa3b20c5f6 Log: Merge pull request #2 from jglick/AsynchronousExecution-deadlock-JENKINS-34450 
JENKINS-34450 Work around deadlock in core 
Compare: https://github.com/jenkinsci/workflow-job-plugin/compare/b1505f8b5c55...5e95677577ae 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [core] (JENKINS-34450) Deadlock between Executor and AsynchronousExecution

2016-04-26 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 SCM/JIRA link daemon commented on  JENKINS-34450 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Deadlock between Executor and AsynchronousExecution  
 
 
 
 
 
 
 
 
 
 
Code changed in jenkins User: Jesse Glick Path: src/main/java/org/jenkinsci/plugins/workflow/job/WorkflowRun.java http://jenkins-ci.org/commit/workflow-job-plugin/26bc9d79451b2909f96b55bbb6c83827a8c8de3b Log: JENKINS-34450 Dangerous to acquire the AsynchronousExecution monitor while holding an Executor lock. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [git-plugin] (JENKINS-34459) Exception when using snippet generator with custom git checkout

2016-04-26 Thread o...@nerdnetworks.org (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 owenmehegan updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Jenkins /  JENKINS-34459 
 
 
 
  Exception when using snippet generator with custom git checkout  
 
 
 
 
 
 
 
 
 

Change By:
 
 owenmehegan 
 
 
 
 
 
 
 
 
 
 The Pipeline snippet generator throws java.lang.reflect.InvocationTargetException when you try to generate a snippet for General SCM, using Git, when you add "Merge before build" to the "Additional behaviors" choices. This is broken in Pipeline version 2.0 and Git plugin version 2.4.4. Not sure which of the two is the culprit. It works in Pipeline version 1.10.Repro steps:1. Open the Snippet Generator and choose 'checkout: General SCM'2. Choose Git for the SCM, then fill in the required fields3. Add an Additional behavior, and choose 'Merge before build' from the choices4. Fill in the necessary fields and click 'Generate Groovy'In the Jenkins log, the following exception occurs and no Groovy is generated:{ { noformat} 2016-04-26 21:55:52.184175500 java.lang.reflect.InvocationTargetException2016-04-26 21:55:52.184176500  at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)2016-04-26 21:55:52.184178500  at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)2016-04-26 21:55:52.184179500  at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)2016-04-26 21:55:52.184319500  at java.lang.reflect.Method.invoke(Method.java:606)2016-04-26 21:55:52.184320500  at org.kohsuke.stapler.Function$InstanceFunction.invoke(Function.java:320)2016-04-26 21:55:52.184321500  at org.kohsuke.stapler.Function.bindAndInvoke(Function.java:163)2016-04-26 21:55:52.184323500  at org.kohsuke.stapler.Function.bindAndInvokeAndServeResponse(Function.java:96)2016-04-26 21:55:52.184324500  at org.kohsuke.stapler.MetaClass$1.doDispatch(MetaClass.java:124)2016-04-26 21:55:52.184396500  at org.kohsuke.stapler.NameBasedDispatcher.dispatch(NameBasedDispatcher.java:58)2016-04-26 21:55:52.184398500  at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:746)2016-04-26 21:55:52.184399500  at org.kohsuke.stapler.Stapler.invoke(Stapler.java:876)2016-04-26 21:55:52.184401500  at org.kohsuke.stapler.MetaClass$11.dispatch(MetaClass.java:380)2016-04-26 21:55:52.184460500  at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:746)2016-04-26 21:55:52.184461500  at org.kohsuke.stapler.Stapler.invoke(Stapler.java:876)2016-04-26 21:55:52.184463500  at org.kohsuke.stapler.Stapler.invoke(Stapler.java:649)2016-04-26 21:55:52.184464500  at org.kohsuke.stapler.Stapler.service(Stapler.java:238)2016-04-26 21:55:52.184465500  at javax.servlet.http.HttpServlet.service(HttpServlet.java:848)2016-04-26 21:55:52.184549500  at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:686)2016-04-26 21:55:52.184551500  at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1494)2016-04-26 21:55:52.184553500  at hudson.util.PluginServletFilter$1.doFilter(PluginServletFilter.java:135)2016-04-26 21:55:52.184554500  at com.cloudbees.jenkins.support.slowrequest.SlowRequestFilter.doFilter(SlowRequestFilter.java:37)2016-04-26 21:55:52.184620500  at hudson.util.PluginServletFilter$1.doFilter(PluginServletFilter.java:132)2016-04-26 21:55:52.184622500  at hudson.plugins.greenballs.GreenBallFilter.doFilter(GreenBallFilter.java:58)2016-04-26 21:55:52.184624500  at 

[JIRA] [git-plugin] (JENKINS-34459) Exception when using snippet generator with custom git checkout

2016-04-26 Thread o...@nerdnetworks.org (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 owenmehegan assigned an issue to Jesse Glick 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Jenkins /  JENKINS-34459 
 
 
 
  Exception when using snippet generator with custom git checkout  
 
 
 
 
 
 
 
 
 

Change By:
 
 owenmehegan 
 
 
 

Assignee:
 
 Mark Waite Jesse Glick 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [git-plugin] (JENKINS-34459) Exception when using snippet generator with custom git checkout

2016-04-26 Thread o...@nerdnetworks.org (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 owenmehegan created an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Jenkins /  JENKINS-34459 
 
 
 
  Exception when using snippet generator with custom git checkout  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Bug 
 
 
 

Assignee:
 
 Mark Waite 
 
 
 

Components:
 

 git-plugin, workflow-plugin 
 
 
 

Created:
 

 2016/Apr/26 10:19 PM 
 
 
 

Labels:
 

 workflow 
 
 
 

Priority:
 
  Major 
 
 
 

Reporter:
 
 owenmehegan 
 
 
 
 
 
 
 
 
 
 
The Pipeline snippet generator throws java.lang.reflect.InvocationTargetException when you try to generate a snippet for General SCM, using Git, when you add "Merge before build" to the "Additional behaviors" choices. This is broken in Pipeline version 2.0 and Git plugin version 2.4.4. Not sure which of the two is the culprit. It works in Pipeline version 1.10. 
Repro steps: 1. Open the Snippet Generator and choose 'checkout: General SCM' 2. Choose Git for the SCM, then fill in the required fields 3. Add an Additional behavior, and choose 'Merge before build' from the choices 4. Fill in the necessary fields and click 'Generate Groovy' 
In the Jenkins log, the following exception occurs and no Groovy is generated: 
{{2016-04-26 21:55:52.184175500 java.lang.reflect.InvocationTargetException 2016-04-26 21:55:52.184176500 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2016-04-26 21:55:52.184178500 at 

[JIRA] [android-lint-plugin] (JENKINS-19713) "Hide zero warnings projects" can not be enabled from GUI

2016-04-26 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 SCM/JIRA link daemon resolved as Fixed 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Jenkins /  JENKINS-19713 
 
 
 
  "Hide zero warnings projects" can not be enabled from GUI  
 
 
 
 
 
 
 
 
 

Change By:
 
 SCM/JIRA link daemon 
 
 
 

Status:
 
 Open Resolved 
 
 
 

Resolution:
 
 Fixed 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [android-lint-plugin] (JENKINS-19713) "Hide zero warnings projects" can not be enabled from GUI

2016-04-26 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 SCM/JIRA link daemon commented on  JENKINS-19713 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: "Hide zero warnings projects" can not be enabled from GUI  
 
 
 
 
 
 
 
 
 
 
Code changed in jenkins User: Christopher Orr Path: src/main/java/org/jenkinsci/plugins/android_lint/dashboard/WarningsTablePortlet.java http://jenkins-ci.org/commit/android-lint-plugin/1840ae66ae3b413c32950cd1b6b78ebdc0f160e0 Log: [FIXED JENKINS-19713] Ensure zero warnings option in the portlet can be enabled. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [android-lint-plugin] (JENKINS-22970) Ensure Lint XML is read with the correct character encoding

2016-04-26 Thread ch...@orr.me.uk (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Christopher Orr closed an issue as Cannot Reproduce 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
Can't reproduce — I created a project which triggered the "TypographyFractions" rule, and got an XML file which was correctly encoded as UTF-8. 
Feeding this file to the plugin worked as expected. 
Without more details on the environment, and how the file was produced, there's nothing to do here. 
 
 
 
 
 
 
 
 
 
 Jenkins /  JENKINS-22970 
 
 
 
  Ensure Lint XML is read with the correct character encoding  
 
 
 
 
 
 
 
 
 

Change By:
 
 Christopher Orr 
 
 
 

Status:
 
 Open Closed 
 
 
 

Resolution:
 
 Cannot Reproduce 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit 

[JIRA] [core] (JENKINS-34451) http jenkins 2.0 behind ssl reverse proxy breaks

2016-04-26 Thread e...@talwyn.nl (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Emma Laurijssens commented on  JENKINS-34451 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: http jenkins 2.0 behind ssl reverse proxy breaks  
 
 
 
 
 
 
 
 
 
 
And now for a shiny new ssh client  
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [p4-plugin] (JENKINS-34445) Auto cleanup and sync does not clean workspace properly using custom workspace

2016-04-26 Thread stalle+jenkins...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Staffan Forsell commented on  JENKINS-34445 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Auto cleanup and sync does not clean workspace properly using custom workspace  
 
 
 
 
 
 
 
 
 
 
OK. So I'm starting to understand. I checked out github and from what I understand tidyRevisions() (due to our older server) will run reconcile mark the previous build files for add and then all files that are marked for add is deleted. 
FYI, The view spec is: in the XML snippet: "//utils/mainutils2/... //jenkins-$ {NODE_NAME} 
-$ {JOB_NAME} 
/..." and the dirs/files I expect cleaned are definately in that view at e.g. "/data/jenkins/workspace/utils-mainutils2_main/projA/main/output". 
Is there some other way to debug this? 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [android-lint-plugin] (JENKINS-30661) Install without Maven plugin fails to install

2016-04-26 Thread ch...@orr.me.uk (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Christopher Orr closed an issue as Cannot Reproduce 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
This plugin has a hard dependency on analysis-core, which in turn has always had a hard dependency on maven-plugin, so I'm not sure how you got into this situation. 
I just installed this plugin via the Update Center into a completely clean Jenkins 2.0 install, and the dependencies were correctly resolved: 

 

JUnit Plugin  Success
Javadoc PluginSuccess
Mailer Plugin Success
Maven Integration plugin  Success
Script Security PluginSuccess
Matrix Project Plugin Success
Static Analysis Utilities Success
Windows Slaves Plugin Success
Icon Shim Plugin  Success
Matrix Authorization Strategy Plugin  Success
OWASP Markup Formatter Plugin Success
Android Lint Plugin   Success
 

 
 
 
 
 
 
 
 
 
 
 Jenkins /  JENKINS-30661 
 
 
 
  Install without Maven plugin fails to install  
 
 
 
 
 
 
 
 
 

Change By:
 
 Christopher Orr 
 
 
 

Status:
 
 Open Closed 
 
 
 

Resolution:
 
 Cannot Reproduce 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent 

[JIRA] [jobconfighistory-plugin] (JENKINS-22273) Config History Plugin Produces very high File IO load

2016-04-26 Thread martin.danjo...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Martin d'Anjou commented on  JENKINS-22273 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Config History Plugin Produces very high File IO load  
 
 
 
 
 
 
 
 
 
 
How does a running build change a build configuration? Sounds strange to me. Why store metadata in the config.xml rather than in separate data files? 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [git-parameter-plugin] (JENKINS-34425) Git parameter plugin skips one build number while populating tags

2016-04-26 Thread klim...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Boguslaw Klimas resolved as Fixed 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Jenkins /  JENKINS-34425 
 
 
 
  Git parameter plugin skips one build number while populating tags  
 
 
 
 
 
 
 
 
 

Change By:
 
 Boguslaw Klimas 
 
 
 

Status:
 
 In Progress Resolved 
 
 
 

Resolution:
 
 Fixed 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [git-parameter-plugin] (JENKINS-34425) Git parameter plugin skips one build number while populating tags

2016-04-26 Thread klim...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Boguslaw Klimas commented on  JENKINS-34425 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Git parameter plugin skips one build number while populating tags  
 
 
 
 
 
 
 
 
 
 
Hi, Planning a new edition on 3 may. (0.5.1) 
Regards 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [git-parameter-plugin] (JENKINS-34425) Git parameter plugin skips one build number while populating tags

2016-04-26 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 SCM/JIRA link daemon commented on  JENKINS-34425 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Git parameter plugin skips one build number while populating tags  
 
 
 
 
 
 
 
 
 
 
Code changed in jenkins User: Boguslaw Klimas Path: src/main/java/net/uaznia/lukanus/hudson/plugins/gitparameter/GitParameterDefinition.java http://jenkins-ci.org/commit/git-parameter-plugin/11074b527dde9fb7040fa4f588334d9eb246b48c Log: Merge pull request #21 from jenkinsci/bugfix/JENKINS-34425 
Git parameter plugin skips one build number while populating tags 
Compare: https://github.com/jenkinsci/git-parameter-plugin/compare/aa854f56468a...11074b527dde 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [git-parameter-plugin] (JENKINS-34425) Git parameter plugin skips one build number while populating tags

2016-04-26 Thread klim...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Boguslaw Klimas started work on  JENKINS-34425 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 

Change By:
 
 Boguslaw Klimas 
 
 
 

Status:
 
 Open In Progress 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [github-plugin] (JENKINS-34458) POST /github-webhook/ ignored if triggered within a minute

2016-04-26 Thread docw...@gerf.org (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Christian Höltje created an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Jenkins /  JENKINS-34458 
 
 
 
  POST /github-webhook/ ignored if triggered within a minute  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Bug 
 
 
 

Assignee:
 
 Kirill Merkushev 
 
 
 

Components:
 

 github-plugin 
 
 
 

Created:
 

 2016/Apr/26 8:40 PM 
 
 
 

Environment:
 

 Jenkins-Version: 1.651.1  github-api: 1.75  github-branch-source: 1.5  github: 1.18.2  github-oauth: 0.22.3  github-organization-folder: 1.3 
 
 
 

Priority:
 
  Minor 
 
 
 

Reporter:
 
 Christian Höltje 
 
 
 
 
 
 
 
 
 
 
I'm using the Github Organization Folder and Jenkinsfiles. 
If I push up a change and then within a minute push up a second one; then the second one isn't built (it's just ignored). 
It doesn't appear as queued or anything. But I can see it in the Nginx logs: 

 
x.x.x.x - - [26/Apr/2016:16:29:11 -0400] "POST /github-webhook/ HTTP/1.1" 200 0 "-" "GitHub-Hookshot/35ff2c9"
x.x.x.x - - [26/Apr/2016:16:29:47 -0400] "POST /github-webhook/ HTTP/1.1" 200 0 "-" "GitHub-Hookshot/35ff2c9"
 

 
If I wait a minute to push up the second one, then it is built. 
 
 

[JIRA] [core] (JENKINS-34451) http jenkins 2.0 behind ssl reverse proxy breaks

2016-04-26 Thread db...@cloudbees.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Daniel Beck commented on  JENKINS-34451 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: http jenkins 2.0 behind ssl reverse proxy breaks  
 
 
 
 
 
 
 
 
 
 

Strange that … only on 2.0
 
Shiny new Jetty  
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [core] (JENKINS-34451) http jenkins 2.0 behind ssl reverse proxy breaks

2016-04-26 Thread e...@talwyn.nl (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Emma Laurijssens resolved as Not A Defect 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Jenkins /  JENKINS-34451 
 
 
 
  http jenkins 2.0 behind ssl reverse proxy breaks  
 
 
 
 
 
 
 
 
 

Change By:
 
 Emma Laurijssens 
 
 
 

Status:
 
 Open Resolved 
 
 
 

Resolution:
 
 Not A Defect 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [core] (JENKINS-34451) http jenkins 2.0 behind ssl reverse proxy breaks

2016-04-26 Thread e...@talwyn.nl (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Emma Laurijssens commented on  JENKINS-34451 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: http jenkins 2.0 behind ssl reverse proxy breaks  
 
 
 
 
 
 
 
 
 
 
Setting the X-Forwarded-Proto header is indeed not implicit, as it turns out. Strange that this only occurs with getting favicon.ico though, and only on 2.0. Everything else works, X-Forwarded-Host includes the port. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [jira-plugin] (JENKINS-34457) Jira REST SocketTimeoutException

2016-04-26 Thread cole9...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Shawn Cole created an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Jenkins /  JENKINS-34457 
 
 
 
  Jira REST SocketTimeoutException  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Bug 
 
 
 

Assignee:
 

 Unassigned 
 
 
 

Attachments:
 

 Stack.txt 
 
 
 

Components:
 

 jira-plugin 
 
 
 

Created:
 

 2016/Apr/26 8:02 PM 
 
 
 

Environment:
 

 Windows Server 2008 R2  Jenkins ver. 1.651  Jira-Plugin ver. 2.2.1  
 
 
 

Priority:
 
  Minor 
 
 
 

Reporter:
 
 Shawn Cole 
 
 
 
 
 
 
 
 
 
 
I cannot connect to our Atlassian OnDeman Jira instance. From Jenkins > Manage Jenkins > Configure System, the following settings are configured: URL: https://company.atlassian.net/ Link URL:  Use HTTP auth: false Supports Wiki Notation: false Record SCM Changes: true Issue Pattern:  username: user password: password Connection timeout: 10 Visible for Group:  Visible for Project Role:  Add Timestamp to JIRA comments: false Jira comments timestamp format:  
When I hit "Validate Settings" I receive an ERROR link that gives me a java.net.SocketTimeoutException, stack trace is in the file attached. 

[JIRA] [image-gallery-plugin] (JENKINS-34456) Image Gallery Plugin does not play nice with XML-Summary Report plugin

2016-04-26 Thread imoutsat...@msn.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Ioannis Moutsatsos created an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Jenkins /  JENKINS-34456 
 
 
 
  Image Gallery Plugin does not play nice with XML-Summary Report plugin  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Bug 
 
 
 

Assignee:
 
 Bruno P. Kinoshita 
 
 
 

Attachments:
 

 Untitled_Clipping_042616_034905_PM.jpg 
 
 
 

Components:
 

 image-gallery-plugin, summary_report-plugin 
 
 
 

Created:
 

 2016/Apr/26 7:53 PM 
 
 
 

Environment:
 

 Image Gallery plugin v1.3 Summary Display Plugin v1.4 jenkins 1.596.1 
 
 
 

Priority:
 
  Major 
 
 
 

Reporter:
 
 Ioannis Moutsatsos 
 
 
 
 
 
 
 
 
 
 
When both plugins are used in post-build steps, the colorbox viewer does not appear to work. Clicking on build page images opens the image in a new tab. 
 
 
 
 
 
 
 
 
 
 
 
 
  

[JIRA] [core] (JENKINS-34451) http jenkins 2.0 behind ssl reverse proxy breaks

2016-04-26 Thread db...@cloudbees.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Daniel Beck commented on  JENKINS-34451 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: http jenkins 2.0 behind ssl reverse proxy breaks  
 
 
 
 
 
 
 
 
 
 
https://wiki.jenkins-ci.org/display/JENKINS/Running+Jenkins+behind+Apache mentions both -Port and -Proto explicitly, implying it's not automatic. 
In fact, https://wiki.jenkins-ci.org/display/JENKINS/Jenkins+says+my+reverse+proxy+setup+is+broken recommends: 

sure to set the X-Forwarded-Proto header if your reverse proxy is accessed via HTTPS and then Jenkins itself is accessed via HTTP i.e. proxying HTTPS to HTTP.
 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [xvfb-plugin] (JENKINS-34443) xvfb config options don't show up in manage jenkins

2016-04-26 Thread zregv...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 zregvart closed an issue as Not A Defect 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
Xvfb wiki page updated 
 
 
 
 
 
 
 
 
 
 Jenkins /  JENKINS-34443 
 
 
 
  xvfb config options don't show up in manage jenkins  
 
 
 
 
 
 
 
 
 

Change By:
 
 zregvart 
 
 
 

Status:
 
 Resolved Closed 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [core] (JENKINS-34451) http jenkins 2.0 behind ssl reverse proxy breaks

2016-04-26 Thread e...@talwyn.nl (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Emma Laurijssens commented on  JENKINS-34451 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: http jenkins 2.0 behind ssl reverse proxy breaks  
 
 
 
 
 
 
 
 
 
 
BTW you should indeed not be able to access that URL from the outside. It's being used internally. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [core] (JENKINS-34451) http jenkins 2.0 behind ssl reverse proxy breaks

2016-04-26 Thread e...@talwyn.nl (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Emma Laurijssens commented on  JENKINS-34451 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: http jenkins 2.0 behind ssl reverse proxy breaks  
 
 
 
 
 
 
 
 
 
 
Looks like the issue occurs when fetching favicon.ico. From Chrome: 

 
GET http://ci.deltaforce.io:8443/favicon.ico 400 (Bad Request) 

 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [xvfb-plugin] (JENKINS-33288) Xvfb error does not fail build

2016-04-26 Thread zregv...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 zregvart closed an issue as Fixed 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Jenkins /  JENKINS-33288 
 
 
 
  Xvfb error does not fail build  
 
 
 
 
 
 
 
 
 

Change By:
 
 zregvart 
 
 
 

Status:
 
 Resolved Closed 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [xvfb-plugin] (JENKINS-34066) Xvfb plugin is passing in -fbdir twice

2016-04-26 Thread zregv...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 zregvart commented on  JENKINS-34066 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Xvfb plugin is passing in -fbdir twice  
 
 
 
 
 
 
 
 
 
 
By looking at the Xorg source xserver/tree/hw/vfb/InitOutput.c:365 you can see that the last fbdir argument takes precedence. I would strongly suggest that you leave the management of fbdir argument to the Xvfb Jenkins plugin and see if you can fix the underlaying OS problem (Device or resource busy). Setting the fbdir to a non unique directory will fail your build as the Xvfb would not be able to run if the job is run in parallel with (another or same) job that uses the same fbdir directory. 
If you absolutely need to specify your own fbdir directory and take it upon yourself to maintain the uniqueness of it across all your builds I could modify the Jenkins Xvfb plugin to use the specified instead of the temporary directory unique to each run. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [core] (JENKINS-34451) http jenkins 2.0 behind ssl reverse proxy breaks

2016-04-26 Thread e...@talwyn.nl (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Emma Laurijssens commented on  JENKINS-34451 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: http jenkins 2.0 behind ssl reverse proxy breaks  
 
 
 
 
 
 
 
 
 
 
As per Apache's ProxyPass directive, these headers are automatically generated.  
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [xvfb-plugin] (JENKINS-34443) xvfb config options don't show up in manage jenkins

2016-04-26 Thread nn...@neulinger.org (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Nathan Neulinger commented on  JENKINS-34443 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: xvfb config options don't show up in manage jenkins  
 
 
 
 
 
 
 
 
 
 
FYI, the Xvfb plugin page on the jenkins site has this which leads users in the wrong direction: 
--- Usage The plugin starts and stops the Xvfb virtual framebuffer X11 server so your jobs can use X11 displays in headless environments such as servers, or when dedicated X11 display is required for each job. 
Start by going to Manage Jenkins / Configure System and setup your Xvfb installation. You need to give it a arbitrary name like default Xvfb and directory in which the Xvfb executable is located like /usr/X11R6/bin. Unfortunately there is no support for automatic installation of Xvfb. As of version 1.1.0 you can define a single Xvfb tool installation or have a installation named "default" and the jobs are going to run even if you don't define what installation to use in the job configuration. -- 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [core] (JENKINS-34451) http jenkins 2.0 behind ssl reverse proxy breaks

2016-04-26 Thread db...@cloudbees.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Daniel Beck commented on  JENKINS-34451 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: http jenkins 2.0 behind ssl reverse proxy breaks  
 
 
 
 
 
 
 
 
 
 
Is it correct in the configuration? 
Are you passing the necessary headers? X-Forwarded-Host, X-Forwarded-Proto, X-Forwarded-Port? 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [script-security-plugin] (JENKINS-33468) No such property: it for class: Script1

2016-04-26 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jesse Glick commented on  JENKINS-33468 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: No such property: it for class: Script1  
 
 
 
 
 
 
 
 
 
 
Probably suffices to use 

 

build.artifacts.find { artifact -> artifact.fileName == name }
 

 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [core] (JENKINS-34451) http jenkins 2.0 behind ssl reverse proxy breaks

2016-04-26 Thread e...@talwyn.nl (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Emma Laurijssens updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Jenkins /  JENKINS-34451 
 
 
 
  http jenkins 2.0 behind ssl reverse proxy breaks  
 
 
 
 
 
 
 
 
 

Change By:
 
 Emma Laurijssens 
 
 
 
 
 
 
 
 
 
 I've got Jenkins 1.656 running in a Docker container behind an Apache reverse proxy. Apache does the SSL termination. Everything works OK.When I run the 2.0 container, everything seems to work, except that some links (probably in scripts, when redirecting to another page) revert to http:// instead of https://. For instance, when in the configuration screen, I point at 'manage nodes', the link is correct. However, when I click it, I get a 400 error message: "Your browser sent a request that this server could not understand.Reason: You're speaking plain HTTP to an SSL-enabled server port.Instead use the HTTPS scheme to access this URL, please."The address bar shows I've indeed been directed to a http: url.Edit: I need to add that I'm accessing Apache over a non-standard port, 8443, so the external URL is  http  https ://jenkins.internal.domain:8443. Internally, I'm using --env JENKINS_OPTS="--httpPort=8080" on the docker run command. The 8443 is preserved. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [core] (JENKINS-34451) http jenkins 2.0 behind ssl reverse proxy breaks

2016-04-26 Thread e...@talwyn.nl (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Emma Laurijssens commented on  JENKINS-34451 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: http jenkins 2.0 behind ssl reverse proxy breaks  
 
 
 
 
 
 
 
 
 
 
Yes, you're right. Corrected. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [workflow-plugin] (JENKINS-34455) Provide easy access to current commit ID in Jenkinsfile

2016-04-26 Thread kr...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 krzyk updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Jenkins /  JENKINS-34455 
 
 
 
  Provide easy access to current commit ID in Jenkinsfile  
 
 
 
 
 
 
 
 
 

Change By:
 
 krzyk 
 
 
 
 
 
 
 
 
 
 During old style jenkins jobs I can easily print current commit ID (e.g. GIT_COMMIT , SVN_REVISION ) to the console.But when I want to use it in Jenkinsfile  (multi-branch pipeline)  I tried{code}env.GIT_COMMIT{code}It gives me null/empty output.Commit hash might be useful for informing some revision software about build that succeeded or failed (e.g. I want to use it to ping Atlassian Stash about my build).I think this is one of the basic SCM information that should be available (just like current branch name in {{env.BRANCH_NAME}}). 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [workflow-plugin] (JENKINS-34455) Provide easy access to current commit ID in Jenkinsfile

2016-04-26 Thread kr...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 krzyk created an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Jenkins /  JENKINS-34455 
 
 
 
  Provide easy access to current commit ID in Jenkinsfile  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Bug 
 
 
 

Assignee:
 
 Jesse Glick 
 
 
 

Components:
 

 workflow-plugin 
 
 
 

Created:
 

 2016/Apr/26 6:58 PM 
 
 
 

Priority:
 
  Major 
 
 
 

Reporter:
 
 krzyk 
 
 
 
 
 
 
 
 
 
 
During old style jenkins jobs I can easily print current commit ID (e.g. GIT_COMMIT) to the console. But when I want to use it in Jenkinsfile I tried 

 

env.GIT_COMMIT
 

 
It gives me null/empty output. Commit hash might be useful for informing some revision software about build that succeeded or failed (e.g. I want to use it to ping Atlassian Stash about my build). 
I think this is one of the basic SCM information that should be available (just like current branch name in env.BRANCH_NAME). 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
  

[JIRA] [docker-workflow-plugin] (JENKINS-34454) Add support for Docker-Toolbox/Windows

2016-04-26 Thread mar...@bxm.at (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Martin E created an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Jenkins /  JENKINS-34454 
 
 
 
  Add support for Docker-Toolbox/Windows  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  New Feature 
 
 
 

Assignee:
 
 Jesse Glick 
 
 
 

Components:
 

 docker-workflow-plugin 
 
 
 

Created:
 

 2016/Apr/26 6:57 PM 
 
 
 

Priority:
 
  Minor 
 
 
 

Reporter:
 
 Martin E 
 
 
 
 
 
 
 
 
 
 
Make dockerized pipelines executable when running Jenkins on a Windows platform (e.g. for testing purposes when no Unix box is at hand). 
When running Docker-Toolbox on Windows, the "docker" command is available, but the plugin fails to invoke it because it uses the pipeline "sh" command (see https://github.com/jenkinsci/pipeline-plugin/blob/master/TUTORIAL.md#modifying-for-windows-variations) 

 
java.io.IOException: Cannot run program "nohup" (in directory "d:\dev\jenkins\local\data\workspace\multibranch\master"): CreateProcess error=2, Das System kann die angegebene Datei nicht finden
	at java.lang.ProcessBuilder.start(ProcessBuilder.java:1048)
[...]
	at org.jenkinsci.plugins.docker.workflow.Docker$Image.inside(jar:file:/d:/dev/jenkins/local/data/plugins/docker-workflow/WEB-INF/lib/docker-workflow.jar!/org/jenkinsci/plugins/docker/workflow/Docker.groovy:106)
	at org.jenkinsci.plugins.docker.workflow.Docker.node(jar:file:/d:/dev/jenkins/local/data/plugins/docker-workflow/WEB-INF/lib/docker-workflow.jar!/org/jenkinsci/plugins/docker/workflow/Docker.groovy:63)
	at org.jenkinsci.plugins.docker.workflow.Docker$Image.inside(jar:file:/d:/dev/jenkins/local/data/plugins/docker-workflow/WEB-INF/lib/docker-workflow.jar!/org/jenkinsci/plugins/docker/workflow/Docker.groovy:104)
	at 

[JIRA] [accurev-plugin] (JENKINS-29852) accurev plugin does not pop on workspace anymore

2016-04-26 Thread seta...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Scott Tatum assigned an issue to Unassigned 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
Setting to unassigned as I have no access to Accurev, and am no longer the maintainer of this plugin. 
 
 
 
 
 
 
 
 
 
 Jenkins /  JENKINS-29852 
 
 
 
  accurev plugin does not pop on workspace anymore  
 
 
 
 
 
 
 
 
 

Change By:
 
 Scott Tatum 
 
 
 

Assignee:
 
 Scott Tatum 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [core] (JENKINS-34447) Update Center: update fails with HTTP-504

2016-04-26 Thread db...@cloudbees.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Daniel Beck resolved as Cannot Reproduce 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
Unplanned infrastructure downtime, see e.g. https://twitter.com/jenkinsci/status/724912496851718144 
 
 
 
 
 
 
 
 
 
 Jenkins /  JENKINS-34447 
 
 
 
  Update Center: update fails with HTTP-504  
 
 
 
 
 
 
 
 
 

Change By:
 
 Daniel Beck 
 
 
 

Status:
 
 Open Resolved 
 
 
 

Resolution:
 
 Cannot Reproduce 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [accurev-plugin] (JENKINS-2637) AccuRev include/exclude rules are ignored

2016-04-26 Thread seta...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Scott Tatum assigned an issue to Unassigned 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
Setting to unassigned as I have no access to Accurev, and am no longer the maintainer of this plugin. 
 
 
 
 
 
 
 
 
 
 Jenkins /  JENKINS-2637 
 
 
 
  AccuRev include/exclude rules are ignored  
 
 
 
 
 
 
 
 
 

Change By:
 
 Scott Tatum 
 
 
 

Assignee:
 
 Scott Tatum 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [accurev-plugin] (JENKINS-11461) FATAL: hudson.remoting.RequestAbortedException: java.net.SocketException: Connection reset

2016-04-26 Thread seta...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Scott Tatum assigned an issue to Unassigned 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
Setting to unassigned as I have no access to Accurev, and am no longer the maintainer of this plugin. 
 
 
 
 
 
 
 
 
 
 Jenkins /  JENKINS-11461 
 
 
 
  FATAL: hudson.remoting.RequestAbortedException: java.net.SocketException: Connection reset  
 
 
 
 
 
 
 
 
 

Change By:
 
 Scott Tatum 
 
 
 

Assignee:
 
 Scott Tatum 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [accurev-plugin] (JENKINS-10937) AccuRev: show one stream at the time throws NPE with workspace

2016-04-26 Thread seta...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Scott Tatum assigned an issue to Unassigned 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
Setting to unassigned as I have no access to Accurev, and am no longer the maintainer of this plugin. 
 
 
 
 
 
 
 
 
 
 Jenkins /  JENKINS-10937 
 
 
 
  AccuRev: show one stream at the time throws NPE with workspace  
 
 
 
 
 
 
 
 
 

Change By:
 
 Scott Tatum 
 
 
 

Assignee:
 
 Scott Tatum 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [accurev-plugin] (JENKINS-10906) AccuRev: ParseShowStreams failed

2016-04-26 Thread seta...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Scott Tatum assigned an issue to Unassigned 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
Setting to unassigned as I have no access to Accurev, and am no longer the maintainer of this plugin. 
 
 
 
 
 
 
 
 
 
 Jenkins /  JENKINS-10906 
 
 
 
  AccuRev: ParseShowStreams failed  
 
 
 
 
 
 
 
 
 

Change By:
 
 Scott Tatum 
 
 
 

Assignee:
 
 Scott Tatum 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [script-security-plugin] (JENKINS-33023) Enums are not supported in sandbox

2016-04-26 Thread kr...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 krzyk commented on  JENKINS-33023 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Enums are not supported in sandbox  
 
 
 
 
 
 
 
 
 
 
I also confirm that the problem appeared when I upgraded to Jenkins 2.x 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [core] (JENKINS-34451) http jenkins 2.0 behind ssl reverse proxy breaks

2016-04-26 Thread db...@cloudbees.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Daniel Beck commented on  JENKINS-34451 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: http jenkins 2.0 behind ssl reverse proxy breaks  
 
 
 
 
 
 
 
 
 
 

so the external URL is http://jenkins.internal.domain:8443.
 
Shouldn't this be https://jenkins.internal.domain:8443? 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [active-directory-plugin] (JENKINS-13940) I'm trying to authenticate the Jenkins command line (CLI) and the system returns an error message (user authentication with AD), but the GUI works.

2016-04-26 Thread seta...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Scott Tatum assigned an issue to Unassigned 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
Setting to unassigned as I have no access to Accurev, and am no longer the maintainer of this plugin. 
 
 
 
 
 
 
 
 
 
 Jenkins /  JENKINS-13940 
 
 
 
  I'm trying to authenticate the Jenkins command line (CLI) and the system returns an error message (user authentication with AD), but the GUI works.  
 
 
 
 
 
 
 
 
 

Change By:
 
 Scott Tatum 
 
 
 

Assignee:
 
 Scott Tatum 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [xvfb-plugin] (JENKINS-34443) xvfb config options don't show up in manage jenkins

2016-04-26 Thread nn...@neulinger.org (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Nathan Neulinger resolved as Not A Defect 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
That's exactly it - was completely unaware of that Global Tool Configuration menu and was looking for it in configure system.  
 
 
 
 
 
 
 
 
 
 Jenkins /  JENKINS-34443 
 
 
 
  xvfb config options don't show up in manage jenkins  
 
 
 
 
 
 
 
 
 

Change By:
 
 Nathan Neulinger 
 
 
 

Status:
 
 Open Resolved 
 
 
 

Resolution:
 
 Not A Defect 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [xvfb-plugin] (JENKINS-34443) xvfb config options don't show up in manage jenkins

2016-04-26 Thread zregv...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 zregvart commented on  JENKINS-34443 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: xvfb config options don't show up in manage jenkins  
 
 
 
 
 
 
 
 
 
 
If you upgraded to Jenkins 2.0 your existing tool configurations are carried over. If you installed a fresh copy of Jenkins you need to configure Xvfb tool configuration. You might be unaware that the tool configuration is as per 

JENKINS-14538
 under Global Tool Configuration menu in the Manage Jenkins page. If you cannot find the Xvfb tool configuration please provide steps and Jenkins log files so that I can reproduce and troubleshoot the issue. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [workflow-plugin] (JENKINS-32691) Hard to find "Click here to forcibly terminate running steps"

2016-04-26 Thread davidkarl...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 davidkarlsen commented on  JENKINS-32691 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Hard to find "Click here to forcibly terminate running steps"  
 
 
 
 
 
 
 
 
 
 
+1 - and if the jobs are deleted the links to add /term and /kill to will not be available. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [script-security-plugin] (JENKINS-33023) Enums are not supported in sandbox

2016-04-26 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jesse Glick commented on  JENKINS-33023 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Enums are not supported in sandbox  
 
 
 
 
 
 
 
 
 
 
You say it passed in Jenkins 1.x but fails in 2.x? Perhaps a matter of Groovy 1.x vs. 2.x (the bundled version was updated). 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [script-security-plugin] (JENKINS-33023) Enums are not supported in sandbox

2016-04-26 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 SCM/JIRA link daemon resolved as Fixed 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Jenkins /  JENKINS-33023 
 
 
 
  Enums are not supported in sandbox  
 
 
 
 
 
 
 
 
 

Change By:
 
 SCM/JIRA link daemon 
 
 
 

Status:
 
 In Progress Resolved 
 
 
 

Resolution:
 
 Fixed 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [script-security-plugin] (JENKINS-33023) Enums are not supported in sandbox

2016-04-26 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 SCM/JIRA link daemon commented on  JENKINS-33023 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Enums are not supported in sandbox  
 
 
 
 
 
 
 
 
 
 
Code changed in jenkins User: Jesse Glick Path: src/main/java/org/jenkinsci/plugins/scriptsecurity/sandbox/groovy/GroovyCallSiteSelector.java src/test/java/org/jenkinsci/plugins/scriptsecurity/sandbox/groovy/SandboxInterceptorTest.java http://jenkins-ci.org/commit/script-security-plugin/5b4623a06fe580a7beca083948fc9d99adac1b76 Log: Merge pull request #58 from magnusr/feature/enums 
[FIXED JENKINS-33023] Support enum initializers 
Compare: https://github.com/jenkinsci/script-security-plugin/compare/65d1e7d0e721...5b4623a06fe5 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [copyartifact-plugin] (JENKINS-14999) Copy Artifact plugin: Unable to find project for artifact copy when using a build parameter

2016-04-26 Thread bochenski.kuba+jenk...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jakub Bochenski commented on  JENKINS-14999 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Copy Artifact plugin: Unable to find project for artifact copy when using a build parameter  
 
 
 
 
 
 
 
 
 
 
I'm still getting this in 1.3.7 / Jenkins ver. 1.651.1 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [accelerated-build-now-plugin] (JENKINS-34453) Tech Support !!((1 800 686 6918))!!quickbooks pro technical support phone number,quickbooks pro customer service phone number

2016-04-26 Thread cksjclcjkl...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Santa Kumar created an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Jenkins /  JENKINS-34453 
 
 
 
  Tech Support !!((1 800 686 6918))!!quickbooks pro technical support phone number,quickbooks pro customer service phone number  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Bug 
 
 
 

Assignee:
 
 Anthony Dahanne 
 
 
 

Components:
 

 accelerated-build-now-plugin 
 
 
 

Created:
 

 2016/Apr/26 5:57 PM 
 
 
 

Priority:
 
  Minor 
 
 
 

Reporter:
 
 Santa Kumar 
 
 
 
 
 
 
 
 
 
 
Tech Support !Unable to render embedded object: File (((1 800 686 6918))) not found.!quickbooks pro technical support phone number,quickbooks pro customer service phone number Tech..%% 1-800-686-6918 Quickbooks 24 hours tech support phone number for Quickbooks customer support phone number Quickbooks Support number ...1800-686 6918 QUICKBOOKS CUSTOMER SERVICE phone number 1 800-686 6918 QUICKBOOKS tech support number Quickbooks Support number ...1800-686 6918 QUICKBOOKS CUSTOMER SERVICE phone number 1 800-686 6918 QUICKBOOKS tech support number Call1 800 686 6918 Quickbooks tech support phone number , Quickbooks customer service phone number Quickbooks support phone number (1-800-686-6918) Quickbooks tech support phone number CA ... Call Now 1800-686-6918 QUICKBOOKS technical support number 1800-686-6918 QUICKBOOKS technical support phone number +1800 686 6918=quickbooks customer care phone number +()* 1 800 686 6918 () quickbooks technical support phone number quickbooks phone number 1-800-686-6918 quickbooks support phone number , quickbooks customer service number 1 800 686 6918 quickbooks phone number ,quickbooks support phone number ,quickbooks tech support phone number ,quickbooks telephone number quickbooks help phone number (((1 800 686 6918quickbooks customer support phone number ,nortoon customer service phone number ()* 1 800 686 

[JIRA] [core] (JENKINS-33948) 2.0 setup wizard - Notifications and Publishing never highlighted.

2016-04-26 Thread kzan...@cloudbees.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Keith Zantow started work on  JENKINS-33948 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 

Change By:
 
 Keith Zantow 
 
 
 

Status:
 
 Open In Progress 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [script-security-plugin] (JENKINS-34251) Some additional tests.

2016-04-26 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 SCM/JIRA link daemon commented on  JENKINS-34251 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Some additional tests.  
 
 
 
 
 
 
 
 
 
 
Code changed in jenkins User: Jesse Glick Path: src/main/java/org/jenkinsci/plugins/scriptsecurity/scripts/ScriptApproval.java src/main/resources/org/jenkinsci/plugins/scriptsecurity/scripts/ScriptApproval/index.jelly src/test/java/org/jenkinsci/plugins/scriptsecurity/scripts/AbstractApprovalTest.java src/test/java/org/jenkinsci/plugins/scriptsecurity/scripts/Approvable.java src/test/java/org/jenkinsci/plugins/scriptsecurity/scripts/EntryApprovalTest.java src/test/java/org/jenkinsci/plugins/scriptsecurity/scripts/Manager.java src/test/java/org/jenkinsci/plugins/scriptsecurity/scripts/ScriptApprovalTest.java http://jenkins-ci.org/commit/script-security-plugin/67442f49bbef48348c95d003e2a84bf897e67402 Log: Merge pull request #53 from andresrc/

JENKINS-34251
 
[FIXED JENKINS-34251] Some additional tests 
Compare: https://github.com/jenkinsci/script-security-plugin/compare/1c321f31b5b3...67442f49bbef 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [script-security-plugin] (JENKINS-34251) Some additional tests.

2016-04-26 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 SCM/JIRA link daemon resolved as Fixed 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Jenkins /  JENKINS-34251 
 
 
 
  Some additional tests.  
 
 
 
 
 
 
 
 
 

Change By:
 
 SCM/JIRA link daemon 
 
 
 

Status:
 
 In Progress Resolved 
 
 
 

Resolution:
 
 Fixed 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [script-security-plugin] (JENKINS-34251) Some additional tests.

2016-04-26 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 SCM/JIRA link daemon commented on  JENKINS-34251 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Some additional tests.  
 
 
 
 
 
 
 
 
 
 
Code changed in jenkins User: Andres Rodriguez Path: src/main/java/org/jenkinsci/plugins/scriptsecurity/scripts/ScriptApproval.java src/main/resources/org/jenkinsci/plugins/scriptsecurity/scripts/ScriptApproval/index.jelly src/test/java/org/jenkinsci/plugins/scriptsecurity/scripts/AbstractApprovalTest.java src/test/java/org/jenkinsci/plugins/scriptsecurity/scripts/Approvable.java src/test/java/org/jenkinsci/plugins/scriptsecurity/scripts/EntryApprovalTest.java src/test/java/org/jenkinsci/plugins/scriptsecurity/scripts/Manager.java src/test/java/org/jenkinsci/plugins/scriptsecurity/scripts/ScriptApprovalTest.java http://jenkins-ci.org/commit/script-security-plugin/f8fb90d3ae8158a0b124c3b4bc30fc051a316b41 Log: 

JENKINS-34251
 Some additional tests 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [branch-api-plugin] (JENKINS-31601) Multibranch project or organization folder shows welcome screen immediately after configuration without refresh

2016-04-26 Thread rec...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Manuel Jesús Recena Soto closed an issue as Duplicate 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Jenkins /  JENKINS-31601 
 
 
 
  Multibranch project or organization folder shows welcome screen immediately after configuration without refresh  
 
 
 
 
 
 
 
 
 

Change By:
 
 Manuel Jesús Recena Soto 
 
 
 

Status:
 
 In Progress Closed 
 
 
 

Resolution:
 
 Duplicate 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [core] (JENKINS-34451) http jenkins 2.0 behind ssl reverse proxy breaks

2016-04-26 Thread e...@talwyn.nl (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Emma Laurijssens updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Jenkins /  JENKINS-34451 
 
 
 
  http jenkins 2.0 behind ssl reverse proxy breaks  
 
 
 
 
 
 
 
 
 

Change By:
 
 Emma Laurijssens 
 
 
 
 
 
 
 
 
 
 I've got Jenkins 1.656 running in a Docker container behind an Apache reverse proxy. Apache does the SSL termination. Everything works OK.When I run the 2.0 container, everything seems to work, except that some links (probably in scripts, when redirecting to another page) revert to http:// instead of https://. For instance, when in the configuration screen, I point at 'manage nodes', the link is correct. However, when I click it, I get a 400 error message: "Your browser sent a request that this server could not understand.Reason: You're speaking plain HTTP to an SSL-enabled server port.Instead use the HTTPS scheme to access this URL, please."The address bar shows I've indeed been directed to a http: url. Edit: I need to add that I'm accessing Apache over a non-standard port, 8443, so the external URL is http://jenkins.internal.domain:8443. Internally, I'm using --env JENKINS_OPTS="--httpPort=8080" on the docker run command. The 8443 is preserved. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [cloudbees-folder-plugin] (JENKINS-34200) Change navigation flow

2016-04-26 Thread rec...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Manuel Jesús Recena Soto resolved as Done 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Jenkins /  JENKINS-34200 
 
 
 
  Change navigation flow  
 
 
 
 
 
 
 
 
 

Change By:
 
 Manuel Jesús Recena Soto 
 
 
 

Status:
 
 Reopened Resolved 
 
 
 

Resolution:
 
 Done 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [branch-api-plugin] (JENKINS-31601) Multibranch project or organization folder shows welcome screen immediately after configuration without refresh

2016-04-26 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 SCM/JIRA link daemon commented on  JENKINS-31601 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Multibranch project or organization folder shows welcome screen immediately after configuration without refresh  
 
 
 
 
 
 
 
 
 
 
Code changed in jenkins User: recena Path: src/main/java/com/cloudbees/hudson/plugins/folder/AbstractFolder.java src/main/java/com/cloudbees/hudson/plugins/folder/computed/ComputedFolder.java http://jenkins-ci.org/commit/cloudbees-folder-plugin/b895f08dfc84c769d9608a588cfa304d925e91b1 Log: 

JENKINS-34200
 Following the @jglick's suggestion described JENKINS-31601 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [cloudbees-folder-plugin] (JENKINS-34200) Change navigation flow

2016-04-26 Thread rec...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Manuel Jesús Recena Soto updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Jenkins /  JENKINS-34200 
 
 
 
  Change navigation flow  
 
 
 
 
 
 
 
 
 

Change By:
 
 Manuel Jesús Recena Soto 
 
 
 

Component/s:
 
 cloudbees-folder-plugin 
 
 
 

Component/s:
 
 github-branch-source-plugin 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [cloudbees-folder-plugin] (JENKINS-34200) Change navigation flow

2016-04-26 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 SCM/JIRA link daemon commented on  JENKINS-34200 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Change navigation flow  
 
 
 
 
 
 
 
 
 
 
Code changed in jenkins User: recena Path: src/main/java/com/cloudbees/hudson/plugins/folder/computed/ComputedFolder.java http://jenkins-ci.org/commit/cloudbees-folder-plugin/8bd30255101eb8e390beab7c3a5d34227031b784 Log: 

JENKINS-34200
 Since computation can not be null we avoid to check for null 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [github-branch-source-plugin] (JENKINS-34200) Change navigation flow

2016-04-26 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 SCM/JIRA link daemon commented on  JENKINS-34200 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Change navigation flow  
 
 
 
 
 
 
 
 
 
 
Code changed in jenkins User: recena Path: src/main/java/com/cloudbees/hudson/plugins/folder/AbstractFolder.java http://jenkins-ci.org/commit/cloudbees-folder-plugin/de3411ca9f920b881066074d70868d3ea6493d95 Log: 

JENKINS-34200
 New API to set a custom successful destination 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [cloudbees-folder-plugin] (JENKINS-34200) Change navigation flow

2016-04-26 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 SCM/JIRA link daemon commented on  JENKINS-34200 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Change navigation flow  
 
 
 
 
 
 
 
 
 
 
Code changed in jenkins User: Manuel Recena Path: src/main/java/com/cloudbees/hudson/plugins/folder/AbstractFolder.java src/main/java/com/cloudbees/hudson/plugins/folder/computed/ComputedFolder.java http://jenkins-ci.org/commit/cloudbees-folder-plugin/0a3fe90c38be3f720350f641bd8f60f09ae1310c Log: Merge pull request #58 from recena/

JENKINS-34200
 


JENKINS-34200
 Redirect to indexing log after creating or editing a ComputedFolder 
Compare: https://github.com/jenkinsci/cloudbees-folder-plugin/compare/275ea88c35ae...0a3fe90c38be 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [cloudbees-folder-plugin] (JENKINS-34200) Change navigation flow

2016-04-26 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 SCM/JIRA link daemon commented on  JENKINS-34200 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Change navigation flow  
 
 
 
 
 
 
 
 
 
 
Code changed in jenkins User: recena Path: src/main/java/com/cloudbees/hudson/plugins/folder/AbstractFolder.java src/main/java/com/cloudbees/hudson/plugins/folder/computed/ComputedFolder.java http://jenkins-ci.org/commit/cloudbees-folder-plugin/b895f08dfc84c769d9608a588cfa304d925e91b1 Log: 

JENKINS-34200
 Following the @jglick's suggestion described JENKINS-31601 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [cloudbees-folder-plugin] (JENKINS-34200) Change navigation flow

2016-04-26 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 SCM/JIRA link daemon commented on  JENKINS-34200 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Change navigation flow  
 
 
 
 
 
 
 
 
 
 
Code changed in jenkins User: recena Path: src/main/java/com/cloudbees/hudson/plugins/folder/computed/ComputedFolder.java src/main/resources/com/cloudbees/hudson/plugins/folder/computed/ComputedFolder/tasks-top-extra.jelly http://jenkins-ci.org/commit/cloudbees-folder-plugin/730791c841178e06d05f9db0e964f38ee3c9120f Log: Merge remote-tracking branch 'upstream/master' into 

JENKINS-34200
 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [core] (JENKINS-19465) OSX Slave hangs while being launched

2016-04-26 Thread nthieb...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Norbert Thiebaud updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Jenkins /  JENKINS-19465 
 
 
 
  OSX Slave hangs while being launched  
 
 
 
 
 
 
 
 
 

Change By:
 
 Norbert Thiebaud 
 
 
 

Environment:
 
 Jenkins 1.529OSX 10.8.4 (running as a VMWare Guest in VMWare Workstation 9.0.2 inside a Windows 7 Host) also Jenkins 1.645, OSX 10.9, 10.10 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [core] (JENKINS-19465) OSX Slave hangs while being launched

2016-04-26 Thread nthieb...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Norbert Thiebaud commented on  JENKINS-19465 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: OSX Slave hangs while being launched  
 
 
 
 
 
 
 
 
 
 
Thanks for sharing Alexander.. that 'works' indeed and beat having to restart the entire instance  
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [job-import-plugin] (JENKINS-23807) Support jobs in folders

2016-04-26 Thread esc...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Emilio Escobar  updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Jenkins /  JENKINS-23807 
 
 
 
  Support jobs in folders  
 
 
 
 
 
 
 
 
 

Change By:
 
 Emilio Escobar  
 
 
 

Priority:
 
 Major Minor 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [nunit-plugin] (JENKINS-34452) Nunit plugin in raises exception if there are no tests in nunit xml

2016-04-26 Thread ceddlybu...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 cedd burge created an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Jenkins /  JENKINS-34452 
 
 
 
  Nunit plugin in raises exception if there are no tests in nunit xml  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Bug 
 
 
 

Assignee:
 
 Bruno P. Kinoshita 
 
 
 

Components:
 

 nunit-plugin 
 
 
 

Created:
 

 2016/Apr/26 4:13 PM 
 
 
 

Environment:
 

 nunit 0.17, jenkins 1.651.1 
 
 
 

Priority:
 
  Major 
 
 
 

Reporter:
 
 cedd burge 
 
 
 
 
 
 
 
 
 
 
I recently upgraded jenkins and all our plugins and some of our builds are failing. 
After investigation it turns out that we produce some nunit test xml files that have no test results in (we might have set a test to [Ignore] temporarily for example). 
These used to work, and now do not. 
Example xml: 
 
The output is as follows: 
Recording NUnit tests results ERROR: Step ‘Publish NUnit test result report’ aborted due to exception:  java.io.IOException: Failed to read D:\EX00_WS\temporary-junit-reports\TEST-RES.Coordinate.Calculation.Test.TurkeyTest_2.xml at hudson.tasks.junit.TestResult.parse(TestResult.java:306) at hudson.tasks.junit.TestResult.parsePossiblyEmpty(TestResult.java:244) at hudson.tasks.junit.TestResult.parse(TestResult.java:175) at hudson.tasks.junit.TestResult.parse(TestResult.java:154) at 

[JIRA] [p4-plugin] (JENKINS-34445) Auto cleanup and sync does not clean workspace properly using custom workspace

2016-04-26 Thread pal...@perforce.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Paul Allen commented on  JENKINS-34445 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Auto cleanup and sync does not clean workspace properly using custom workspace  
 
 
 
 
 
 
 
 
 
 
Hi Staffan, 
The automated cleanup will only run within the scope of the client Workspace view. So, base on (1) it will fail to cleanup files outside the view. 
(2) The "... rm [abandoned files]" is only for files reverted, which is why it reported '/data/jenkins/workspace/utils-mainutils2_main/... - file(s) not opened on this client.' 
(3) I'd need to check P4IGNORE, but it is generally better to use the client workspace view. 
(4) Revert is reporting this as there are no files 'opened' in your client. It is there to support the cleanup of shelves, where files are unshelved into the workspace from previous builds and are left open for add/edit/etc... 
I hope that helps to clear up the workflow, feel free to contact our support team (supp...@perforce.com) for help too. 
Kind regards, Paul 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


  1   2   >