[JIRA] (JENKINS-54640) Workspace folders are not unique

2018-11-27 Thread ralphtheni...@riseup.net (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Lars-Magnus Skog commented on  JENKINS-54640  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Workspace folders are not unique   
 

  
 
 
 
 

 
 Thanks everyone for feedback. Jenkins seems to be a friendly and helpful community! <3  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
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] (JENKINS-54640) Workspace folders are not unique

2018-11-26 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jesse Glick commented on  JENKINS-54640  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Workspace folders are not unique   
 

  
 
 
 
 

 
 Lars-Magnus Skog yes the truncation is intentional, to limit the length of folder names, as some tools (especially, though not exclusively, on Windows) have trouble with long names. Josh Soref please open a separate bug report linked to JENKINS-2111, ideally with steps to reproduce from scratch if you can find them. Your stack trace suggests that Jenkins is trying to open a workspaces.txt which does not exist…immediately after verifying that it does exist. While I could certainly make this code more defensive in various ways, I would like to understand what is happening first.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
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] (JENKINS-54640) Workspace folders are not unique

2018-11-23 Thread jsoref+jenk...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Josh Soref commented on  JENKINS-54640  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Workspace folders are not unique   
 

  
 
 
 
 

 
 So, I think that the plugin is not being careful about whose workspace.txt it's considering...   We're using 

 

pipeline {
 parallel {
  stage {
  }
  stage {
  }
 }
} 

 A quick grep for our project across the various build nodes shows that the hashed directory listed is the one from one build node, but not from the failing build node (which has a different path in the workspaces.txt file).  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
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] (JENKINS-54640) Workspace folders are not unique

2018-11-23 Thread jsoref+jenk...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Josh Soref commented on  JENKINS-54640  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Workspace folders are not unique   
 

  
 
 
 
 

 
 So, all I've done is rename workspaces.txt I don't really want to have to go to all 10 of my computers and delete entire trees if i can avoid it...  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
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] (JENKINS-54640) Workspace folders are not unique

2018-11-23 Thread jsoref+jenk...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Josh Soref commented on  JENKINS-54640  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Workspace folders are not unique   
 

  
 
 
 
 

 
 

 

ERROR: Unable to launch the agent for somenode
java.nio.file.NoSuchFileException: /home/jenkins/workspace/workspaces.txt
	at sun.nio.fs.UnixException.translateToIOException(UnixException.java:86)
	at sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:102)
	at sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:107)
	at sun.nio.fs.UnixFileSystemProvider.newByteChannel(UnixFileSystemProvider.java:214)
	at java.nio.file.Files.newByteChannel(Files.java:361)
	at java.nio.file.Files.newByteChannel(Files.java:407)
	at java.nio.file.spi.FileSystemProvider.newInputStream(FileSystemProvider.java:384)
	at java.nio.file.Files.newInputStream(Files.java:152)
	at hudson.FilePath$Read.invoke(FilePath.java:1991)
	at hudson.FilePath$Read.invoke(FilePath.java:1983)
	at hudson.FilePath$FileCallableWrapper.call(FilePath.java:3084)
	at hudson.remoting.UserRequest.perform(UserRequest.java:212)
	at hudson.remoting.UserRequest.perform(UserRequest.java:54)
	at hudson.remoting.Request$2.run(Request.java:369)
	at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:72)
Caused: java.io.IOException
	at hudson.remoting.FastPipedInputStream.read(FastPipedInputStream.java:169)
	at sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:284)
	at sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:326)
	at sun.nio.cs.StreamDecoder.read(StreamDecoder.java:178)
	at java.io.InputStreamReader.read(InputStreamReader.java:184)
	at java.io.BufferedReader.fill(BufferedReader.java:161)
	at java.io.BufferedReader.readLine(BufferedReader.java:324)
	at java.io.BufferedReader.readLine(BufferedReader.java:389)
	at jenkins.branch.WorkspaceLocatorImpl.load(WorkspaceLocatorImpl.java:221)
	at jenkins.branch.WorkspaceLocatorImpl.access$500(WorkspaceLocatorImpl.java:80)
	at jenkins.branch.WorkspaceLocatorImpl$Collector.onOnline(WorkspaceLocatorImpl.java:518)
	at hudson.slaves.SlaveComputer.setChannel(SlaveComputer.java:693)
	at hudson.slaves.SlaveComputer.setChannel(SlaveComputer.java:432)
	at hudson.slaves.CommandLauncher.launch(CommandLauncher.java:153)
	at hudson.slaves.SlaveComputer$1.call(SlaveComputer.java:294)
	at jenkins.util.ContextResettingExecutorService$2.call(ContextResettingExecutorService.java:46)
	at jenkins.security.ImpersonatingExecutorService$2.call(ImpersonatingExecutorService.java:71)
	at java.util.concurrent.FutureTask.run(FutureTask.java:266)
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
	at java.lang.Thread.run(Thread.java:748)
ERROR: Connection terminated
java.io.EOFException
	at java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2671)
	at java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3146)
	at java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:858)
	at java.io.ObjectInputStream.(ObjectInputStream.java:354)
	at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
	at hudson.remoting.Command.readFrom(Command.java:140)
	at hudson.remoting.Command.readFrom(Command.java:126)
	at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:36)
	at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: 

[JIRA] (JENKINS-54640) Workspace folders are not unique

2018-11-23 Thread ralphtheni...@riseup.net (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Lars-Magnus Skog commented on  JENKINS-54640  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Workspace folders are not unique   
 

  
 
 
 
 

 
 kpop Ok. But why would it be intentional? What's the reason for doing it?  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
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] (JENKINS-54640) Workspace folders are not unique

2018-11-23 Thread k...@vandewiele.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 kpop commented on  JENKINS-54640  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Workspace folders are not unique   
 

  
 
 
 
 

 
 Lars-Magnus Skog, I believe that cutting of the folder names is intentional behavior. I see the same without loss of functionality. The workspaces.txt lists the full project name and project path, as well as the folder that is allocated for it. Josh Soref, check if the workspaces.txt still contains duplicate folder names. I've cleared my entire workspace and also removed that file to get it working. But it might also be sufficient to remove all duplicates in workspaces.txt and the corresponding folders. New collisions are avoided, but I'm unsure if existing collisions are also fixed automatically.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
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] (JENKINS-54640) Workspace folders are not unique

2018-11-22 Thread jsoref+jenk...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Josh Soref edited a comment on  JENKINS-54640  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Workspace folders are not unique   
 

  
 
 
 
 

 
 Fwiw, this fix doesn't appear to have fixed our flavor of the problem. We tried upgrading to 2.1.1 and that broke things the same way the previous thing did. We're downgrading  (to 2.0.20)  now.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
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] (JENKINS-54640) Workspace folders are not unique

2018-11-22 Thread jsoref+jenk...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Josh Soref commented on  JENKINS-54640  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Workspace folders are not unique   
 

  
 
 
 
 

 
 Fwiw, this fix doesn't appear to have fixed our flavor of the problem.   We tried upgrading to 2.1.1 and that broke things the same way the previous thing did. We're downgrading now.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
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] (JENKINS-54640) Workspace folders are not unique

2018-11-21 Thread ralphtheni...@riseup.net (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Lars-Magnus Skog edited a comment on  JENKINS-54640  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Workspace folders are not unique   
 

  
 
 
 
 

 
 I've noticed that workspace names sometimes get cut off. Not sure if it's known issue or not, but this issue was the closest I could find. Example. Below is a list of workspaces for `deltachat/deltachat-desktop`. As you can see, one of the workspaces doesn't start with `deltachat-desktop`, but instead `hat-desktop` or `ltachat-desktop`: !Screenshot from 2018-11-21 18-31-31.png!  Please advice if you want me to create a separate issue for this.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
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] (JENKINS-54640) Workspace folders are not unique

2018-11-21 Thread ralphtheni...@riseup.net (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Lars-Magnus Skog commented on  JENKINS-54640  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Workspace folders are not unique   
 

  
 
 
 
 

 
 I've noticed that workspace names sometimes get cut off. Not sure if it's known issue or not, but this issue was the closest I could find.   Example. Below is a list of workspaces for `deltachat/deltachat-desktop`. As you can see, one of the workspaces doesn't start with `deltachat-desktop`, but instead `hat-desktop` or `ltachat-desktop`:     
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
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] (JENKINS-54640) Workspace folders are not unique

2018-11-21 Thread ralphtheni...@riseup.net (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Lars-Magnus Skog updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-54640  
 
 
  Workspace folders are not unique   
 

  
 
 
 
 

 
Change By: 
 Lars-Magnus Skog  
 
 
Attachment: 
 Screenshot from 2018-11-21 18-31-31.png  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
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] (JENKINS-54640) Workspace folders are not unique

2018-11-20 Thread k...@vandewiele.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 kpop closed an issue as Fixed  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 

 
Nov 21, 2018 8:23:35 AM FINE  allocating $WORKSPACE/Config1_BranchWithRatherLongName for WorkflowJob@11fe5  [Repo/ProjectA/Config1/BranchWithRatherLongName]
Nov 21, 2018 8:33:18 AM FINER index collision onConfig1_BranchWithRatherLongName for WorkflowJob@16ea9b8[Repo/ProjectB/Config1/BranchWithRatherLongName]
Nov 21, 2018 8:33:18 AM FINE  allocating $WORKSPACE/nfig1_BranchWithRatherLongName_2 for WorkflowJob@16ea9b8[Repo/ProjectB/Config1/BranchWithRatherLongName]
 

 The above log illustrates that collisions as correctly resolved by appending a something to the folder name to make it unique. That unique name is also correctly stored in workspaces.txt.  
 

  
 
 
 
 

 
 Jenkins /  JENKINS-54640  
 
 
  Workspace folders are not unique   
 

  
 
 
 
 

 
Change By: 
 kpop  
 
 
Status: 
 Resolved Closed  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   


[JIRA] (JENKINS-54640) Workspace folders are not unique

2018-11-20 Thread k...@vandewiele.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 kpop commented on  JENKINS-54640  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Workspace folders are not unique   
 

  
 
 
 
 

 
 Many thanks Jesse Glick for this quick fix! Just to be sure, I've also emptied my workspace folder.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
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] (JENKINS-54640) Workspace folders are not unique

2018-11-19 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jesse Glick updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-54640  
 
 
  Workspace folders are not unique   
 

  
 
 
 
 

 
Change By: 
 Jesse Glick  
 
 
Comment: 
 Pending a release, you could try [this build|https://repo.jenkins-ci.org/incrementals/org/jenkins-ci/plugins/branch-api/2.1.1-rc660.81bbeda9b444/branch-api-2.1.1-rc660.81bbeda9b444.hpi] (via *Plugin Manager » Advanced*).  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
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] (JENKINS-54640) Workspace folders are not unique

2018-11-19 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jesse Glick stopped work on  JENKINS-54640  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
Change By: 
 Jesse Glick  
 
 
Status: 
 In Progress Open  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
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] (JENKINS-54640) Workspace folders are not unique

2018-11-19 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jesse Glick updated  JENKINS-54640  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-54640  
 
 
  Workspace folders are not unique   
 

  
 
 
 
 

 
Change By: 
 Jesse Glick  
 
 
Status: 
 In  Review  Progress  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
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] (JENKINS-54640) Workspace folders are not unique

2018-11-19 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jesse Glick resolved as Fixed  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-54640  
 
 
  Workspace folders are not unique   
 

  
 
 
 
 

 
Change By: 
 Jesse Glick  
 
 
Status: 
 Open Resolved  
 
 
Resolution: 
 Fixed  
 
 
Released As: 
 2.1.1  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
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] (JENKINS-54640) Workspace folders are not unique

2018-11-19 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jesse Glick commented on  JENKINS-54640  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Workspace folders are not unique   
 

  
 
 
 
 

 
 Pending a release, you could try this build (via Plugin Manager » Advanced).  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
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] (JENKINS-54640) Workspace folders are not unique

2018-11-19 Thread andrew.ba...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Andrew Bayer updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-54640  
 
 
  Workspace folders are not unique   
 

  
 
 
 
 

 
Change By: 
 Andrew Bayer  
 
 
Labels: 
 regression  triaged-2018-11  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
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] (JENKINS-54640) Workspace folders are not unique

2018-11-19 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jesse Glick updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-54640  
 
 
  Workspace folders are not unique   
 

  
 
 
 
 

 
Change By: 
 Jesse Glick  
 
 
Labels: 
 regression  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
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] (JENKINS-54640) Workspace folders are not unique

2018-11-19 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jesse Glick started work on  JENKINS-54640  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
Change By: 
 Jesse Glick  
 
 
Status: 
 Open In Progress  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
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] (JENKINS-54640) Workspace folders are not unique

2018-11-19 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jesse Glick assigned an issue to Jesse Glick  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-54640  
 
 
  Workspace folders are not unique   
 

  
 
 
 
 

 
Change By: 
 Jesse Glick  
 
 
Assignee: 
 Jesse Glick  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
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] (JENKINS-54640) Workspace folders are not unique

2018-11-19 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jesse Glick updated  JENKINS-54640  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-54640  
 
 
  Workspace folders are not unique   
 

  
 
 
 
 

 
Change By: 
 Jesse Glick  
 
 
Status: 
 In  Progress  Review  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
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] (JENKINS-54640) Workspace folders are not unique

2018-11-19 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jesse Glick commented on  JENKINS-54640  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Workspace folders are not unique   
 

  
 
 
 
 

 
 Thanks, reproduced and fixed.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
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] (JENKINS-54640) Workspace folders are not unique

2018-11-19 Thread k...@vandewiele.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 kpop commented on  JENKINS-54640  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Workspace folders are not unique   
 

  
 
 
 
 

 
 Both ProjectA and ProjectB get the same directory in workspaces.txt for the two projects that build for Config1: 

 
Repo/ProjectA/Config1/BranchWithRatherLongName
ktop_ID_209617_-_INSTALL_PHASE_2
Repo/ProjectB/Config1/BranchWithRatherLongName
ktop_ID_209617_-_INSTALL_PHASE_2
 

 The requested logging shows the same: 

 
   1122333
  12345678901234567890123456789012
Nov 19, 2018  2:30:47 PM FINE allocating   $WORKSPACE/Config1_BranchWithRatherLongName for WorkflowJob@bc4502 [Repo/ProjectA/Config1/BranchWithRatherLongName]
Nov 19, 2018  2:33:44 PM FINER index already lists $WORKSPACE/Config1_BranchWithRatherLongName for WorkflowJob@bc4502 [Repo/ProjectA/Config1/BranchWithRatherLongName]
Nov 19, 2018  2:40:51 PM FINE allocating   $WORKSPACE/Config1_BranchWithRatherLongName for WorkflowJob@13f21b9[Repo/ProjectB/Config1/BranchWithRatherLongName]
 

  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
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] (JENKINS-54640) Workspace folders are not unique

2018-11-19 Thread k...@vandewiele.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 kpop edited a comment on  JENKINS-54640  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Workspace folders are not unique   
 

  
 
 
 
 

 
 Both ProjectA and ProjectB get the same directory in _workspaces.txt_ for the two projects that build for Config1:{noformat}Repo/ProjectA/Config1/BranchWithRatherLongName ktop_ID_209617_-_INSTALL_PHASE_2 Config1_BranchWithRatherLongName Repo/ProjectB/Config1/BranchWithRatherLongName ktop_ID_209617_-_INSTALL_PHASE_2 Config1_BranchWithRatherLongName {noformat}The requested logging shows the same:{noformat} 1122333 12345678901234567890123456789012Nov 19, 2018  2:30:47 PM FINE allocating   $WORKSPACE/Config1_BranchWithRatherLongName for WorkflowJob@bc4502 [Repo/ProjectA/Config1/BranchWithRatherLongName]Nov 19, 2018  2:33:44 PM FINER index already lists $WORKSPACE/Config1_BranchWithRatherLongName for WorkflowJob@bc4502 [Repo/ProjectA/Config1/BranchWithRatherLongName]Nov 19, 2018  2:40:51 PM FINE allocating   $WORKSPACE/Config1_BranchWithRatherLongName for WorkflowJob@13f21b9[Repo/ProjectB/Config1/BranchWithRatherLongName]{noformat}  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
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] (JENKINS-54640) Workspace folders are not unique

2018-11-16 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jesse Glick commented on  JENKINS-54640  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Workspace folders are not unique   
 

  
 
 
 
 

 
 kpop I added some more information on diagnostics to JENKINS-54654.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
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] (JENKINS-54640) Workspace folders are not unique

2018-11-15 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jesse Glick commented on  JENKINS-54640  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Workspace folders are not unique   
 

  
 
 
 
 

 
 The fix of JENKINS-2111 removed the long hash from workspace names. However, it introduced a workspaces.txt file which tracks which directory is used for which project. Evidently this is not working in your case. Please provide complete steps to reproduce the problem from scratch, or at a minimum run this build (Plugin Manager » Advanced to upload) and create a custom logger on jenkins.branch.WorkspaceLocatorImpl to assist in remote diagnosis.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
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] (JENKINS-54640) Workspace folders are not unique

2018-11-15 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jesse Glick updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-54640  
 
 
  Workspace folders are not unique   
 

  
 
 
 
 

 
Change By: 
 Jesse Glick  
 
 
Component/s: 
 branch-api-plugin  
 
 
Component/s: 
 pipeline  
 
 
Component/s: 
 pipeline-multibranch-defaults-plugin  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
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] (JENKINS-54640) Workspace folders are not unique

2018-11-15 Thread k...@vandewiele.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 kpop updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-54640  
 
 
  Workspace folders are not unique   
 

  
 
 
 
 

 
Change By: 
 kpop  
 
 
Component/s: 
 pipeline-multibranch-defaults-plugin  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
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] (JENKINS-54640) Workspace folders are not unique

2018-11-15 Thread k...@vandewiele.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 kpop updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-54640  
 
 
  Workspace folders are not unique   
 

  
 
 
 
 

 
Change By: 
 kpop  
 
 
Environment: 
 Jenkins 2.151 pipeline 2.5pipeline-multibranch 2.20  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
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] (JENKINS-54640) Workspace folders are not unique

2018-11-15 Thread k...@vandewiele.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 kpop created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-54640  
 
 
  Workspace folders are not unique   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 Unassigned  
 
 
Components: 
 pipeline  
 
 
Created: 
 2018-11-15 09:18  
 
 
Environment: 
 Jenkins 2.151  
 
 
Priority: 
  Critical  
 
 
Reporter: 
 kpop  
 

  
 
 
 
 

 
 Something changed in the naming of the workspace folders on the Jenkins Master node. Previously, the name the was suffixed with a long random (names are examples only, the exact length is different): 

 
MyProjectA1_MyBranch-ZOBMWQA2JSVUZRAPJAQ3NT3TSBIUQOS26N5CF3XJB@libs
MyProjectA1_MyBranch-ZOBMWQA2JSVUZRAPJAQ3NT3TSBIUQOS26N5CF3XJB@script
MyVeryLongBranchName-NHOUUZPM5MARPAN7OGASNLPNCKRLL26RQKEZIEEKC@libs
MyVeryLongBranchName-NHOUUZPM5MARPAN7OGASNLPNCKRLL26RQKEZIEEKC@script
MyVeryLongBranchName-TN6NSHXVGMKRKUOVV7CKNODZOK3JSHI4CQYCOR4E6@libs
MyVeryLongBranchName-TN6NSHXVGMKRKUOVV7CKNODZOK3JSHI4CQYCOR4E6@script
 

 However now, this suffix seems to be removed, causing name clashes when different repositories have long but identical branch names: 

 
MyProjectA1_MyBranch@libs
MyProjectA1_MyBranch@script
MyVeryLongBranchName@libs<<-\
MyVeryLongBranchName@script |   <<-\
MyVeryLongBranchName@libs<<-/  |
MyVeryLongBranchName@script <<-/