<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>issues@continuum.apache.org Archives</title>
<link rel="self" href="http://mail-archives.apache.org/mod_mbox/continuum-issues/?format=atom"/>
<link href="http://mail-archives.apache.org/mod_mbox/continuum-issues/"/>
<id>http://mail-archives.apache.org/mod_mbox/continuum-issues/</id>
<updated>2013-05-19T06:30:23Z</updated>
<entry>
<title>[jira] (CONTINUUM-2707) Real-time dashboard like Jenkins</title>
<author><name>&quot;Chris Harris (JIRA)&quot; &lt;jira@codehaus.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/continuum-issues/201304.mbox/%3cJIRA.145361.1365204869212.17670.1365204952942@codehaus01.managed.contegix.com%3e"/>
<id>urn:uuid:%3cJIRA-145361-1365204869212-17670-1365204952942@codehaus01-managed-contegix-com%3e</id>
<updated>2013-04-05T23:35:52Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Chris Harris created CONTINUUM-2707:&#010;---------------------------------------&#010;&#010;             Summary: Real-time dashboard like Jenkins&#010;                 Key: CONTINUUM-2707&#010;                 URL: https://jira.codehaus.org/browse/CONTINUUM-2707&#010;             Project: Continuum&#010;          Issue Type: Wish&#010;          Components: Web interface&#010;    Affects Versions: 1.4.1&#010;            Reporter: Chris Harris&#010;            Priority: Minor&#010;&#010;&#010;Can you add a Dashboard to Continuum that would display icons for a build's state (red for&#010;fail, green/blue for pass, yellow for warning),blinking icons (indicating that a build is&#010;in progress), and a progress bar much like the Jenkins interface?&#010;&#010;--&#010;This message is automatically generated by JIRA.&#010;If you think it was sent incorrectly, please contact your JIRA administrators&#010;For more information on JIRA, see: http://www.atlassian.com/software/jira&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] (CONTINUUM-2706) Should we stop from queueing projects if another bulid is being executed?</title>
<author><name>&quot;Murali Mohan (JIRA)&quot; &lt;jira@codehaus.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/continuum-issues/201303.mbox/%3cJIRA.145021.1363790407100.6565.1363790512810@codehaus01.managed.contegix.com%3e"/>
<id>urn:uuid:%3cJIRA-145021-1363790407100-6565-1363790512810@codehaus01-managed-contegix-com%3e</id>
<updated>2013-03-20T14:41:52Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Murali Mohan created CONTINUUM-2706:&#010;---------------------------------------&#010;&#010;             Summary: Should we stop from queueing projects if another bulid is being executed?&#010;                 Key: CONTINUUM-2706&#010;                 URL: https://jira.codehaus.org/browse/CONTINUUM-2706&#010;             Project: Continuum&#010;          Issue Type: Wish&#010;    Affects Versions: 1.4.1&#010;         Environment: Ubuntu, tomcat&#010;            Reporter: Murali Mohan&#010;            Priority: Minor&#010;&#010;&#010;Problem and the argument&#010;========================&#010;&#010;It is difficult to balance the schedules when there are multiple projects running in Continuum.&#010;&#010;&#010;One reason is that we cannot queue up builds from the same project is one is already being&#010;executed. This is not needed in my opinion. The reason for having a queue is to avoid these&#010;things. Let the build be queues and let it execut after the current one is done. What is wrong&#010;with it?&#010;&#010;Because of this restriction, we have to sometimes plan the schedule so that it executes only&#010;after the any other projects having completed execution. This is a pain as we cannot predict&#010;when a build will complete simply because we cannot know when it will start to execute as&#010;there is a queue and there can be many builds in front.&#010;&#010;Java code:&#010;==========&#010;CreateBuildProjectTaskAction.java:&#010;&#010;This is the snippet where this occurs:&#010;&#010;if ( executor.isBuilding( project ) || project.getState() == ContinuumProjectState.UPDATING&#010;)&#010;{&#010;    // project is building&#010;    getLogger().info( "Project '" + project.getName() + "' already being built." );&#010;&#010;    continue;&#010;}&#010;&#010;Question&#010;=========&#010;&#010;Can we change it to this (we will continue with build process even if another one is being&#010;executed):&#010;&#010;if ( project.getState() == ContinuumProjectState.UPDATING )&#010;{&#010;    // project is building&#010;    getLogger().info( "Project '" + project.getName() + "' already being built." );&#010;&#010;    continue;&#010;}&#010;&#010;--&#010;This message is automatically generated by JIRA.&#010;If you think it was sent incorrectly, please contact your JIRA administrators&#010;For more information on JIRA, see: http://www.atlassian.com/software/jira&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] (CONTINUUM-2705) Trunk 1.4.2-SNAPSHOT- error in Shell Build</title>
<author><name>&quot;Murali Mohan (JIRA)&quot; &lt;jira@codehaus.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/continuum-issues/201303.mbox/%3cJIRA.144753.1362755155669.6543.1363783013844@codehaus01.managed.contegix.com%3e"/>
<id>urn:uuid:%3cJIRA-144753-1362755155669-6543-1363783013844@codehaus01-managed-contegix-com%3e</id>
<updated>2013-03-20T12:36:53Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
&#010;    [ https://jira.codehaus.org/browse/CONTINUUM-2705?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=322225#comment-322225&#010;] &#010;&#010;Murali Mohan commented on CONTINUUM-2705:&#010;-----------------------------------------&#010;&#010;ah yes, Brett, I had seen the change in r1140475, but I thought was a change done long back&#010;and shouldn't have been highlighted now :). Anyways, patch submitted. No unit test that can&#010;be done for this, but I have tested using the UI. The shell build runs fine, no more NPEs.&#010;                &#010;&gt; Trunk 1.4.2-SNAPSHOT- error in Shell Build&#010;&gt; ------------------------------------------&#010;&gt;&#010;&gt;                 Key: CONTINUUM-2705&#010;&gt;                 URL: https://jira.codehaus.org/browse/CONTINUUM-2705&#010;&gt;             Project: Continuum&#010;&gt;          Issue Type: Bug&#010;&gt;    Affects Versions: 1.4.1&#010;&gt;         Environment: linux, tomcat&#010;&gt;            Reporter: Murali Mohan&#010;&gt;             Fix For: 1.4.2&#010;&gt;&#010;&gt;         Attachments: CONTINUUM-2705.patch, Screenshot-8.png&#010;&gt;&#010;&gt;&#010;&gt; I am trying to understand the code and may be provide some fixes/patches (example: http://jira.codehaus.org/browse/CONTINUUM-2704).&#010;Checked out latest code from trunk (1.4.2-SNAPSHOT). Trying to execute a shell build when&#010;it fails. StackTrace given below. This is a new build created after running the continuum-webapp&#010;(built from trunk code) for the first time. This is not a migrated build (meaning it was a&#010;new build defined in the fresh instance).&#010;&gt; Screenshot of continuum UI showing the failing build (Test.sh) is also attached.&#010;&gt; Can someone please help? What is the reason for this error?&#010;&gt; StackTrace&#010;&gt; =========&#010;&gt; 2013-03-05 15:42:17,691 [pool-3-thread-2] ERROR org.apache.continuum.buildmanager.ParallelBuildsManager&#010; - Null values set on build definition (id=6)&#010;&gt; 2013-03-05 15:42:17,691 [pool-3-thread-2] ERROR org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor&#010; - Unable to build project due to null values set on ( GOALS , ARGUMENTS , BUILD_FILE, SCHEDULE_ID_OID&#010;) of BUILDDEFINITION ID : 6 Please notify your system adminitrator&#010;&gt; org.apache.continuum.buildmanager.BuildManagerException: Unable to build project due&#010;to null values set on ( GOALS , ARGUMENTS , BUILD_FILE, SCHEDULE_ID_OID ) of BUILDDEFINITION&#010;ID : 6 Please notify your system adminitrator&#010;&gt;     at org.apache.continuum.buildmanager.ParallelBuildsManager.buildProjects(ParallelBuildsManager.java:193)&#010;&gt;     at org.apache.maven.continuum.core.action.CreateBuildProjectTaskAction.execute(CreateBuildProjectTaskAction.java:123)&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.buildProjects(PrepareBuildProjectsTaskExecutor.java:647)&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.executeTask(PrepareBuildProjectsTaskExecutor.java:215)&#010;&gt;     at org.apache.continuum.taskqueueexecutor.ParallelBuildsThreadedTaskQueueExecutor$ExecutorRunnable$1.run(ParallelBuildsThreadedTaskQueueExecutor.java:120)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:442)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.FutureTask.run(FutureTask.java:176)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:987)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:528)&#010;&gt;     at java.lang.Thread.run(Thread.java:662)&#010;&gt; 2013-03-05 15:42:17,692 [pool-3-thread-2] ERROR org.apache.continuum.taskqueueexecutor.ParallelBuildsThreadedTaskQueueExecutor&#010; - Error executing task&#010;&gt; org.codehaus.plexus.taskqueue.execution.TaskExecutionException: Error executing action&#010;'build-project'&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.buildProjects(PrepareBuildProjectsTaskExecutor.java:657)&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.executeTask(PrepareBuildProjectsTaskExecutor.java:215)&#010;&gt;     at org.apache.continuum.taskqueueexecutor.ParallelBuildsThreadedTaskQueueExecutor$ExecutorRunnable$1.run(ParallelBuildsThreadedTaskQueueExecutor.java:120)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:442)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.FutureTask.run(FutureTask.java:176)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:987)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:528)&#010;&gt;     at java.lang.Thread.run(Thread.java:662)&#010;&gt; Caused by: org.apache.continuum.buildmanager.BuildManagerException: Unable to build project&#010;due to null values set on ( GOALS , ARGUMENTS , BUILD_FILE, SCHEDULE_ID_OID ) of BUILDDEFINITION&#010;ID : 6 Please notify your system adminitrator&#010;&gt;     at org.apache.continuum.buildmanager.ParallelBuildsManager.buildProjects(ParallelBuildsManager.java:193)&#010;&gt;     at org.apache.maven.continuum.core.action.CreateBuildProjectTaskAction.execute(CreateBuildProjectTaskAction.java:123)&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.buildProjects(PrepareBuildProjectsTaskExecutor.java:647)&#010;&gt;     ... 7 more&#010;&#010;--&#010;This message is automatically generated by JIRA.&#010;If you think it was sent incorrectly, please contact your JIRA administrators&#010;For more information on JIRA, see: http://www.atlassian.com/software/jira&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] (CONTINUUM-2705) Trunk 1.4.2-SNAPSHOT- error in Shell Build</title>
<author><name>&quot;Murali Mohan (JIRA)&quot; &lt;jira@codehaus.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/continuum-issues/201303.mbox/%3cJIRA.144753.1362755155669.6541.1363782892841@codehaus01.managed.contegix.com%3e"/>
<id>urn:uuid:%3cJIRA-144753-1362755155669-6541-1363782892841@codehaus01-managed-contegix-com%3e</id>
<updated>2013-03-20T12:34:52Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
&#010;     [ https://jira.codehaus.org/browse/CONTINUUM-2705?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel&#010;]&#010;&#010;Murali Mohan updated CONTINUUM-2705:&#010;------------------------------------&#010;&#010;    Attachment: CONTINUUM-2705.patch&#010;&#010;Patch for this case. This null check will only be done for Maven 1 and Maven 2 builds. Used&#010;the ContinuumBuildExecutorConstants to match the build type stored in BuildDefinition.getType().&#010;&#010;Would have been easier if BuildDefinition.getType was an Enum instead of a String.&#010;                &#010;&gt; Trunk 1.4.2-SNAPSHOT- error in Shell Build&#010;&gt; ------------------------------------------&#010;&gt;&#010;&gt;                 Key: CONTINUUM-2705&#010;&gt;                 URL: https://jira.codehaus.org/browse/CONTINUUM-2705&#010;&gt;             Project: Continuum&#010;&gt;          Issue Type: Bug&#010;&gt;    Affects Versions: 1.4.1&#010;&gt;         Environment: linux, tomcat&#010;&gt;            Reporter: Murali Mohan&#010;&gt;             Fix For: 1.4.2&#010;&gt;&#010;&gt;         Attachments: CONTINUUM-2705.patch, Screenshot-8.png&#010;&gt;&#010;&gt;&#010;&gt; I am trying to understand the code and may be provide some fixes/patches (example: http://jira.codehaus.org/browse/CONTINUUM-2704).&#010;Checked out latest code from trunk (1.4.2-SNAPSHOT). Trying to execute a shell build when&#010;it fails. StackTrace given below. This is a new build created after running the continuum-webapp&#010;(built from trunk code) for the first time. This is not a migrated build (meaning it was a&#010;new build defined in the fresh instance).&#010;&gt; Screenshot of continuum UI showing the failing build (Test.sh) is also attached.&#010;&gt; Can someone please help? What is the reason for this error?&#010;&gt; StackTrace&#010;&gt; =========&#010;&gt; 2013-03-05 15:42:17,691 [pool-3-thread-2] ERROR org.apache.continuum.buildmanager.ParallelBuildsManager&#010; - Null values set on build definition (id=6)&#010;&gt; 2013-03-05 15:42:17,691 [pool-3-thread-2] ERROR org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor&#010; - Unable to build project due to null values set on ( GOALS , ARGUMENTS , BUILD_FILE, SCHEDULE_ID_OID&#010;) of BUILDDEFINITION ID : 6 Please notify your system adminitrator&#010;&gt; org.apache.continuum.buildmanager.BuildManagerException: Unable to build project due&#010;to null values set on ( GOALS , ARGUMENTS , BUILD_FILE, SCHEDULE_ID_OID ) of BUILDDEFINITION&#010;ID : 6 Please notify your system adminitrator&#010;&gt;     at org.apache.continuum.buildmanager.ParallelBuildsManager.buildProjects(ParallelBuildsManager.java:193)&#010;&gt;     at org.apache.maven.continuum.core.action.CreateBuildProjectTaskAction.execute(CreateBuildProjectTaskAction.java:123)&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.buildProjects(PrepareBuildProjectsTaskExecutor.java:647)&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.executeTask(PrepareBuildProjectsTaskExecutor.java:215)&#010;&gt;     at org.apache.continuum.taskqueueexecutor.ParallelBuildsThreadedTaskQueueExecutor$ExecutorRunnable$1.run(ParallelBuildsThreadedTaskQueueExecutor.java:120)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:442)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.FutureTask.run(FutureTask.java:176)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:987)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:528)&#010;&gt;     at java.lang.Thread.run(Thread.java:662)&#010;&gt; 2013-03-05 15:42:17,692 [pool-3-thread-2] ERROR org.apache.continuum.taskqueueexecutor.ParallelBuildsThreadedTaskQueueExecutor&#010; - Error executing task&#010;&gt; org.codehaus.plexus.taskqueue.execution.TaskExecutionException: Error executing action&#010;'build-project'&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.buildProjects(PrepareBuildProjectsTaskExecutor.java:657)&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.executeTask(PrepareBuildProjectsTaskExecutor.java:215)&#010;&gt;     at org.apache.continuum.taskqueueexecutor.ParallelBuildsThreadedTaskQueueExecutor$ExecutorRunnable$1.run(ParallelBuildsThreadedTaskQueueExecutor.java:120)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:442)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.FutureTask.run(FutureTask.java:176)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:987)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:528)&#010;&gt;     at java.lang.Thread.run(Thread.java:662)&#010;&gt; Caused by: org.apache.continuum.buildmanager.BuildManagerException: Unable to build project&#010;due to null values set on ( GOALS , ARGUMENTS , BUILD_FILE, SCHEDULE_ID_OID ) of BUILDDEFINITION&#010;ID : 6 Please notify your system adminitrator&#010;&gt;     at org.apache.continuum.buildmanager.ParallelBuildsManager.buildProjects(ParallelBuildsManager.java:193)&#010;&gt;     at org.apache.maven.continuum.core.action.CreateBuildProjectTaskAction.execute(CreateBuildProjectTaskAction.java:123)&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.buildProjects(PrepareBuildProjectsTaskExecutor.java:647)&#010;&gt;     ... 7 more&#010;&#010;--&#010;This message is automatically generated by JIRA.&#010;If you think it was sent incorrectly, please contact your JIRA administrators&#010;For more information on JIRA, see: http://www.atlassian.com/software/jira&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] (CONTINUUM-2705) Trunk 1.4.2-SNAPSHOT- error in Shell Build</title>
<author><name>&quot;Brett Porter (JIRA)&quot; &lt;jira@codehaus.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/continuum-issues/201303.mbox/%3cJIRA.144753.1362755155669.6265.1363708792831@codehaus01.managed.contegix.com%3e"/>
<id>urn:uuid:%3cJIRA-144753-1362755155669-6265-1363708792831@codehaus01-managed-contegix-com%3e</id>
<updated>2013-03-19T15:59:52Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
&#010;    [ https://jira.codehaus.org/browse/CONTINUUM-2705?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=322163#comment-322163&#010;] &#010;&#010;Brett Porter commented on CONTINUUM-2705:&#010;-----------------------------------------&#010;&#010;The null check was introduced in r1140475 as part of CONTINUUM-2346. It seems it is just being&#010;too aggressive. Perhaps it could be changed to only check for null on goals if it is a Maven&#010;project. I dont see any reason why arguments needs to be non-null.&#010;                &#010;&gt; Trunk 1.4.2-SNAPSHOT- error in Shell Build&#010;&gt; ------------------------------------------&#010;&gt;&#010;&gt;                 Key: CONTINUUM-2705&#010;&gt;                 URL: https://jira.codehaus.org/browse/CONTINUUM-2705&#010;&gt;             Project: Continuum&#010;&gt;          Issue Type: Bug&#010;&gt;    Affects Versions: 1.4.1&#010;&gt;         Environment: linux, tomcat&#010;&gt;            Reporter: Murali Mohan&#010;&gt;             Fix For: 1.4.2&#010;&gt;&#010;&gt;         Attachments: Screenshot-8.png&#010;&gt;&#010;&gt;&#010;&gt; I am trying to understand the code and may be provide some fixes/patches (example: http://jira.codehaus.org/browse/CONTINUUM-2704).&#010;Checked out latest code from trunk (1.4.2-SNAPSHOT). Trying to execute a shell build when&#010;it fails. StackTrace given below. This is a new build created after running the continuum-webapp&#010;(built from trunk code) for the first time. This is not a migrated build (meaning it was a&#010;new build defined in the fresh instance).&#010;&gt; Screenshot of continuum UI showing the failing build (Test.sh) is also attached.&#010;&gt; Can someone please help? What is the reason for this error?&#010;&gt; StackTrace&#010;&gt; =========&#010;&gt; 2013-03-05 15:42:17,691 [pool-3-thread-2] ERROR org.apache.continuum.buildmanager.ParallelBuildsManager&#010; - Null values set on build definition (id=6)&#010;&gt; 2013-03-05 15:42:17,691 [pool-3-thread-2] ERROR org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor&#010; - Unable to build project due to null values set on ( GOALS , ARGUMENTS , BUILD_FILE, SCHEDULE_ID_OID&#010;) of BUILDDEFINITION ID : 6 Please notify your system adminitrator&#010;&gt; org.apache.continuum.buildmanager.BuildManagerException: Unable to build project due&#010;to null values set on ( GOALS , ARGUMENTS , BUILD_FILE, SCHEDULE_ID_OID ) of BUILDDEFINITION&#010;ID : 6 Please notify your system adminitrator&#010;&gt;     at org.apache.continuum.buildmanager.ParallelBuildsManager.buildProjects(ParallelBuildsManager.java:193)&#010;&gt;     at org.apache.maven.continuum.core.action.CreateBuildProjectTaskAction.execute(CreateBuildProjectTaskAction.java:123)&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.buildProjects(PrepareBuildProjectsTaskExecutor.java:647)&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.executeTask(PrepareBuildProjectsTaskExecutor.java:215)&#010;&gt;     at org.apache.continuum.taskqueueexecutor.ParallelBuildsThreadedTaskQueueExecutor$ExecutorRunnable$1.run(ParallelBuildsThreadedTaskQueueExecutor.java:120)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:442)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.FutureTask.run(FutureTask.java:176)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:987)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:528)&#010;&gt;     at java.lang.Thread.run(Thread.java:662)&#010;&gt; 2013-03-05 15:42:17,692 [pool-3-thread-2] ERROR org.apache.continuum.taskqueueexecutor.ParallelBuildsThreadedTaskQueueExecutor&#010; - Error executing task&#010;&gt; org.codehaus.plexus.taskqueue.execution.TaskExecutionException: Error executing action&#010;'build-project'&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.buildProjects(PrepareBuildProjectsTaskExecutor.java:657)&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.executeTask(PrepareBuildProjectsTaskExecutor.java:215)&#010;&gt;     at org.apache.continuum.taskqueueexecutor.ParallelBuildsThreadedTaskQueueExecutor$ExecutorRunnable$1.run(ParallelBuildsThreadedTaskQueueExecutor.java:120)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:442)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.FutureTask.run(FutureTask.java:176)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:987)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:528)&#010;&gt;     at java.lang.Thread.run(Thread.java:662)&#010;&gt; Caused by: org.apache.continuum.buildmanager.BuildManagerException: Unable to build project&#010;due to null values set on ( GOALS , ARGUMENTS , BUILD_FILE, SCHEDULE_ID_OID ) of BUILDDEFINITION&#010;ID : 6 Please notify your system adminitrator&#010;&gt;     at org.apache.continuum.buildmanager.ParallelBuildsManager.buildProjects(ParallelBuildsManager.java:193)&#010;&gt;     at org.apache.maven.continuum.core.action.CreateBuildProjectTaskAction.execute(CreateBuildProjectTaskAction.java:123)&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.buildProjects(PrepareBuildProjectsTaskExecutor.java:647)&#010;&gt;     ... 7 more&#010;&#010;--&#010;This message is automatically generated by JIRA.&#010;If you think it was sent incorrectly, please contact your JIRA administrators&#010;For more information on JIRA, see: http://www.atlassian.com/software/jira&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] (CONTINUUM-2705) Trunk 1.4.2-SNAPSHOT- error in Shell Build</title>
<author><name>&quot;Murali Mohan (JIRA)&quot; &lt;jira@codehaus.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/continuum-issues/201303.mbox/%3cJIRA.144753.1362755155669.6254.1363708072940@codehaus01.managed.contegix.com%3e"/>
<id>urn:uuid:%3cJIRA-144753-1362755155669-6254-1363708072940@codehaus01-managed-contegix-com%3e</id>
<updated>2013-03-19T15:47:52Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
&#010;    [ https://jira.codehaus.org/browse/CONTINUUM-2705?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=322160#comment-322160&#010;] &#010;&#010;Murali Mohan commented on CONTINUUM-2705:&#010;-----------------------------------------&#010;&#010;I did take a look. But I have not found anything obvious or anything that stands out so far.&#010;I checked the SVN history to see if there was any changes in ParallelBuildsManager.java that&#010;can impact.&#010;&#010;But it looks like this section of code has existed for a long time. So why did it started&#010;failing now, I am not able to figure out. Give me some pointers to proceed and I will try.&#010;I have some time this week. Thanks&#010;                &#010;&gt; Trunk 1.4.2-SNAPSHOT- error in Shell Build&#010;&gt; ------------------------------------------&#010;&gt;&#010;&gt;                 Key: CONTINUUM-2705&#010;&gt;                 URL: https://jira.codehaus.org/browse/CONTINUUM-2705&#010;&gt;             Project: Continuum&#010;&gt;          Issue Type: Bug&#010;&gt;    Affects Versions: 1.4.1&#010;&gt;         Environment: linux, tomcat&#010;&gt;            Reporter: Murali Mohan&#010;&gt;             Fix For: 1.4.2&#010;&gt;&#010;&gt;         Attachments: Screenshot-8.png&#010;&gt;&#010;&gt;&#010;&gt; I am trying to understand the code and may be provide some fixes/patches (example: http://jira.codehaus.org/browse/CONTINUUM-2704).&#010;Checked out latest code from trunk (1.4.2-SNAPSHOT). Trying to execute a shell build when&#010;it fails. StackTrace given below. This is a new build created after running the continuum-webapp&#010;(built from trunk code) for the first time. This is not a migrated build (meaning it was a&#010;new build defined in the fresh instance).&#010;&gt; Screenshot of continuum UI showing the failing build (Test.sh) is also attached.&#010;&gt; Can someone please help? What is the reason for this error?&#010;&gt; StackTrace&#010;&gt; =========&#010;&gt; 2013-03-05 15:42:17,691 [pool-3-thread-2] ERROR org.apache.continuum.buildmanager.ParallelBuildsManager&#010; - Null values set on build definition (id=6)&#010;&gt; 2013-03-05 15:42:17,691 [pool-3-thread-2] ERROR org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor&#010; - Unable to build project due to null values set on ( GOALS , ARGUMENTS , BUILD_FILE, SCHEDULE_ID_OID&#010;) of BUILDDEFINITION ID : 6 Please notify your system adminitrator&#010;&gt; org.apache.continuum.buildmanager.BuildManagerException: Unable to build project due&#010;to null values set on ( GOALS , ARGUMENTS , BUILD_FILE, SCHEDULE_ID_OID ) of BUILDDEFINITION&#010;ID : 6 Please notify your system adminitrator&#010;&gt;     at org.apache.continuum.buildmanager.ParallelBuildsManager.buildProjects(ParallelBuildsManager.java:193)&#010;&gt;     at org.apache.maven.continuum.core.action.CreateBuildProjectTaskAction.execute(CreateBuildProjectTaskAction.java:123)&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.buildProjects(PrepareBuildProjectsTaskExecutor.java:647)&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.executeTask(PrepareBuildProjectsTaskExecutor.java:215)&#010;&gt;     at org.apache.continuum.taskqueueexecutor.ParallelBuildsThreadedTaskQueueExecutor$ExecutorRunnable$1.run(ParallelBuildsThreadedTaskQueueExecutor.java:120)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:442)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.FutureTask.run(FutureTask.java:176)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:987)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:528)&#010;&gt;     at java.lang.Thread.run(Thread.java:662)&#010;&gt; 2013-03-05 15:42:17,692 [pool-3-thread-2] ERROR org.apache.continuum.taskqueueexecutor.ParallelBuildsThreadedTaskQueueExecutor&#010; - Error executing task&#010;&gt; org.codehaus.plexus.taskqueue.execution.TaskExecutionException: Error executing action&#010;'build-project'&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.buildProjects(PrepareBuildProjectsTaskExecutor.java:657)&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.executeTask(PrepareBuildProjectsTaskExecutor.java:215)&#010;&gt;     at org.apache.continuum.taskqueueexecutor.ParallelBuildsThreadedTaskQueueExecutor$ExecutorRunnable$1.run(ParallelBuildsThreadedTaskQueueExecutor.java:120)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:442)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.FutureTask.run(FutureTask.java:176)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:987)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:528)&#010;&gt;     at java.lang.Thread.run(Thread.java:662)&#010;&gt; Caused by: org.apache.continuum.buildmanager.BuildManagerException: Unable to build project&#010;due to null values set on ( GOALS , ARGUMENTS , BUILD_FILE, SCHEDULE_ID_OID ) of BUILDDEFINITION&#010;ID : 6 Please notify your system adminitrator&#010;&gt;     at org.apache.continuum.buildmanager.ParallelBuildsManager.buildProjects(ParallelBuildsManager.java:193)&#010;&gt;     at org.apache.maven.continuum.core.action.CreateBuildProjectTaskAction.execute(CreateBuildProjectTaskAction.java:123)&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.buildProjects(PrepareBuildProjectsTaskExecutor.java:647)&#010;&gt;     ... 7 more&#010;&#010;--&#010;This message is automatically generated by JIRA.&#010;If you think it was sent incorrectly, please contact your JIRA administrators&#010;For more information on JIRA, see: http://www.atlassian.com/software/jira&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] (CONTINUUM-2705) Trunk 1.4.2-SNAPSHOT- error in Shell Build</title>
<author><name>&quot;Brett Porter (JIRA)&quot; &lt;jira@codehaus.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/continuum-issues/201303.mbox/%3cJIRA.144753.1362755155669.6245.1363707832830@codehaus01.managed.contegix.com%3e"/>
<id>urn:uuid:%3cJIRA-144753-1362755155669-6245-1363707832830@codehaus01-managed-contegix-com%3e</id>
<updated>2013-03-19T15:43:52Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
&#010;    [ https://jira.codehaus.org/browse/CONTINUUM-2705?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=322159#comment-322159&#010;] &#010;&#010;Brett Porter commented on CONTINUUM-2705:&#010;-----------------------------------------&#010;&#010;Sorry to hear that. Do you have any time to look at what changed in that section of the code&#010;that might have affected you?&#010;                &#010;&gt; Trunk 1.4.2-SNAPSHOT- error in Shell Build&#010;&gt; ------------------------------------------&#010;&gt;&#010;&gt;                 Key: CONTINUUM-2705&#010;&gt;                 URL: https://jira.codehaus.org/browse/CONTINUUM-2705&#010;&gt;             Project: Continuum&#010;&gt;          Issue Type: Bug&#010;&gt;    Affects Versions: 1.4.1&#010;&gt;         Environment: linux, tomcat&#010;&gt;            Reporter: Murali Mohan&#010;&gt;             Fix For: 1.4.2&#010;&gt;&#010;&gt;         Attachments: Screenshot-8.png&#010;&gt;&#010;&gt;&#010;&gt; I am trying to understand the code and may be provide some fixes/patches (example: http://jira.codehaus.org/browse/CONTINUUM-2704).&#010;Checked out latest code from trunk (1.4.2-SNAPSHOT). Trying to execute a shell build when&#010;it fails. StackTrace given below. This is a new build created after running the continuum-webapp&#010;(built from trunk code) for the first time. This is not a migrated build (meaning it was a&#010;new build defined in the fresh instance).&#010;&gt; Screenshot of continuum UI showing the failing build (Test.sh) is also attached.&#010;&gt; Can someone please help? What is the reason for this error?&#010;&gt; StackTrace&#010;&gt; =========&#010;&gt; 2013-03-05 15:42:17,691 [pool-3-thread-2] ERROR org.apache.continuum.buildmanager.ParallelBuildsManager&#010; - Null values set on build definition (id=6)&#010;&gt; 2013-03-05 15:42:17,691 [pool-3-thread-2] ERROR org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor&#010; - Unable to build project due to null values set on ( GOALS , ARGUMENTS , BUILD_FILE, SCHEDULE_ID_OID&#010;) of BUILDDEFINITION ID : 6 Please notify your system adminitrator&#010;&gt; org.apache.continuum.buildmanager.BuildManagerException: Unable to build project due&#010;to null values set on ( GOALS , ARGUMENTS , BUILD_FILE, SCHEDULE_ID_OID ) of BUILDDEFINITION&#010;ID : 6 Please notify your system adminitrator&#010;&gt;     at org.apache.continuum.buildmanager.ParallelBuildsManager.buildProjects(ParallelBuildsManager.java:193)&#010;&gt;     at org.apache.maven.continuum.core.action.CreateBuildProjectTaskAction.execute(CreateBuildProjectTaskAction.java:123)&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.buildProjects(PrepareBuildProjectsTaskExecutor.java:647)&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.executeTask(PrepareBuildProjectsTaskExecutor.java:215)&#010;&gt;     at org.apache.continuum.taskqueueexecutor.ParallelBuildsThreadedTaskQueueExecutor$ExecutorRunnable$1.run(ParallelBuildsThreadedTaskQueueExecutor.java:120)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:442)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.FutureTask.run(FutureTask.java:176)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:987)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:528)&#010;&gt;     at java.lang.Thread.run(Thread.java:662)&#010;&gt; 2013-03-05 15:42:17,692 [pool-3-thread-2] ERROR org.apache.continuum.taskqueueexecutor.ParallelBuildsThreadedTaskQueueExecutor&#010; - Error executing task&#010;&gt; org.codehaus.plexus.taskqueue.execution.TaskExecutionException: Error executing action&#010;'build-project'&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.buildProjects(PrepareBuildProjectsTaskExecutor.java:657)&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.executeTask(PrepareBuildProjectsTaskExecutor.java:215)&#010;&gt;     at org.apache.continuum.taskqueueexecutor.ParallelBuildsThreadedTaskQueueExecutor$ExecutorRunnable$1.run(ParallelBuildsThreadedTaskQueueExecutor.java:120)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:442)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.FutureTask.run(FutureTask.java:176)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:987)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:528)&#010;&gt;     at java.lang.Thread.run(Thread.java:662)&#010;&gt; Caused by: org.apache.continuum.buildmanager.BuildManagerException: Unable to build project&#010;due to null values set on ( GOALS , ARGUMENTS , BUILD_FILE, SCHEDULE_ID_OID ) of BUILDDEFINITION&#010;ID : 6 Please notify your system adminitrator&#010;&gt;     at org.apache.continuum.buildmanager.ParallelBuildsManager.buildProjects(ParallelBuildsManager.java:193)&#010;&gt;     at org.apache.maven.continuum.core.action.CreateBuildProjectTaskAction.execute(CreateBuildProjectTaskAction.java:123)&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.buildProjects(PrepareBuildProjectsTaskExecutor.java:647)&#010;&gt;     ... 7 more&#010;&#010;--&#010;This message is automatically generated by JIRA.&#010;If you think it was sent incorrectly, please contact your JIRA administrators&#010;For more information on JIRA, see: http://www.atlassian.com/software/jira&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] (CONTINUUM-2704) Shell builds are not executing concurrently</title>
<author><name>&quot;Brett Porter (JIRA)&quot; &lt;jira@codehaus.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/continuum-issues/201303.mbox/%3cJIRA.144596.1362149335840.6239.1363707472869@codehaus01.managed.contegix.com%3e"/>
<id>urn:uuid:%3cJIRA-144596-1362149335840-6239-1363707472869@codehaus01-managed-contegix-com%3e</id>
<updated>2013-03-19T15:37:52Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
&#010;    [ https://jira.codehaus.org/browse/CONTINUUM-2704?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=322157#comment-322157&#010;] &#010;&#010;Brett Porter commented on CONTINUUM-2704:&#010;-----------------------------------------&#010;&#010;Thanks Murali, we should make sure this is applied to 1.4.2.&#010;                &#010;&gt; Shell builds are not executing concurrently&#010;&gt; -------------------------------------------&#010;&gt;&#010;&gt;                 Key: CONTINUUM-2704&#010;&gt;                 URL: https://jira.codehaus.org/browse/CONTINUUM-2704&#010;&gt;             Project: Continuum&#010;&gt;          Issue Type: Bug&#010;&gt;          Components: Parallel Builds&#010;&gt;    Affects Versions: 1.3.8&#010;&gt;         Environment: Ubuntu, Tomcat&#010;&gt;            Reporter: Murali Mohan&#010;&gt;             Fix For: 1.4.2&#010;&gt;&#010;&gt;&#010;&gt; Continuum version 1.3.6. Deployed on Tomcat in Ubuntu.&#010;&gt; I have 2 projects, say A and B. Each has shell builds defined and set to run in different&#010;queues. Number of parallel builds is set to 4.&#010;&gt; The problem is that, when the shell build from A runs, it will not execute the build&#010;until the shell build from B is complete. it is almost  like A is waiting for B to finish.&#010;Please note that maven builds are happily running in parallel in these 2 queues. It is only&#010;the shell build that has a problem.&#010;&gt; To be sure that this is not an OS level problem, I started the build in B from Continuum&#010;and ran the shell script for A from command line and it worked fine - both ran in parallel.&#010;So, I think Continuum has a bottle neck somewhere. please help.&#010;&#010;--&#010;This message is automatically generated by JIRA.&#010;If you think it was sent incorrectly, please contact your JIRA administrators&#010;For more information on JIRA, see: http://www.atlassian.com/software/jira&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] (CONTINUUM-2705) Trunk 1.4.2-SNAPSHOT- error in Shell Build</title>
<author><name>&quot;Murali Mohan (JIRA)&quot; &lt;jira@codehaus.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/continuum-issues/201303.mbox/%3cJIRA.144753.1362755155669.6240.1363707472874@codehaus01.managed.contegix.com%3e"/>
<id>urn:uuid:%3cJIRA-144753-1362755155669-6240-1363707472874@codehaus01-managed-contegix-com%3e</id>
<updated>2013-03-19T15:37:52Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
&#010;    [ https://jira.codehaus.org/browse/CONTINUUM-2705?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=322158#comment-322158&#010;] &#010;&#010;Murali Mohan commented on CONTINUUM-2705:&#010;-----------------------------------------&#010;&#010;It woks well in 1.3.6&#010;&#010;Fails for the trunk version of code.&#010;                &#010;&gt; Trunk 1.4.2-SNAPSHOT- error in Shell Build&#010;&gt; ------------------------------------------&#010;&gt;&#010;&gt;                 Key: CONTINUUM-2705&#010;&gt;                 URL: https://jira.codehaus.org/browse/CONTINUUM-2705&#010;&gt;             Project: Continuum&#010;&gt;          Issue Type: Bug&#010;&gt;    Affects Versions: 1.4.1&#010;&gt;         Environment: linux, tomcat&#010;&gt;            Reporter: Murali Mohan&#010;&gt;             Fix For: 1.4.2&#010;&gt;&#010;&gt;         Attachments: Screenshot-8.png&#010;&gt;&#010;&gt;&#010;&gt; I am trying to understand the code and may be provide some fixes/patches (example: http://jira.codehaus.org/browse/CONTINUUM-2704).&#010;Checked out latest code from trunk (1.4.2-SNAPSHOT). Trying to execute a shell build when&#010;it fails. StackTrace given below. This is a new build created after running the continuum-webapp&#010;(built from trunk code) for the first time. This is not a migrated build (meaning it was a&#010;new build defined in the fresh instance).&#010;&gt; Screenshot of continuum UI showing the failing build (Test.sh) is also attached.&#010;&gt; Can someone please help? What is the reason for this error?&#010;&gt; StackTrace&#010;&gt; =========&#010;&gt; 2013-03-05 15:42:17,691 [pool-3-thread-2] ERROR org.apache.continuum.buildmanager.ParallelBuildsManager&#010; - Null values set on build definition (id=6)&#010;&gt; 2013-03-05 15:42:17,691 [pool-3-thread-2] ERROR org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor&#010; - Unable to build project due to null values set on ( GOALS , ARGUMENTS , BUILD_FILE, SCHEDULE_ID_OID&#010;) of BUILDDEFINITION ID : 6 Please notify your system adminitrator&#010;&gt; org.apache.continuum.buildmanager.BuildManagerException: Unable to build project due&#010;to null values set on ( GOALS , ARGUMENTS , BUILD_FILE, SCHEDULE_ID_OID ) of BUILDDEFINITION&#010;ID : 6 Please notify your system adminitrator&#010;&gt;     at org.apache.continuum.buildmanager.ParallelBuildsManager.buildProjects(ParallelBuildsManager.java:193)&#010;&gt;     at org.apache.maven.continuum.core.action.CreateBuildProjectTaskAction.execute(CreateBuildProjectTaskAction.java:123)&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.buildProjects(PrepareBuildProjectsTaskExecutor.java:647)&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.executeTask(PrepareBuildProjectsTaskExecutor.java:215)&#010;&gt;     at org.apache.continuum.taskqueueexecutor.ParallelBuildsThreadedTaskQueueExecutor$ExecutorRunnable$1.run(ParallelBuildsThreadedTaskQueueExecutor.java:120)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:442)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.FutureTask.run(FutureTask.java:176)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:987)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:528)&#010;&gt;     at java.lang.Thread.run(Thread.java:662)&#010;&gt; 2013-03-05 15:42:17,692 [pool-3-thread-2] ERROR org.apache.continuum.taskqueueexecutor.ParallelBuildsThreadedTaskQueueExecutor&#010; - Error executing task&#010;&gt; org.codehaus.plexus.taskqueue.execution.TaskExecutionException: Error executing action&#010;'build-project'&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.buildProjects(PrepareBuildProjectsTaskExecutor.java:657)&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.executeTask(PrepareBuildProjectsTaskExecutor.java:215)&#010;&gt;     at org.apache.continuum.taskqueueexecutor.ParallelBuildsThreadedTaskQueueExecutor$ExecutorRunnable$1.run(ParallelBuildsThreadedTaskQueueExecutor.java:120)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:442)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.FutureTask.run(FutureTask.java:176)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:987)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:528)&#010;&gt;     at java.lang.Thread.run(Thread.java:662)&#010;&gt; Caused by: org.apache.continuum.buildmanager.BuildManagerException: Unable to build project&#010;due to null values set on ( GOALS , ARGUMENTS , BUILD_FILE, SCHEDULE_ID_OID ) of BUILDDEFINITION&#010;ID : 6 Please notify your system adminitrator&#010;&gt;     at org.apache.continuum.buildmanager.ParallelBuildsManager.buildProjects(ParallelBuildsManager.java:193)&#010;&gt;     at org.apache.maven.continuum.core.action.CreateBuildProjectTaskAction.execute(CreateBuildProjectTaskAction.java:123)&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.buildProjects(PrepareBuildProjectsTaskExecutor.java:647)&#010;&gt;     ... 7 more&#010;&#010;--&#010;This message is automatically generated by JIRA.&#010;If you think it was sent incorrectly, please contact your JIRA administrators&#010;For more information on JIRA, see: http://www.atlassian.com/software/jira&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] (CONTINUUM-2704) Shell builds are not executing concurrently</title>
<author><name>&quot;Brett Porter (JIRA)&quot; &lt;jira@codehaus.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/continuum-issues/201303.mbox/%3cJIRA.144596.1362149335840.6237.1363707472857@codehaus01.managed.contegix.com%3e"/>
<id>urn:uuid:%3cJIRA-144596-1362149335840-6237-1363707472857@codehaus01-managed-contegix-com%3e</id>
<updated>2013-03-19T15:37:52Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
&#010;     [ https://jira.codehaus.org/browse/CONTINUUM-2704?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel&#010;]&#010;&#010;Brett Porter updated CONTINUUM-2704:&#010;------------------------------------&#010;&#010;      Description: &#010;Continuum version 1.3.6. Deployed on Tomcat in Ubuntu.&#010;&#010;I have 2 projects, say A and B. Each has shell builds defined and set to run in different&#010;queues. Number of parallel builds is set to 4.&#010;&#010;The problem is that, when the shell build from A runs, it will not execute the build until&#010;the shell build from B is complete. it is almost  like A is waiting for B to finish. Please&#010;note that maven builds are happily running in parallel in these 2 queues. It is only the shell&#010;build that has a problem.&#010;&#010;To be sure that this is not an OS level problem, I started the build in B from Continuum and&#010;ran the shell script for A from command line and it worked fine - both ran in parallel. So,&#010;I think Continuum has a bottle neck somewhere. please help.&#010;&#010;&#010;&#010;  was:&#010;&#010;Continuum version 1.3.6. Deployed on Tomcat in Ubuntu.&#010;&#010;I have 2 projects, say A and B. Each has shell builds defined and set to run in different&#010;queues. Number of parallel builds is set to 4.&#010;&#010;The problem is that, when the shell build from A runs, it will not execute the build until&#010;the shell build from B is complete. it is almost  like A is waiting for B to finish. Please&#010;note that maven builds are happily running in parallel in these 2 queues. It is only the shell&#010;build that has a problem.&#010;&#010;To be sure that this is not an OS level problem, I started the build in B from Continuum and&#010;ran the shell script for A from command line and it worked fine - both ran in parallel. So,&#010;I think Continuum has a bottle neck somewhere. please help.&#010;&#010;&#010;&#010;    Fix Version/s: 1.4.2&#010;    &#010;&gt; Shell builds are not executing concurrently&#010;&gt; -------------------------------------------&#010;&gt;&#010;&gt;                 Key: CONTINUUM-2704&#010;&gt;                 URL: https://jira.codehaus.org/browse/CONTINUUM-2704&#010;&gt;             Project: Continuum&#010;&gt;          Issue Type: Bug&#010;&gt;          Components: Parallel Builds&#010;&gt;    Affects Versions: 1.3.8&#010;&gt;         Environment: Ubuntu, Tomcat&#010;&gt;            Reporter: Murali Mohan&#010;&gt;             Fix For: 1.4.2&#010;&gt;&#010;&gt;&#010;&gt; Continuum version 1.3.6. Deployed on Tomcat in Ubuntu.&#010;&gt; I have 2 projects, say A and B. Each has shell builds defined and set to run in different&#010;queues. Number of parallel builds is set to 4.&#010;&gt; The problem is that, when the shell build from A runs, it will not execute the build&#010;until the shell build from B is complete. it is almost  like A is waiting for B to finish.&#010;Please note that maven builds are happily running in parallel in these 2 queues. It is only&#010;the shell build that has a problem.&#010;&gt; To be sure that this is not an OS level problem, I started the build in B from Continuum&#010;and ran the shell script for A from command line and it worked fine - both ran in parallel.&#010;So, I think Continuum has a bottle neck somewhere. please help.&#010;&#010;--&#010;This message is automatically generated by JIRA.&#010;If you think it was sent incorrectly, please contact your JIRA administrators&#010;For more information on JIRA, see: http://www.atlassian.com/software/jira&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] (CONTINUUM-2705) Trunk 1.4.2-SNAPSHOT- error in Shell Build</title>
<author><name>&quot;Brett Porter (JIRA)&quot; &lt;jira@codehaus.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/continuum-issues/201303.mbox/%3cJIRA.144753.1362755155669.6234.1363707352914@codehaus01.managed.contegix.com%3e"/>
<id>urn:uuid:%3cJIRA-144753-1362755155669-6234-1363707352914@codehaus01-managed-contegix-com%3e</id>
<updated>2013-03-19T15:35:52Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
&#010;    [ https://jira.codehaus.org/browse/CONTINUUM-2705?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=322156#comment-322156&#010;] &#010;&#010;Brett Porter edited comment on CONTINUUM-2705 at 3/19/13 10:35 AM:&#010;-------------------------------------------------------------------&#010;&#010;so, if I understand right, is this a regression over 1.3.6 for you? I assume it also fails&#010;in 1.4.1.&#010;                &#010;      was (Author: brettporter):&#010;    so, if I understand right, is this a regression over 1.3.6 for you?&#010;                  &#010;&gt; Trunk 1.4.2-SNAPSHOT- error in Shell Build&#010;&gt; ------------------------------------------&#010;&gt;&#010;&gt;                 Key: CONTINUUM-2705&#010;&gt;                 URL: https://jira.codehaus.org/browse/CONTINUUM-2705&#010;&gt;             Project: Continuum&#010;&gt;          Issue Type: Bug&#010;&gt;    Affects Versions: 1.4.1&#010;&gt;         Environment: linux, tomcat&#010;&gt;            Reporter: Murali Mohan&#010;&gt;             Fix For: 1.4.2&#010;&gt;&#010;&gt;         Attachments: Screenshot-8.png&#010;&gt;&#010;&gt;&#010;&gt; I am trying to understand the code and may be provide some fixes/patches (example: http://jira.codehaus.org/browse/CONTINUUM-2704).&#010;Checked out latest code from trunk (1.4.2-SNAPSHOT). Trying to execute a shell build when&#010;it fails. StackTrace given below. This is a new build created after running the continuum-webapp&#010;(built from trunk code) for the first time. This is not a migrated build (meaning it was a&#010;new build defined in the fresh instance).&#010;&gt; Screenshot of continuum UI showing the failing build (Test.sh) is also attached.&#010;&gt; Can someone please help? What is the reason for this error?&#010;&gt; StackTrace&#010;&gt; =========&#010;&gt; 2013-03-05 15:42:17,691 [pool-3-thread-2] ERROR org.apache.continuum.buildmanager.ParallelBuildsManager&#010; - Null values set on build definition (id=6)&#010;&gt; 2013-03-05 15:42:17,691 [pool-3-thread-2] ERROR org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor&#010; - Unable to build project due to null values set on ( GOALS , ARGUMENTS , BUILD_FILE, SCHEDULE_ID_OID&#010;) of BUILDDEFINITION ID : 6 Please notify your system adminitrator&#010;&gt; org.apache.continuum.buildmanager.BuildManagerException: Unable to build project due&#010;to null values set on ( GOALS , ARGUMENTS , BUILD_FILE, SCHEDULE_ID_OID ) of BUILDDEFINITION&#010;ID : 6 Please notify your system adminitrator&#010;&gt;     at org.apache.continuum.buildmanager.ParallelBuildsManager.buildProjects(ParallelBuildsManager.java:193)&#010;&gt;     at org.apache.maven.continuum.core.action.CreateBuildProjectTaskAction.execute(CreateBuildProjectTaskAction.java:123)&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.buildProjects(PrepareBuildProjectsTaskExecutor.java:647)&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.executeTask(PrepareBuildProjectsTaskExecutor.java:215)&#010;&gt;     at org.apache.continuum.taskqueueexecutor.ParallelBuildsThreadedTaskQueueExecutor$ExecutorRunnable$1.run(ParallelBuildsThreadedTaskQueueExecutor.java:120)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:442)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.FutureTask.run(FutureTask.java:176)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:987)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:528)&#010;&gt;     at java.lang.Thread.run(Thread.java:662)&#010;&gt; 2013-03-05 15:42:17,692 [pool-3-thread-2] ERROR org.apache.continuum.taskqueueexecutor.ParallelBuildsThreadedTaskQueueExecutor&#010; - Error executing task&#010;&gt; org.codehaus.plexus.taskqueue.execution.TaskExecutionException: Error executing action&#010;'build-project'&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.buildProjects(PrepareBuildProjectsTaskExecutor.java:657)&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.executeTask(PrepareBuildProjectsTaskExecutor.java:215)&#010;&gt;     at org.apache.continuum.taskqueueexecutor.ParallelBuildsThreadedTaskQueueExecutor$ExecutorRunnable$1.run(ParallelBuildsThreadedTaskQueueExecutor.java:120)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:442)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.FutureTask.run(FutureTask.java:176)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:987)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:528)&#010;&gt;     at java.lang.Thread.run(Thread.java:662)&#010;&gt; Caused by: org.apache.continuum.buildmanager.BuildManagerException: Unable to build project&#010;due to null values set on ( GOALS , ARGUMENTS , BUILD_FILE, SCHEDULE_ID_OID ) of BUILDDEFINITION&#010;ID : 6 Please notify your system adminitrator&#010;&gt;     at org.apache.continuum.buildmanager.ParallelBuildsManager.buildProjects(ParallelBuildsManager.java:193)&#010;&gt;     at org.apache.maven.continuum.core.action.CreateBuildProjectTaskAction.execute(CreateBuildProjectTaskAction.java:123)&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.buildProjects(PrepareBuildProjectsTaskExecutor.java:647)&#010;&gt;     ... 7 more&#010;&#010;--&#010;This message is automatically generated by JIRA.&#010;If you think it was sent incorrectly, please contact your JIRA administrators&#010;For more information on JIRA, see: http://www.atlassian.com/software/jira&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] (CONTINUUM-2705) Trunk 1.4.2-SNAPSHOT- error in Shell Build</title>
<author><name>&quot;Brett Porter (JIRA)&quot; &lt;jira@codehaus.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/continuum-issues/201303.mbox/%3cJIRA.144753.1362755155669.6233.1363707352906@codehaus01.managed.contegix.com%3e"/>
<id>urn:uuid:%3cJIRA-144753-1362755155669-6233-1363707352906@codehaus01-managed-contegix-com%3e</id>
<updated>2013-03-19T15:35:52Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
&#010;     [ https://jira.codehaus.org/browse/CONTINUUM-2705?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel&#010;]&#010;&#010;Brett Porter updated CONTINUUM-2705:&#010;------------------------------------&#010;&#010;    Affects Version/s:     (was: 1.4.2)&#010;                       1.4.1&#010;        Fix Version/s: 1.4.2&#010;    &#010;&gt; Trunk 1.4.2-SNAPSHOT- error in Shell Build&#010;&gt; ------------------------------------------&#010;&gt;&#010;&gt;                 Key: CONTINUUM-2705&#010;&gt;                 URL: https://jira.codehaus.org/browse/CONTINUUM-2705&#010;&gt;             Project: Continuum&#010;&gt;          Issue Type: Bug&#010;&gt;    Affects Versions: 1.4.1&#010;&gt;         Environment: linux, tomcat&#010;&gt;            Reporter: Murali Mohan&#010;&gt;             Fix For: 1.4.2&#010;&gt;&#010;&gt;         Attachments: Screenshot-8.png&#010;&gt;&#010;&gt;&#010;&gt; I am trying to understand the code and may be provide some fixes/patches (example: http://jira.codehaus.org/browse/CONTINUUM-2704).&#010;Checked out latest code from trunk (1.4.2-SNAPSHOT). Trying to execute a shell build when&#010;it fails. StackTrace given below. This is a new build created after running the continuum-webapp&#010;(built from trunk code) for the first time. This is not a migrated build (meaning it was a&#010;new build defined in the fresh instance).&#010;&gt; Screenshot of continuum UI showing the failing build (Test.sh) is also attached.&#010;&gt; Can someone please help? What is the reason for this error?&#010;&gt; StackTrace&#010;&gt; =========&#010;&gt; 2013-03-05 15:42:17,691 [pool-3-thread-2] ERROR org.apache.continuum.buildmanager.ParallelBuildsManager&#010; - Null values set on build definition (id=6)&#010;&gt; 2013-03-05 15:42:17,691 [pool-3-thread-2] ERROR org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor&#010; - Unable to build project due to null values set on ( GOALS , ARGUMENTS , BUILD_FILE, SCHEDULE_ID_OID&#010;) of BUILDDEFINITION ID : 6 Please notify your system adminitrator&#010;&gt; org.apache.continuum.buildmanager.BuildManagerException: Unable to build project due&#010;to null values set on ( GOALS , ARGUMENTS , BUILD_FILE, SCHEDULE_ID_OID ) of BUILDDEFINITION&#010;ID : 6 Please notify your system adminitrator&#010;&gt;     at org.apache.continuum.buildmanager.ParallelBuildsManager.buildProjects(ParallelBuildsManager.java:193)&#010;&gt;     at org.apache.maven.continuum.core.action.CreateBuildProjectTaskAction.execute(CreateBuildProjectTaskAction.java:123)&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.buildProjects(PrepareBuildProjectsTaskExecutor.java:647)&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.executeTask(PrepareBuildProjectsTaskExecutor.java:215)&#010;&gt;     at org.apache.continuum.taskqueueexecutor.ParallelBuildsThreadedTaskQueueExecutor$ExecutorRunnable$1.run(ParallelBuildsThreadedTaskQueueExecutor.java:120)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:442)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.FutureTask.run(FutureTask.java:176)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:987)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:528)&#010;&gt;     at java.lang.Thread.run(Thread.java:662)&#010;&gt; 2013-03-05 15:42:17,692 [pool-3-thread-2] ERROR org.apache.continuum.taskqueueexecutor.ParallelBuildsThreadedTaskQueueExecutor&#010; - Error executing task&#010;&gt; org.codehaus.plexus.taskqueue.execution.TaskExecutionException: Error executing action&#010;'build-project'&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.buildProjects(PrepareBuildProjectsTaskExecutor.java:657)&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.executeTask(PrepareBuildProjectsTaskExecutor.java:215)&#010;&gt;     at org.apache.continuum.taskqueueexecutor.ParallelBuildsThreadedTaskQueueExecutor$ExecutorRunnable$1.run(ParallelBuildsThreadedTaskQueueExecutor.java:120)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:442)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.FutureTask.run(FutureTask.java:176)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:987)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:528)&#010;&gt;     at java.lang.Thread.run(Thread.java:662)&#010;&gt; Caused by: org.apache.continuum.buildmanager.BuildManagerException: Unable to build project&#010;due to null values set on ( GOALS , ARGUMENTS , BUILD_FILE, SCHEDULE_ID_OID ) of BUILDDEFINITION&#010;ID : 6 Please notify your system adminitrator&#010;&gt;     at org.apache.continuum.buildmanager.ParallelBuildsManager.buildProjects(ParallelBuildsManager.java:193)&#010;&gt;     at org.apache.maven.continuum.core.action.CreateBuildProjectTaskAction.execute(CreateBuildProjectTaskAction.java:123)&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.buildProjects(PrepareBuildProjectsTaskExecutor.java:647)&#010;&gt;     ... 7 more&#010;&#010;--&#010;This message is automatically generated by JIRA.&#010;If you think it was sent incorrectly, please contact your JIRA administrators&#010;For more information on JIRA, see: http://www.atlassian.com/software/jira&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] (CONTINUUM-2705) Trunk 1.4.2-SNAPSHOT- error in Shell Build</title>
<author><name>&quot;Brett Porter (JIRA)&quot; &lt;jira@codehaus.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/continuum-issues/201303.mbox/%3cJIRA.144753.1362755155669.6231.1363707352889@codehaus01.managed.contegix.com%3e"/>
<id>urn:uuid:%3cJIRA-144753-1362755155669-6231-1363707352889@codehaus01-managed-contegix-com%3e</id>
<updated>2013-03-19T15:35:52Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
&#010;    [ https://jira.codehaus.org/browse/CONTINUUM-2705?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=322156#comment-322156&#010;] &#010;&#010;Brett Porter commented on CONTINUUM-2705:&#010;-----------------------------------------&#010;&#010;so, if I understand right, is this a regression over 1.3.6 for you?&#010;                &#010;&gt; Trunk 1.4.2-SNAPSHOT- error in Shell Build&#010;&gt; ------------------------------------------&#010;&gt;&#010;&gt;                 Key: CONTINUUM-2705&#010;&gt;                 URL: https://jira.codehaus.org/browse/CONTINUUM-2705&#010;&gt;             Project: Continuum&#010;&gt;          Issue Type: Bug&#010;&gt;    Affects Versions: 1.4.2&#010;&gt;         Environment: linux, tomcat&#010;&gt;            Reporter: Murali Mohan&#010;&gt;         Attachments: Screenshot-8.png&#010;&gt;&#010;&gt;&#010;&gt; I am trying to understand the code and may be provide some fixes/patches (example: http://jira.codehaus.org/browse/CONTINUUM-2704).&#010;Checked out latest code from trunk (1.4.2-SNAPSHOT). Trying to execute a shell build when&#010;it fails. StackTrace given below. This is a new build created after running the continuum-webapp&#010;(built from trunk code) for the first time. This is not a migrated build (meaning it was a&#010;new build defined in the fresh instance).&#010;&gt; Screenshot of continuum UI showing the failing build (Test.sh) is also attached.&#010;&gt; Can someone please help? What is the reason for this error?&#010;&gt; StackTrace&#010;&gt; =========&#010;&gt; 2013-03-05 15:42:17,691 [pool-3-thread-2] ERROR org.apache.continuum.buildmanager.ParallelBuildsManager&#010; - Null values set on build definition (id=6)&#010;&gt; 2013-03-05 15:42:17,691 [pool-3-thread-2] ERROR org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor&#010; - Unable to build project due to null values set on ( GOALS , ARGUMENTS , BUILD_FILE, SCHEDULE_ID_OID&#010;) of BUILDDEFINITION ID : 6 Please notify your system adminitrator&#010;&gt; org.apache.continuum.buildmanager.BuildManagerException: Unable to build project due&#010;to null values set on ( GOALS , ARGUMENTS , BUILD_FILE, SCHEDULE_ID_OID ) of BUILDDEFINITION&#010;ID : 6 Please notify your system adminitrator&#010;&gt;     at org.apache.continuum.buildmanager.ParallelBuildsManager.buildProjects(ParallelBuildsManager.java:193)&#010;&gt;     at org.apache.maven.continuum.core.action.CreateBuildProjectTaskAction.execute(CreateBuildProjectTaskAction.java:123)&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.buildProjects(PrepareBuildProjectsTaskExecutor.java:647)&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.executeTask(PrepareBuildProjectsTaskExecutor.java:215)&#010;&gt;     at org.apache.continuum.taskqueueexecutor.ParallelBuildsThreadedTaskQueueExecutor$ExecutorRunnable$1.run(ParallelBuildsThreadedTaskQueueExecutor.java:120)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:442)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.FutureTask.run(FutureTask.java:176)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:987)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:528)&#010;&gt;     at java.lang.Thread.run(Thread.java:662)&#010;&gt; 2013-03-05 15:42:17,692 [pool-3-thread-2] ERROR org.apache.continuum.taskqueueexecutor.ParallelBuildsThreadedTaskQueueExecutor&#010; - Error executing task&#010;&gt; org.codehaus.plexus.taskqueue.execution.TaskExecutionException: Error executing action&#010;'build-project'&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.buildProjects(PrepareBuildProjectsTaskExecutor.java:657)&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.executeTask(PrepareBuildProjectsTaskExecutor.java:215)&#010;&gt;     at org.apache.continuum.taskqueueexecutor.ParallelBuildsThreadedTaskQueueExecutor$ExecutorRunnable$1.run(ParallelBuildsThreadedTaskQueueExecutor.java:120)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:442)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.FutureTask.run(FutureTask.java:176)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:987)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:528)&#010;&gt;     at java.lang.Thread.run(Thread.java:662)&#010;&gt; Caused by: org.apache.continuum.buildmanager.BuildManagerException: Unable to build project&#010;due to null values set on ( GOALS , ARGUMENTS , BUILD_FILE, SCHEDULE_ID_OID ) of BUILDDEFINITION&#010;ID : 6 Please notify your system adminitrator&#010;&gt;     at org.apache.continuum.buildmanager.ParallelBuildsManager.buildProjects(ParallelBuildsManager.java:193)&#010;&gt;     at org.apache.maven.continuum.core.action.CreateBuildProjectTaskAction.execute(CreateBuildProjectTaskAction.java:123)&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.buildProjects(PrepareBuildProjectsTaskExecutor.java:647)&#010;&gt;     ... 7 more&#010;&#010;--&#010;This message is automatically generated by JIRA.&#010;If you think it was sent incorrectly, please contact your JIRA administrators&#010;For more information on JIRA, see: http://www.atlassian.com/software/jira&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] (CONTINUUM-2704) Shell builds are not executing concurrently</title>
<author><name>&quot;Murali Mohan (JIRA)&quot; &lt;jira@codehaus.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/continuum-issues/201303.mbox/%3cJIRA.144596.1362149335840.6133.1363692232862@codehaus01.managed.contegix.com%3e"/>
<id>urn:uuid:%3cJIRA-144596-1362149335840-6133-1363692232862@codehaus01-managed-contegix-com%3e</id>
<updated>2013-03-19T11:23:52Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
&#010;    [ https://jira.codehaus.org/browse/CONTINUUM-2704?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=322129#comment-322129&#010;] &#010;&#010;Murali Mohan commented on CONTINUUM-2704:&#010;-----------------------------------------&#010;&#010;So I have made the change (removed the synchronize keyword) in the code I got for version&#010;1.3.6 (from the corresponding branch). I couldn't get the trunk code to work which is explained&#010;here - http://jira.codehaus.org/browse/CONTINUUM-2705&#010;&#010;And this 1.3.6 version has been running and executing all our builds for more than a week&#010;now. It is much faster and I am seeing less problems now. Initially, I used to have a load&#010;of problems because of builds not getting completed on time as the shell builds were blocking&#010;each other. Not any more.&#010;&#010;So works well for me in 1.3.6&#010;&#010;&#010;                &#010;&gt; Shell builds are not executing concurrently&#010;&gt; -------------------------------------------&#010;&gt;&#010;&gt;                 Key: CONTINUUM-2704&#010;&gt;                 URL: https://jira.codehaus.org/browse/CONTINUUM-2704&#010;&gt;             Project: Continuum&#010;&gt;          Issue Type: Bug&#010;&gt;          Components: Parallel Builds&#010;&gt;    Affects Versions: 1.3.8&#010;&gt;         Environment: Ubuntu, Tomcat&#010;&gt;            Reporter: Murali Mohan&#010;&gt;&#010;&gt; Continuum version 1.3.6. Deployed on Tomcat in Ubuntu.&#010;&gt; I have 2 projects, say A and B. Each has shell builds defined and set to run in different&#010;queues. Number of parallel builds is set to 4.&#010;&gt; The problem is that, when the shell build from A runs, it will not execute the build&#010;until the shell build from B is complete. it is almost  like A is waiting for B to finish.&#010;Please note that maven builds are happily running in parallel in these 2 queues. It is only&#010;the shell build that has a problem.&#010;&gt; To be sure that this is not an OS level problem, I started the build in B from Continuum&#010;and ran the shell script for A from command line and it worked fine - both ran in parallel.&#010;So, I think Continuum has a bottle neck somewhere. please help.&#010;&#010;--&#010;This message is automatically generated by JIRA.&#010;If you think it was sent incorrectly, please contact your JIRA administrators&#010;For more information on JIRA, see: http://www.atlassian.com/software/jira&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] (CONTINUUM-2704) Shell builds are not executing concurrently</title>
<author><name>&quot;Murali Mohan (JIRA)&quot; &lt;jira@codehaus.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/continuum-issues/201303.mbox/%3cJIRA.144596.1362149335840.3572.1362757613028@codehaus01.managed.contegix.com%3e"/>
<id>urn:uuid:%3cJIRA-144596-1362149335840-3572-1362757613028@codehaus01-managed-contegix-com%3e</id>
<updated>2013-03-08T15:46:53Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
&#010;    [ https://jira.codehaus.org/browse/CONTINUUM-2704?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=321661#comment-321661&#010;] &#010;&#010;Murali Mohan commented on CONTINUUM-2704:&#010;-----------------------------------------&#010;&#010;It is threadsafe, looks like that to me.&#010;&#010;The only 2 variables I wanted to dig deep are defaultExecutable and resolveExecutable in AbstractBuildExecutor.&#010;These variables are not set for ShellBuildExecutor where as it is being set ofrant and maven.&#010;Any ideas why?&#010;&#010;Anyways, I think we can safely make it a non-synchronized method.&#010;                &#010;&gt; Shell builds are not executing concurrently&#010;&gt; -------------------------------------------&#010;&gt;&#010;&gt;                 Key: CONTINUUM-2704&#010;&gt;                 URL: https://jira.codehaus.org/browse/CONTINUUM-2704&#010;&gt;             Project: Continuum&#010;&gt;          Issue Type: Bug&#010;&gt;          Components: Parallel Builds&#010;&gt;    Affects Versions: 1.3.8&#010;&gt;         Environment: Ubuntu, Tomcat&#010;&gt;            Reporter: Murali Mohan&#010;&gt;&#010;&gt; Continuum version 1.3.6. Deployed on Tomcat in Ubuntu.&#010;&gt; I have 2 projects, say A and B. Each has shell builds defined and set to run in different&#010;queues. Number of parallel builds is set to 4.&#010;&gt; The problem is that, when the shell build from A runs, it will not execute the build&#010;until the shell build from B is complete. it is almost  like A is waiting for B to finish.&#010;Please note that maven builds are happily running in parallel in these 2 queues. It is only&#010;the shell build that has a problem.&#010;&gt; To be sure that this is not an OS level problem, I started the build in B from Continuum&#010;and ran the shell script for A from command line and it worked fine - both ran in parallel.&#010;So, I think Continuum has a bottle neck somewhere. please help.&#010;&#010;--&#010;This message is automatically generated by JIRA.&#010;If you think it was sent incorrectly, please contact your JIRA administrators&#010;For more information on JIRA, see: http://www.atlassian.com/software/jira&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] (CONTINUUM-2705) Trunk 1.4.2-SNAPSHOT- error in Shell Build</title>
<author><name>&quot;Murali Mohan (JIRA)&quot; &lt;jira@codehaus.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/continuum-issues/201303.mbox/%3cJIRA.144753.1362755155669.3554.1362756292798@codehaus01.managed.contegix.com%3e"/>
<id>urn:uuid:%3cJIRA-144753-1362755155669-3554-1362756292798@codehaus01-managed-contegix-com%3e</id>
<updated>2013-03-08T15:24:52Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
&#010;    [ https://jira.codehaus.org/browse/CONTINUUM-2705?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=321658#comment-321658&#010;] &#010;&#010;Murali Mohan commented on CONTINUUM-2705:&#010;-----------------------------------------&#010;&#010;Information from Brett Porter:&#010;&#010;"&#010;It looks like it is validating based on Maven rules:&#010;&#010;if ( buildDef.getArguments() == null || buildDef.getBuildFile() == null || buildDef.getGoals()&#010;== null ||&#010; 190                 buildDef.getSchedule() == null )&#010;&#010;But I assume you don't need to provide goals for a shell task and that you might have that&#010;empty.&#010;&#010;- Brett&#010;"&#010;                &#010;&gt; Trunk 1.4.2-SNAPSHOT- error in Shell Build&#010;&gt; ------------------------------------------&#010;&gt;&#010;&gt;                 Key: CONTINUUM-2705&#010;&gt;                 URL: https://jira.codehaus.org/browse/CONTINUUM-2705&#010;&gt;             Project: Continuum&#010;&gt;          Issue Type: Bug&#010;&gt;    Affects Versions: 1.4.2&#010;&gt;         Environment: linux, tomcat&#010;&gt;            Reporter: Murali Mohan&#010;&gt;         Attachments: Screenshot-8.png&#010;&gt;&#010;&gt;&#010;&gt; I am trying to understand the code and may be provide some fixes/patches (example: http://jira.codehaus.org/browse/CONTINUUM-2704).&#010;Checked out latest code from trunk (1.4.2-SNAPSHOT). Trying to execute a shell build when&#010;it fails. StackTrace given below. This is a new build created after running the continuum-webapp&#010;(built from trunk code) for the first time. This is not a migrated build (meaning it was a&#010;new build defined in the fresh instance).&#010;&gt; Screenshot of continuum UI showing the failing build (Test.sh) is also attached.&#010;&gt; Can someone please help? What is the reason for this error?&#010;&gt; StackTrace&#010;&gt; =========&#010;&gt; 2013-03-05 15:42:17,691 [pool-3-thread-2] ERROR org.apache.continuum.buildmanager.ParallelBuildsManager&#010; - Null values set on build definition (id=6)&#010;&gt; 2013-03-05 15:42:17,691 [pool-3-thread-2] ERROR org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor&#010; - Unable to build project due to null values set on ( GOALS , ARGUMENTS , BUILD_FILE, SCHEDULE_ID_OID&#010;) of BUILDDEFINITION ID : 6 Please notify your system adminitrator&#010;&gt; org.apache.continuum.buildmanager.BuildManagerException: Unable to build project due&#010;to null values set on ( GOALS , ARGUMENTS , BUILD_FILE, SCHEDULE_ID_OID ) of BUILDDEFINITION&#010;ID : 6 Please notify your system adminitrator&#010;&gt;     at org.apache.continuum.buildmanager.ParallelBuildsManager.buildProjects(ParallelBuildsManager.java:193)&#010;&gt;     at org.apache.maven.continuum.core.action.CreateBuildProjectTaskAction.execute(CreateBuildProjectTaskAction.java:123)&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.buildProjects(PrepareBuildProjectsTaskExecutor.java:647)&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.executeTask(PrepareBuildProjectsTaskExecutor.java:215)&#010;&gt;     at org.apache.continuum.taskqueueexecutor.ParallelBuildsThreadedTaskQueueExecutor$ExecutorRunnable$1.run(ParallelBuildsThreadedTaskQueueExecutor.java:120)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:442)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.FutureTask.run(FutureTask.java:176)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:987)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:528)&#010;&gt;     at java.lang.Thread.run(Thread.java:662)&#010;&gt; 2013-03-05 15:42:17,692 [pool-3-thread-2] ERROR org.apache.continuum.taskqueueexecutor.ParallelBuildsThreadedTaskQueueExecutor&#010; - Error executing task&#010;&gt; org.codehaus.plexus.taskqueue.execution.TaskExecutionException: Error executing action&#010;'build-project'&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.buildProjects(PrepareBuildProjectsTaskExecutor.java:657)&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.executeTask(PrepareBuildProjectsTaskExecutor.java:215)&#010;&gt;     at org.apache.continuum.taskqueueexecutor.ParallelBuildsThreadedTaskQueueExecutor$ExecutorRunnable$1.run(ParallelBuildsThreadedTaskQueueExecutor.java:120)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:442)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.FutureTask.run(FutureTask.java:176)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:987)&#010;&gt;     at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:528)&#010;&gt;     at java.lang.Thread.run(Thread.java:662)&#010;&gt; Caused by: org.apache.continuum.buildmanager.BuildManagerException: Unable to build project&#010;due to null values set on ( GOALS , ARGUMENTS , BUILD_FILE, SCHEDULE_ID_OID ) of BUILDDEFINITION&#010;ID : 6 Please notify your system adminitrator&#010;&gt;     at org.apache.continuum.buildmanager.ParallelBuildsManager.buildProjects(ParallelBuildsManager.java:193)&#010;&gt;     at org.apache.maven.continuum.core.action.CreateBuildProjectTaskAction.execute(CreateBuildProjectTaskAction.java:123)&#010;&gt;     at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.buildProjects(PrepareBuildProjectsTaskExecutor.java:647)&#010;&gt;     ... 7 more&#010;&#010;--&#010;This message is automatically generated by JIRA.&#010;If you think it was sent incorrectly, please contact your JIRA administrators&#010;For more information on JIRA, see: http://www.atlassian.com/software/jira&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] (CONTINUUM-2705) Trunk 1.4.2-SNAPSHOT- error in Shell Build</title>
<author><name>&quot;Murali Mohan (JIRA)&quot; &lt;jira@codehaus.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/continuum-issues/201303.mbox/%3cJIRA.144753.1362755155669.3527.1362755212806@codehaus01.managed.contegix.com%3e"/>
<id>urn:uuid:%3cJIRA-144753-1362755155669-3527-1362755212806@codehaus01-managed-contegix-com%3e</id>
<updated>2013-03-08T15:06:52Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Murali Mohan created CONTINUUM-2705:&#010;---------------------------------------&#010;&#010;             Summary: Trunk 1.4.2-SNAPSHOT- error in Shell Build&#010;                 Key: CONTINUUM-2705&#010;                 URL: https://jira.codehaus.org/browse/CONTINUUM-2705&#010;             Project: Continuum&#010;          Issue Type: Bug&#010;    Affects Versions: 1.4.2&#010;         Environment: linux, tomcat&#010;            Reporter: Murali Mohan&#010;         Attachments: Screenshot-8.png&#010;&#010;I am trying to understand the code and may be provide some fixes/patches (example: http://jira.codehaus.org/browse/CONTINUUM-2704).&#010;Checked out latest code from trunk (1.4.2-SNAPSHOT). Trying to execute a shell build when&#010;it fails. StackTrace given below. This is a new build created after running the continuum-webapp&#010;(built from trunk code) for the first time. This is not a migrated build (meaning it was a&#010;new build defined in the fresh instance).&#010;&#010;Screenshot of continuum UI showing the failing build (Test.sh) is also attached.&#010;&#010;Can someone please help? What is the reason for this error?&#010;&#010;StackTrace&#010;=========&#010;&#010;2013-03-05 15:42:17,691 [pool-3-thread-2] ERROR org.apache.continuum.buildmanager.ParallelBuildsManager&#010; - Null values set on build definition (id=6)&#010;2013-03-05 15:42:17,691 [pool-3-thread-2] ERROR org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor&#010; - Unable to build project due to null values set on ( GOALS , ARGUMENTS , BUILD_FILE, SCHEDULE_ID_OID&#010;) of BUILDDEFINITION ID : 6 Please notify your system adminitrator&#010;org.apache.continuum.buildmanager.BuildManagerException: Unable to build project due to null&#010;values set on ( GOALS , ARGUMENTS , BUILD_FILE, SCHEDULE_ID_OID ) of BUILDDEFINITION ID :&#010;6 Please notify your system adminitrator&#010;    at org.apache.continuum.buildmanager.ParallelBuildsManager.buildProjects(ParallelBuildsManager.java:193)&#010;    at org.apache.maven.continuum.core.action.CreateBuildProjectTaskAction.execute(CreateBuildProjectTaskAction.java:123)&#010;    at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.buildProjects(PrepareBuildProjectsTaskExecutor.java:647)&#010;    at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.executeTask(PrepareBuildProjectsTaskExecutor.java:215)&#010;    at org.apache.continuum.taskqueueexecutor.ParallelBuildsThreadedTaskQueueExecutor$ExecutorRunnable$1.run(ParallelBuildsThreadedTaskQueueExecutor.java:120)&#010;    at edu.emory.mathcs.backport.java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:442)&#010;    at edu.emory.mathcs.backport.java.util.concurrent.FutureTask.run(FutureTask.java:176)&#010;    at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:987)&#010;    at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:528)&#010;    at java.lang.Thread.run(Thread.java:662)&#010;2013-03-05 15:42:17,692 [pool-3-thread-2] ERROR org.apache.continuum.taskqueueexecutor.ParallelBuildsThreadedTaskQueueExecutor&#010; - Error executing task&#010;org.codehaus.plexus.taskqueue.execution.TaskExecutionException: Error executing action 'build-project'&#010;    at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.buildProjects(PrepareBuildProjectsTaskExecutor.java:657)&#010;    at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.executeTask(PrepareBuildProjectsTaskExecutor.java:215)&#010;    at org.apache.continuum.taskqueueexecutor.ParallelBuildsThreadedTaskQueueExecutor$ExecutorRunnable$1.run(ParallelBuildsThreadedTaskQueueExecutor.java:120)&#010;    at edu.emory.mathcs.backport.java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:442)&#010;    at edu.emory.mathcs.backport.java.util.concurrent.FutureTask.run(FutureTask.java:176)&#010;    at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:987)&#010;    at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:528)&#010;    at java.lang.Thread.run(Thread.java:662)&#010;Caused by: org.apache.continuum.buildmanager.BuildManagerException: Unable to build project&#010;due to null values set on ( GOALS , ARGUMENTS , BUILD_FILE, SCHEDULE_ID_OID ) of BUILDDEFINITION&#010;ID : 6 Please notify your system adminitrator&#010;    at org.apache.continuum.buildmanager.ParallelBuildsManager.buildProjects(ParallelBuildsManager.java:193)&#010;    at org.apache.maven.continuum.core.action.CreateBuildProjectTaskAction.execute(CreateBuildProjectTaskAction.java:123)&#010;    at org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor.buildProjects(PrepareBuildProjectsTaskExecutor.java:647)&#010;    ... 7 more&#010;&#010;&#010;--&#010;This message is automatically generated by JIRA.&#010;If you think it was sent incorrectly, please contact your JIRA administrators&#010;For more information on JIRA, see: http://www.atlassian.com/software/jira&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] (CONTINUUM-2704) Shell builds are not executing concurrently</title>
<author><name>&quot;Brett Porter (JIRA)&quot; &lt;jira@codehaus.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/continuum-issues/201303.mbox/%3cJIRA.144596.1362149335840.3504.1362752272872@codehaus01.managed.contegix.com%3e"/>
<id>urn:uuid:%3cJIRA-144596-1362149335840-3504-1362752272872@codehaus01-managed-contegix-com%3e</id>
<updated>2013-03-08T14:17:52Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
&#010;    [ https://jira.codehaus.org/browse/CONTINUUM-2704?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=321645#comment-321645&#010;] &#010;&#010;Brett Porter commented on CONTINUUM-2704:&#010;-----------------------------------------&#010;&#010;That certainly looks like the case, good catch. It would be necessary to confirm that the&#010;rest of the side effects of those methods are thread safe, but a narrower synchronization&#010;window can likely be established if needed that doesn't lock them to one at a time. Thanks&#010;for working through this.&#010;                &#010;&gt; Shell builds are not executing concurrently&#010;&gt; -------------------------------------------&#010;&gt;&#010;&gt;                 Key: CONTINUUM-2704&#010;&gt;                 URL: https://jira.codehaus.org/browse/CONTINUUM-2704&#010;&gt;             Project: Continuum&#010;&gt;          Issue Type: Bug&#010;&gt;          Components: Parallel Builds&#010;&gt;    Affects Versions: 1.3.8&#010;&gt;         Environment: Ubuntu, Tomcat&#010;&gt;            Reporter: Murali Mohan&#010;&gt;&#010;&gt; Continuum version 1.3.6. Deployed on Tomcat in Ubuntu.&#010;&gt; I have 2 projects, say A and B. Each has shell builds defined and set to run in different&#010;queues. Number of parallel builds is set to 4.&#010;&gt; The problem is that, when the shell build from A runs, it will not execute the build&#010;until the shell build from B is complete. it is almost  like A is waiting for B to finish.&#010;Please note that maven builds are happily running in parallel in these 2 queues. It is only&#010;the shell build that has a problem.&#010;&gt; To be sure that this is not an OS level problem, I started the build in B from Continuum&#010;and ran the shell script for A from command line and it worked fine - both ran in parallel.&#010;So, I think Continuum has a bottle neck somewhere. please help.&#010;&#010;--&#010;This message is automatically generated by JIRA.&#010;If you think it was sent incorrectly, please contact your JIRA administrators&#010;For more information on JIRA, see: http://www.atlassian.com/software/jira&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] (CONTINUUM-2704) Shell builds are not executing concurrently</title>
<author><name>&quot;Murali Mohan (JIRA)&quot; &lt;jira@codehaus.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/continuum-issues/201303.mbox/%3cJIRA.144596.1362149335840.1540.1362158632804@codehaus01.managed.contegix.com%3e"/>
<id>urn:uuid:%3cJIRA-144596-1362149335840-1540-1362158632804@codehaus01-managed-contegix-com%3e</id>
<updated>2013-03-01T17:23:52Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
&#010;    [ https://jira.codehaus.org/browse/CONTINUUM-2704?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=320682#comment-320682&#010;] &#010;&#010;Murali Mohan commented on CONTINUUM-2704:&#010;-----------------------------------------&#010;&#010;Other  Execuotr implementations do not have synchronized keyword, may be we can remove this?&#010;                &#010;&gt; Shell builds are not executing concurrently&#010;&gt; -------------------------------------------&#010;&gt;&#010;&gt;                 Key: CONTINUUM-2704&#010;&gt;                 URL: https://jira.codehaus.org/browse/CONTINUUM-2704&#010;&gt;             Project: Continuum&#010;&gt;          Issue Type: Bug&#010;&gt;          Components: Parallel Builds&#010;&gt;    Affects Versions: 1.3.8&#010;&gt;         Environment: Ubuntu, Tomcat&#010;&gt;            Reporter: Murali Mohan&#010;&gt;&#010;&gt; Continuum version 1.3.6. Deployed on Tomcat in Ubuntu.&#010;&gt; I have 2 projects, say A and B. Each has shell builds defined and set to run in different&#010;queues. Number of parallel builds is set to 4.&#010;&gt; The problem is that, when the shell build from A runs, it will not execute the build&#010;until the shell build from B is complete. it is almost  like A is waiting for B to finish.&#010;Please note that maven builds are happily running in parallel in these 2 queues. It is only&#010;the shell build that has a problem.&#010;&gt; To be sure that this is not an OS level problem, I started the build in B from Continuum&#010;and ran the shell script for A from command line and it worked fine - both ran in parallel.&#010;So, I think Continuum has a bottle neck somewhere. please help.&#010;&#010;--&#010;This message is automatically generated by JIRA.&#010;If you think it was sent incorrectly, please contact your JIRA administrators&#010;For more information on JIRA, see: http://www.atlassian.com/software/jira&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] (CONTINUUM-2704) Shell builds are not executing concurrently</title>
<author><name>&quot;Murali Mohan (JIRA)&quot; &lt;jira@codehaus.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/continuum-issues/201303.mbox/%3cJIRA.144596.1362149335840.1539.1362158512817@codehaus01.managed.contegix.com%3e"/>
<id>urn:uuid:%3cJIRA-144596-1362149335840-1539-1362158512817@codehaus01-managed-contegix-com%3e</id>
<updated>2013-03-01T17:21:52Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
&#010;    [ https://jira.codehaus.org/browse/CONTINUUM-2704?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=320681#comment-320681&#010;] &#010;&#010;Murali Mohan commented on CONTINUUM-2704:&#010;-----------------------------------------&#010;&#010;I think this is the issue. In class ShellBuildExecutor.java in continuum-core project, I see&#010;the following method as synchronized, that is the problem.&#010;&#010;{code}&#010;public synchronized ContinuumBuildExecutionResult build( Project project, BuildDefinition&#010;buildDefinition,&#010;                                                         File buildOutput )&#010;    throws ContinuumBuildExecutorException&#010;{&#010;    // TODO: this should be validated earlier?&#010;&#009;&#010;&#009;log.info("MUR: build");&#010;&#009;&#010;    String executable = getBuildFileForProject( project, buildDefinition );&#010;&#010;    return executeShellCommand( project, executable, buildDefinition.getArguments(), buildOutput,&#010;                                getEnvironments( buildDefinition ) );&#010;}&#010;{code}&#010;                &#010;&gt; Shell builds are not executing concurrently&#010;&gt; -------------------------------------------&#010;&gt;&#010;&gt;                 Key: CONTINUUM-2704&#010;&gt;                 URL: https://jira.codehaus.org/browse/CONTINUUM-2704&#010;&gt;             Project: Continuum&#010;&gt;          Issue Type: Bug&#010;&gt;          Components: Parallel Builds&#010;&gt;    Affects Versions: 1.3.8&#010;&gt;         Environment: Ubuntu, Tomcat&#010;&gt;            Reporter: Murali Mohan&#010;&gt;&#010;&gt; Continuum version 1.3.6. Deployed on Tomcat in Ubuntu.&#010;&gt; I have 2 projects, say A and B. Each has shell builds defined and set to run in different&#010;queues. Number of parallel builds is set to 4.&#010;&gt; The problem is that, when the shell build from A runs, it will not execute the build&#010;until the shell build from B is complete. it is almost  like A is waiting for B to finish.&#010;Please note that maven builds are happily running in parallel in these 2 queues. It is only&#010;the shell build that has a problem.&#010;&gt; To be sure that this is not an OS level problem, I started the build in B from Continuum&#010;and ran the shell script for A from command line and it worked fine - both ran in parallel.&#010;So, I think Continuum has a bottle neck somewhere. please help.&#010;&#010;--&#010;This message is automatically generated by JIRA.&#010;If you think it was sent incorrectly, please contact your JIRA administrators&#010;For more information on JIRA, see: http://www.atlassian.com/software/jira&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] (CONTINUUM-2704) Shell builds are not executing concurrently</title>
<author><name>&quot;Murali Mohan (JIRA)&quot; &lt;jira@codehaus.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/continuum-issues/201303.mbox/%3cJIRA.144596.1362149335840.1488.1362149632874@codehaus01.managed.contegix.com%3e"/>
<id>urn:uuid:%3cJIRA-144596-1362149335840-1488-1362149632874@codehaus01-managed-contegix-com%3e</id>
<updated>2013-03-01T14:53:52Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
&#010;    [ https://jira.codehaus.org/browse/CONTINUUM-2704?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=320673#comment-320673&#010;] &#010;&#010;Murali Mohan commented on CONTINUUM-2704:&#010;-----------------------------------------&#010;&#010;Log analysis and some observations:&#010;==================================&#010;&#010;The continuum logs when 2 shell builds attempt to run in parallel, is given below. Lines with&#010;"MURALI:" are inserted manually by me to label what is happening, in my understanding.&#010;&#010;The last log statement before the second build gets stuck is:&#010;2013-03-01 13:59:40,825 [pool-7-thread-17] INFO  org.apache.maven.continuum.buildcontroller.DefaultBuildController&#010; - Performing action execute-builder&#010;&#010;The logs from the DefaultShellCommandHelper is missing. This means that the second build is&#010;not even reaching the DefaultShellCommandHelper. This should confirm that this is a continuum&#010;bug and not related to my installation setup.&#010;&#010;Logs:&#010;=========&#010;&#010;*****MURALI: 1st build STart ******&#010;&#010;2013-03-01 13:58:50,534 [http-9000-Processor16] INFO  org.apache.continuum.buildmanager.ParallelBuildsManager&#010; - Queueing prepare-build-project task 'org.apache.continuum.taskqueue.PrepareBuildProjectsTask@186'&#010;to prepare-build queue.&#010;2013-03-01 13:58:50,534 [pool-13-thread-1] INFO  org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor&#010; - Initializing prepare build&#010;2013-03-01 13:58:50,559 [pool-13-thread-1] INFO  org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor&#010; - Starting prepare build of project: Cleandb_Backend_Maint&#010;2013-03-01 13:58:50,598 [pool-13-thread-1] INFO  org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor&#010; - Purging existing working copy&#010;2013-03-01 13:58:50,598 [pool-13-thread-1] INFO  org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor&#010; - Performing action clean-working-directory&#010;2013-03-01 13:58:53,149 [pool-13-thread-1] INFO  org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor&#010; - Updating working dir&#010;2013-03-01 13:58:53,149 [pool-13-thread-1] INFO  org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor&#010; - Performing action check-working-directory&#010;2013-03-01 13:58:53,161 [pool-13-thread-1] INFO  org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor&#010; - Performing action checkout-project&#010;2013-03-01 13:58:53,278 [pool-13-thread-1] INFO  action#checkout-project  - Checking out project:&#010;'Cleandb_Backend_Maint', id: '77' to '/home/continuum/continuumDirectories/trunk/working-directory/77'.&#010;2013-03-01 13:58:53,293 [pool-13-thread-1] INFO  org.apache.continuum.scm.manager.Slf4jScmLogger&#010; - Executing: /bin/sh -c cd /home/continuum/continuumDirectories/trunk/working-directory &amp;&amp;&#010;svn --username v963061 --password '*****' --non-interactive checkout http://labscvs.superpages.com:7151/BidCenter/bidcenter/branches/BC_72_MAINT&#010;77&#010;2013-03-01 13:58:53,293 [pool-13-thread-1] INFO  org.apache.continuum.scm.manager.Slf4jScmLogger&#010; - Working directory: /home/continuum/continuumDirectories/trunk/working-directory&#010;2013-03-01 13:59:40,600 [pool-13-thread-1] INFO  action#checkout-project  - Checked out 2760&#010;files.&#010;2013-03-01 13:59:40,642 [pool-13-thread-1] INFO  org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor&#010; - Merging SCM results&#010;2013-03-01 13:59:40,642 [pool-13-thread-1] INFO  org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor&#010; - Ending prepare build of project: Cleandb_Backend_Maint&#010;2013-03-01 13:59:40,642 [pool-13-thread-1] INFO  org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor&#010; - Ending prepare build&#010;2013-03-01 13:59:40,663 [pool-13-thread-1] INFO  org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor&#010; - Performing action create-build-project-task&#010;2013-03-01 13:59:40,738 [pool-13-thread-1] INFO  org.apache.continuum.buildmanager.ParallelBuildsManager&#010; - Project '77' - 'Cleandb_Backend_Maint' added to overall build queue 'MAINT_BACKEND_QUEUE'.&#010;2013-03-01 13:59:40,739 [pool-7-thread-17] INFO  org.apache.maven.continuum.buildcontroller.DefaultBuildController&#010; - Initializing build&#010;2013-03-01 13:59:40,758 [pool-7-thread-17] INFO  org.apache.maven.continuum.buildcontroller.DefaultBuildController&#010; - Starting build of Cleandb_Backend_Maint&#010;2013-03-01 13:59:40,820 [pool-7-thread-17] INFO  org.apache.maven.continuum.buildcontroller.DefaultBuildController&#010; - FreshBuild configured, building&#010;2013-03-01 13:59:40,820 [pool-7-thread-17] INFO  org.apache.maven.continuum.buildcontroller.DefaultBuildController&#010; - Performing action update-project-from-working-directory&#010;2013-03-01 13:59:40,822 [pool-7-thread-17] INFO  action#update-project-from-working-directory&#010; - Updating project 'Cleandb_Backend_Maint' from checkout.&#010;2013-03-01 13:59:40,825 [pool-7-thread-17] INFO  org.apache.maven.continuum.buildcontroller.DefaultBuildController&#010; - Performing action execute-builder&#010;&#010;*****1st build executing statements below ******&#010;2013-03-01 13:59:41,000 [pool-7-thread-17] INFO  org.apache.continuum.utils.shell.DefaultShellCommandHelper&#010; - Executing: /bin/sh -c cd /home/continuum/continuumDirectories/trunk/working-directory/77&#010;&amp;&amp; cleandb2Continuum_maint_backend.sh&#010;2013-03-01 13:59:41,000 [pool-7-thread-17] INFO  org.apache.continuum.utils.shell.DefaultShellCommandHelper&#010; - Working directory: /home/continuum/continuumDirectories/trunk/working-directory/77&#010;2013-03-01 13:59:54,771 [http-9000-Processor23] INFO  org.apache.continuum.buildmanager.ParallelBuildsManager&#010; - Queueing prepare-build-project task 'org.apache.continuum.taskqueue.PrepareBuildProjectsTask@198'&#010;to prepare-build queue.&#010;&#010;*****MURALI: 2nd build start ******&#010;2013-03-01 13:59:54,799 [pool-13-thread-1] INFO  org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor&#010; - Initializing prepare build&#010;2013-03-01 13:59:54,823 [pool-13-thread-1] INFO  org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor&#010; - Starting prepare build of project: Cleandb_Backend_trunk&#010;2013-03-01 13:59:54,874 [pool-13-thread-1] INFO  org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor&#010; - Updating working dir&#010;2013-03-01 13:59:54,874 [pool-13-thread-1] INFO  org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor&#010; - Performing action check-working-directory&#010;2013-03-01 13:59:54,875 [pool-13-thread-1] INFO  org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor&#010; - Performing action update-working-directory-from-scm&#010;2013-03-01 13:59:54,968 [pool-13-thread-1] INFO  action#update-working-directory-from-scm&#010; - Updating project: Cleandb_Backend_trunk', id: '76' to '/home/continuum/continuumDirectories/trunk/working-directory/76'.&#010;v963061 --password '*****' --non-interactive update /home/continuum/continuumDirectories/trunk/working-directory/76&#010;2013-03-01 13:59:54,970 [pool-13-thread-1] INFO  org.apache.continuum.scm.manager.Slf4jScmLogger&#010; - Working directory: /home/continuum/continuumDirectories/trunk/working-directory/76&#010;2013-03-01 13:59:57,887 [pool-13-thread-1] INFO  org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor&#010; - Merging SCM results&#010;2013-03-01 13:59:57,887 [pool-13-thread-1] INFO  org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor&#010; - Ending prepare build of project: Cleandb_Backend_trunk&#010;2013-03-01 13:59:57,887 [pool-13-thread-1] INFO  org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor&#010; - Ending prepare build&#010;2013-03-01 13:59:57,944 [pool-13-thread-1] INFO  org.apache.maven.continuum.scm.queue.PrepareBuildProjectsTaskExecutor&#010; - Performing action create-build-project-task&#010;2013-03-01 13:59:57,962 [pool-13-thread-1] INFO  org.apache.continuum.buildmanager.ParallelBuildsManager&#010; - Project '76' - 'Cleandb_Backend_trunk' added to overall build queue 'TRUNK_BACKEND_QUEUE'.&#010;2013-03-01 13:59:57,962 [pool-5-thread-16] INFO  org.apache.maven.continuum.buildcontroller.DefaultBuildController&#010; - Initializing build&#010;2013-03-01 13:59:57,980 [pool-5-thread-16] INFO  org.apache.maven.continuum.buildcontroller.DefaultBuildController&#010; - Starting build of Cleandb_Backend_trunk&#010;2013-03-01 13:59:58,009 [pool-5-thread-16] INFO  org.apache.maven.continuum.buildcontroller.DefaultBuildController&#010; - AlwaysBuild configured, building&#010;2013-03-01 13:59:58,009 [pool-5-thread-16] INFO  org.apache.maven.continuum.buildcontroller.DefaultBuildController&#010; - Performing action update-project-from-working-directory&#010;2013-03-01 13:59:58,011 [pool-5-thread-16] INFO  action#update-project-from-working-directory&#010; - Updating project 'Cleandb_Backend_trunk' from checkout.&#010;2013-03-01 13:59:58,014 [pool-5-thread-16] INFO  org.apache.maven.continuum.buildcontroller.DefaultBuildController&#010; - Performing action execute-builder&#010;&#010;*****MURALI: 2nd build executing statements MISSING FOR SOME TIME, it is waiting for 1st build&#010;to finish ******&#010;2013-03-01 14:01:20,730 [http-9000-Processor16] WARN  org.apache.struts2.components.Form &#010;- No configuration found for the specified action: 'none' in namespace: ''. Form action defaulting&#010;to 'action' attribute's literal value.&#010;2013-03-01 14:01:20,836 [http-9000-Processor16] WARN  org.apache.struts2.components.Form &#010;- No configuration found for the specified action: 'none' in namespace: ''. Form action defaulting&#010;to 'action' attribute's literal value.&#010;2013-03-01 14:01:20,845 [http-9000-Processor16] WARN  org.apache.struts2.components.Form &#010;- No configuration found for the specified action: 'none' in namespace: ''. Form action defaulting&#010;to 'action' attribute's literal value.&#010;2013-03-01 14:01:20,861 [http-9000-Processor16] WARN  org.apache.struts2.components.Form &#010;- No configuration found for the specified action: 'none' in namespace: ''. Form action defaulting&#010;to 'action' attribute's literal value.&#010;2013-03-01 14:01:20,879 [http-9000-Processor16] WARN  org.apache.struts2.components.Form &#010;- No configuration found for the specified action: 'none' in namespace: ''. Form action defaulting&#010;to 'action' attribute's literal value.&#010;2013-03-01 14:01:20,879 [http-9000-Processor16] WARN  org.apache.struts2.components.Form &#010;- No configuration found for the specified action: 'none' in namespace: ''. Form action defaulting&#010;to 'action' attribute's literal value.&#010;2013-03-01 14:01:20,879 [http-9000-Processor16] WARN  org.apache.struts2.components.Form &#010;- No configuration found for the specified action: 'removePrepareBuildEntries.action' in namespace:&#010;''. Form action defaulting to 'action' attribute's literal value.&#010;2013-03-01 14:01:20,879 [http-9000-Processor16] WARN  org.apache.struts2.components.Form &#010;- No configuration found for the specified action: 'removePrepareBuildEntries.action' in namespace:&#010;''. Form action defaulting to 'action' attribute's literal value.&#010;2013-03-01 14:01:54,204 [pool-7-thread-17] INFO  org.apache.maven.continuum.execution.shell.ShellBuildExecutor&#010; - Exit code: 0&#010;&#010;*****MURALI: 2nd build executing statements NOW, after 1st build ends ******&#010;2013-03-01 14:01:54,206 [pool-5-thread-16] INFO  org.apache.continuum.utils.shell.DefaultShellCommandHelper&#010; - Executing: /bin/sh -c cd /home/continuum/continuumDirectories/trunk/working-directory/76&#010;&amp;&amp; cleandb2Continuum_trunk_backend.sh&#010;2013-03-01 14:01:54,206 [pool-5-thread-16] INFO  org.apache.continuum.utils.shell.DefaultShellCommandHelper&#010; - Working directory: /home/continuum/continuumDirectories/trunk/working-directory/76&#010;2013-03-01 14:01:54,484 [pool-7-thread-17] INFO  org.apache.maven.continuum.buildcontroller.DefaultBuildController&#010; - Performing action deploy-artifact&#010;2013-03-01 14:02:21,697 [http-9000-Processor23] WARN  org.apache.struts2.components.Form &#010;- No configuration found for the specified action: 'none' in namespace: ''. Form action defaulting&#010;to 'action' attribute's literal value.&#010;2013-03-01 14:02:21,699 [http-9000-Processor23] WARN  org.apache.struts2.components.Form &#010;- No configuration found for the specified action: 'none' in namespace: ''. Form action defaulting&#010;to 'action' attribute's literal value.&#010;2013-03-01 14:02:21,699 [http-9000-Processor23] WARN  org.apache.struts2.components.Form &#010;- No configuration found for the specified action: 'none' in namespace: ''. Form action defaulting&#010;to 'action' attribute's literal value.&#010;2013-03-01 14:02:21,700 [http-9000-Processor23] WARN  org.apache.struts2.components.Form &#010;- No configuration found for the specified action: 'none' in namespace: ''. Form action defaulting&#010;to 'action' attribute's literal value.&#010;2013-03-01 14:02:21,700 [http-9000-Processor23] WARN  org.apache.struts2.components.Form &#010;- No configuration found for the specified action: 'none' in namespace: ''. Form action defaulting&#010;to 'action' attribute's literal value.&#010;2013-03-01 14:02:21,700 [http-9000-Processor23] WARN  org.apache.struts2.components.Form &#010;- No configuration found for the specified action: 'none' in namespace: ''. Form action defaulting&#010;to 'action' attribute's literal value.&#010;2013-03-01 14:02:21,700 [http-9000-Processor23] WARN  org.apache.struts2.components.Form &#010;- No configuration found for the specified action: 'removePrepareBuildEntries.action' in namespace:&#010;''. Form action defaulting to 'action' attribute's literal value.&#010;2013-03-01 14:02:21,700 [http-9000-Processor23] WARN  org.apache.s&#010;&#010;&#010;&#010;&#010;                &#010;&gt; Shell builds are not executing concurrently&#010;&gt; -------------------------------------------&#010;&gt;&#010;&gt;                 Key: CONTINUUM-2704&#010;&gt;                 URL: https://jira.codehaus.org/browse/CONTINUUM-2704&#010;&gt;             Project: Continuum&#010;&gt;          Issue Type: Bug&#010;&gt;          Components: Parallel Builds&#010;&gt;    Affects Versions: 1.3.8&#010;&gt;         Environment: Ubuntu, Tomcat&#010;&gt;            Reporter: Murali Mohan&#010;&gt;&#010;&gt; Continuum version 1.3.6. Deployed on Tomcat in Ubuntu.&#010;&gt; I have 2 projects, say A and B. Each has shell builds defined and set to run in different&#010;queues. Number of parallel builds is set to 4.&#010;&gt; The problem is that, when the shell build from A runs, it will not execute the build&#010;until the shell build from B is complete. it is almost  like A is waiting for B to finish.&#010;Please note that maven builds are happily running in parallel in these 2 queues. It is only&#010;the shell build that has a problem.&#010;&gt; To be sure that this is not an OS level problem, I started the build in B from Continuum&#010;and ran the shell script for A from command line and it worked fine - both ran in parallel.&#010;So, I think Continuum has a bottle neck somewhere. please help.&#010;&#010;--&#010;This message is automatically generated by JIRA.&#010;If you think it was sent incorrectly, please contact your JIRA administrators&#010;For more information on JIRA, see: http://www.atlassian.com/software/jira&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] (CONTINUUM-2704) Shell builds are not executing concurrently</title>
<author><name>&quot;Murali Mohan (JIRA)&quot; &lt;jira@codehaus.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/continuum-issues/201303.mbox/%3cJIRA.144596.1362149335840.1487.1362149392802@codehaus01.managed.contegix.com%3e"/>
<id>urn:uuid:%3cJIRA-144596-1362149335840-1487-1362149392802@codehaus01-managed-contegix-com%3e</id>
<updated>2013-03-01T14:49:52Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Murali Mohan created CONTINUUM-2704:&#010;---------------------------------------&#010;&#010;             Summary: Shell builds are not executing concurrently&#010;                 Key: CONTINUUM-2704&#010;                 URL: https://jira.codehaus.org/browse/CONTINUUM-2704&#010;             Project: Continuum&#010;          Issue Type: Bug&#010;          Components: Parallel Builds&#010;    Affects Versions: 1.3.8&#010;         Environment: Ubuntu, Tomcat&#010;            Reporter: Murali Mohan&#010;&#010;&#010;&#010;Continuum version 1.3.6. Deployed on Tomcat in Ubuntu.&#010;&#010;I have 2 projects, say A and B. Each has shell builds defined and set to run in different&#010;queues. Number of parallel builds is set to 4.&#010;&#010;The problem is that, when the shell build from A runs, it will not execute the build until&#010;the shell build from B is complete. it is almost  like A is waiting for B to finish. Please&#010;note that maven builds are happily running in parallel in these 2 queues. It is only the shell&#010;build that has a problem.&#010;&#010;To be sure that this is not an OS level problem, I started the build in B from Continuum and&#010;ran the shell script for A from command line and it worked fine - both ran in parallel. So,&#010;I think Continuum has a bottle neck somewhere. please help.&#010;&#010;&#010;&#010;--&#010;This message is automatically generated by JIRA.&#010;If you think it was sent incorrectly, please contact your JIRA administrators&#010;For more information on JIRA, see: http://www.atlassian.com/software/jira&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] (CONTINUUM-2703) reduce logging from RbacAuthorizer</title>
<author><name>&quot;Brett Porter (JIRA)&quot; &lt;jira@codehaus.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/continuum-issues/201302.mbox/%3c994378229.45239.1361149453455.JavaMail.j2ee-jira@codehaus01.managed.contegix.com%3e"/>
<id>urn:uuid:%3c994378229-45239-1361149453455-JavaMail-j2ee-jira@codehaus01-managed-contegix-com%3e</id>
<updated>2013-02-18T01:04:13Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
&#010;     [ https://jira.codehaus.org/browse/CONTINUUM-2703?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel&#010;]&#010;&#010;Brett Porter closed CONTINUUM-2703.&#010;-----------------------------------&#010;&#010;       Resolution: Fixed&#010;    Fix Version/s: 1.4.2&#010;         Assignee: Brett Porter&#010;    &#010;&gt; reduce logging from RbacAuthorizer&#010;&gt; ----------------------------------&#010;&gt;&#010;&gt;                 Key: CONTINUUM-2703&#010;&gt;                 URL: https://jira.codehaus.org/browse/CONTINUUM-2703&#010;&gt;             Project: Continuum&#010;&gt;          Issue Type: Bug&#010;&gt;    Affects Versions: 1.4.1&#010;&gt;            Reporter: Brett Porter&#010;&gt;            Assignee: Brett Porter&#010;&gt;            Priority: Minor&#010;&gt;             Fix For: 1.4.2&#010;&gt;&#010;&gt;&#010;&gt; When attempting to resolve permissions, there are several trace statements logged at&#010;info level:&#010;&gt; * permission map does not contain operation&#010;&gt; * no permission found for operation&#010;&gt; These were changed to debug level on redback trunk, and should be the same in Continuum&#010;as well.&#010;&#010;--&#010;This message is automatically generated by JIRA.&#010;If you think it was sent incorrectly, please contact your JIRA administrators: https://jira.codehaus.org/secure/ContactAdministrators!default.jspa&#010;For more information on JIRA, see: http://www.atlassian.com/software/jira&#010;&#010;        &#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] (CONTINUUM-2703) reduce logging from RbacAuthorizer</title>
<author><name>&quot;Brett Porter (JIRA)&quot; &lt;jira@codehaus.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/continuum-issues/201302.mbox/%3c1959913547.45240.1361149453523.JavaMail.j2ee-jira@codehaus01.managed.contegix.com%3e"/>
<id>urn:uuid:%3c1959913547-45240-1361149453523-JavaMail-j2ee-jira@codehaus01-managed-contegix-com%3e</id>
<updated>2013-02-18T01:04:13Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
&#010;    [ https://jira.codehaus.org/browse/CONTINUUM-2703?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=319853#comment-319853&#010;] &#010;&#010;Brett Porter commented on CONTINUUM-2703:&#010;-----------------------------------------&#010;&#010;Reduced the level to WARN, but that could be reverted if using a more recent version of Redback&#010;(applied to both 1.3-M3-SNAPSHOT and Redback trunk)&#010;                &#010;&gt; reduce logging from RbacAuthorizer&#010;&gt; ----------------------------------&#010;&gt;&#010;&gt;                 Key: CONTINUUM-2703&#010;&gt;                 URL: https://jira.codehaus.org/browse/CONTINUUM-2703&#010;&gt;             Project: Continuum&#010;&gt;          Issue Type: Bug&#010;&gt;    Affects Versions: 1.4.1&#010;&gt;            Reporter: Brett Porter&#010;&gt;            Assignee: Brett Porter&#010;&gt;            Priority: Minor&#010;&gt;             Fix For: 1.4.2&#010;&gt;&#010;&gt;&#010;&gt; When attempting to resolve permissions, there are several trace statements logged at&#010;info level:&#010;&gt; * permission map does not contain operation&#010;&gt; * no permission found for operation&#010;&gt; These were changed to debug level on redback trunk, and should be the same in Continuum&#010;as well.&#010;&#010;--&#010;This message is automatically generated by JIRA.&#010;If you think it was sent incorrectly, please contact your JIRA administrators: https://jira.codehaus.org/secure/ContactAdministrators!default.jspa&#010;For more information on JIRA, see: http://www.atlassian.com/software/jira&#010;&#010;        &#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] (CONTINUUM-2703) reduce logging from RbacAuthorizer</title>
<author><name>&quot;Brett Porter (JIRA)&quot; &lt;jira@codehaus.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/continuum-issues/201302.mbox/%3c2066423854.45238.1361149334108.JavaMail.j2ee-jira@codehaus01.managed.contegix.com%3e"/>
<id>urn:uuid:%3c2066423854-45238-1361149334108-JavaMail-j2ee-jira@codehaus01-managed-contegix-com%3e</id>
<updated>2013-02-18T01:02:13Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Brett Porter created CONTINUUM-2703:&#010;---------------------------------------&#010;&#010;             Summary: reduce logging from RbacAuthorizer&#010;                 Key: CONTINUUM-2703&#010;                 URL: https://jira.codehaus.org/browse/CONTINUUM-2703&#010;             Project: Continuum&#010;          Issue Type: Bug&#010;    Affects Versions: 1.4.1&#010;            Reporter: Brett Porter&#010;            Priority: Minor&#010;&#010;&#010;When attempting to resolve permissions, there are several trace statements logged at info&#010;level:&#010;* permission map does not contain operation&#010;* no permission found for operation&#010;&#010;These were changed to debug level on redback trunk, and should be the same in Continuum as&#010;well.&#010;&#010;--&#010;This message is automatically generated by JIRA.&#010;If you think it was sent incorrectly, please contact your JIRA administrators: https://jira.codehaus.org/secure/ContactAdministrators!default.jspa&#010;For more information on JIRA, see: http://www.atlassian.com/software/jira&#010;&#010;        &#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] (CONTINUUM-2085) Project name is changed when run a build in a child project</title>
<author><name>&quot;Brett Porter (JIRA)&quot; &lt;jira@codehaus.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/continuum-issues/201302.mbox/%3c41778965.41325.1360222873405.JavaMail.j2ee-jira@codehaus01.managed.contegix.com%3e"/>
<id>urn:uuid:%3c41778965-41325-1360222873405-JavaMail-j2ee-jira@codehaus01-managed-contegix-com%3e</id>
<updated>2013-02-07T07:41:13Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
&#010;     [ https://jira.codehaus.org/browse/CONTINUUM-2085?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel&#010;]&#010;&#010;Brett Porter closed CONTINUUM-2085.&#010;-----------------------------------&#010;&#010;    Resolution: Duplicate&#010;    &#010;&gt; Project name is changed when run a build in a child project&#010;&gt; -----------------------------------------------------------&#010;&gt;&#010;&gt;                 Key: CONTINUUM-2085&#010;&gt;                 URL: https://jira.codehaus.org/browse/CONTINUUM-2085&#010;&gt;             Project: Continuum&#010;&gt;          Issue Type: Bug&#010;&gt;    Affects Versions: 1.3.1 (Alpha)&#010;&gt;         Environment: All environments&#010;&gt;            Reporter: Antonio Manuel Muñiz Martín&#010;&gt;            Priority: Minor&#010;&gt;              Labels: backlog-to-cleanup&#010;&gt;         Attachments: build-definition.png&#010;&gt;&#010;&gt;&#010;&gt; With a simple multimodule project like:&#010;&gt; project&#010;&gt; -- pom.xml&#010;&gt; -- child1&#010;&gt;     --pom.xml&#010;&gt; -- child2&#010;&gt;     --pom.xml&#010;&gt; If exists a build that acts in a child project (in "Build file input" appears "child1/pom.xml"),&#010;when this build is throwed the name of the project is changed, the new name is the child name.&#010;&gt; (I have attached an image to show it).&#010;&#010;--&#010;This message is automatically generated by JIRA.&#010;If you think it was sent incorrectly, please contact your JIRA administrators: https://jira.codehaus.org/secure/ContactAdministrators!default.jspa&#010;For more information on JIRA, see: http://www.atlassian.com/software/jira&#010;&#010;       &#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] (CONTINUUM-2465) Project Name gets reset when build occurs</title>
<author><name>&quot;Brett Porter (JIRA)&quot; &lt;jira@codehaus.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/continuum-issues/201302.mbox/%3c1348027222.41322.1360222753321.JavaMail.j2ee-jira@codehaus01.managed.contegix.com%3e"/>
<id>urn:uuid:%3c1348027222-41322-1360222753321-JavaMail-j2ee-jira@codehaus01-managed-contegix-com%3e</id>
<updated>2013-02-07T07:39:13Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
&#010;     [ https://jira.codehaus.org/browse/CONTINUUM-2465?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel&#010;]&#010;&#010;Brett Porter closed CONTINUUM-2465.&#010;-----------------------------------&#010;&#010;    Resolution: Duplicate&#010;      Assignee: Brett Porter&#010;&#010;In 1.4.1, build definitions can now control whether they update project information from SCM.&#010;                &#010;&gt; Project Name gets reset when build occurs&#010;&gt; -----------------------------------------&#010;&gt;&#010;&gt;                 Key: CONTINUUM-2465&#010;&gt;                 URL: https://jira.codehaus.org/browse/CONTINUUM-2465&#010;&gt;             Project: Continuum&#010;&gt;          Issue Type: Bug&#010;&gt;         Environment: Version: 1.3.4-SNAPSHOT&#010;&gt; Build Number: &#009;790494&#010;&gt;            Reporter: SebbASF&#010;&gt;            Assignee: Brett Porter&#010;&gt;              Labels: backlog-to-cleanup&#010;&gt;&#010;&gt; The Project Information screen allows one to change the project name.&#010;&gt; This is useful for e.g. Apache Commons, which has two versions of Lang currently.&#010;&gt; However, when the project is built, the project name is reset to the original.&#010;&gt; If the name can be changed on the Info screen, then surely changes should be retained?&#010;&#010;--&#010;This message is automatically generated by JIRA.&#010;If you think it was sent incorrectly, please contact your JIRA administrators: https://jira.codehaus.org/secure/ContactAdministrators!default.jspa&#010;For more information on JIRA, see: http://www.atlassian.com/software/jira&#010;&#010;        &#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] (CONTINUUM-2702) Cannot add an argument to remove a profile ( -P!profile)</title>
<author><name>&quot;Brett Porter (JIRA)&quot; &lt;jira@codehaus.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/continuum-issues/201302.mbox/%3c1963039687.40745.1360069753887.JavaMail.j2ee-jira@codehaus01.managed.contegix.com%3e"/>
<id>urn:uuid:%3c1963039687-40745-1360069753887-JavaMail-j2ee-jira@codehaus01-managed-contegix-com%3e</id>
<updated>2013-02-05T13:09:13Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
&#010;    [ https://jira.codehaus.org/browse/CONTINUUM-2702?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=318703#comment-318703&#010;] &#010;&#010;Brett Porter commented on CONTINUUM-2702:&#010;-----------------------------------------&#010;&#010;Thanks for reporting this, some of the validations are certainly too aggressive. Do you mind&#010;submitting this fix in patch format, with tests to verify it to ensure that it is not lost&#010;in future? You'll find examples of other validations rules in the projects mentioned and continuum-webapp-test&#010;                &#010;&gt; Cannot add an argument to remove a profile ( -P!profile) &#010;&gt; ---------------------------------------------------------&#010;&gt;&#010;&gt;                 Key: CONTINUUM-2702&#010;&gt;                 URL: https://jira.codehaus.org/browse/CONTINUUM-2702&#010;&gt;             Project: Continuum&#010;&gt;          Issue Type: Bug&#010;&gt;          Components: Web interface, XMLRPC Interface&#010;&gt;    Affects Versions: 1.4.1&#010;&gt;         Environment: All&#010;&gt;            Reporter: edward grey&#010;&gt;             Fix For: 1.4.2&#010;&gt;&#010;&gt;&#010;&gt; I've a maven profile 'dev' in my project for local configuration. &#010;&gt; When I build my project, I want to remove the dev profile. maven provides the -P!dev&#010;command. In continuum version 1.3.4, adding this attribute was OK.&#010;&gt; In v1.4.1, there is an error ('!' detected as invalid character). &#010;&gt; To fix this, we should add '!' in the list of accepted character in 3 files :&#010;&gt; continuum/trunk/continuum-webapp/src/main/resources/org/apache/maven/continuum/web/action/BuildDefinitionAction-saveBuildDefinition-validation.xml&#010;&gt; continuum/trunk/continuum-webapp/src/main/resources/org/apache/maven/continuum/web/action/admin/BuildDefinitionTemplateAction-saveBuildDefinitionAsTemplate-validation.xml&#010;&gt; continuum/trunk/continuum-xmlrpc/continuum-xmlrpc-server/src/main/java/org/apache/maven/continuum/xmlrpc/server/ContinuumServiceImpl.java&#010;&gt; In this 3 files, the argument validation pattern should accept '!'.&#010;&#010;--&#010;This message is automatically generated by JIRA.&#010;If you think it was sent incorrectly, please contact your JIRA administrators: https://jira.codehaus.org/secure/ContactAdministrators!default.jspa&#010;For more information on JIRA, see: http://www.atlassian.com/software/jira&#010;&#010;        &#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] (CONTINUUM-2702) Cannot add an argument to remove a profile ( -P!profile)</title>
<author><name>&quot;Brett Porter (JIRA)&quot; &lt;jira@codehaus.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/continuum-issues/201302.mbox/%3c1908695980.40747.1360069753913.JavaMail.j2ee-jira@codehaus01.managed.contegix.com%3e"/>
<id>urn:uuid:%3c1908695980-40747-1360069753913-JavaMail-j2ee-jira@codehaus01-managed-contegix-com%3e</id>
<updated>2013-02-05T13:09:13Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
&#010;     [ https://jira.codehaus.org/browse/CONTINUUM-2702?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel&#010;]&#010;&#010;Brett Porter updated CONTINUUM-2702:&#010;------------------------------------&#010;&#010;    Fix Version/s: 1.4.2&#010;    &#010;&gt; Cannot add an argument to remove a profile ( -P!profile) &#010;&gt; ---------------------------------------------------------&#010;&gt;&#010;&gt;                 Key: CONTINUUM-2702&#010;&gt;                 URL: https://jira.codehaus.org/browse/CONTINUUM-2702&#010;&gt;             Project: Continuum&#010;&gt;          Issue Type: Bug&#010;&gt;          Components: Web interface, XMLRPC Interface&#010;&gt;    Affects Versions: 1.4.1&#010;&gt;         Environment: All&#010;&gt;            Reporter: edward grey&#010;&gt;             Fix For: 1.4.2&#010;&gt;&#010;&gt;&#010;&gt; I've a maven profile 'dev' in my project for local configuration. &#010;&gt; When I build my project, I want to remove the dev profile. maven provides the -P!dev&#010;command. In continuum version 1.3.4, adding this attribute was OK.&#010;&gt; In v1.4.1, there is an error ('!' detected as invalid character). &#010;&gt; To fix this, we should add '!' in the list of accepted character in 3 files :&#010;&gt; continuum/trunk/continuum-webapp/src/main/resources/org/apache/maven/continuum/web/action/BuildDefinitionAction-saveBuildDefinition-validation.xml&#010;&gt; continuum/trunk/continuum-webapp/src/main/resources/org/apache/maven/continuum/web/action/admin/BuildDefinitionTemplateAction-saveBuildDefinitionAsTemplate-validation.xml&#010;&gt; continuum/trunk/continuum-xmlrpc/continuum-xmlrpc-server/src/main/java/org/apache/maven/continuum/xmlrpc/server/ContinuumServiceImpl.java&#010;&gt; In this 3 files, the argument validation pattern should accept '!'.&#010;&#010;--&#010;This message is automatically generated by JIRA.&#010;If you think it was sent incorrectly, please contact your JIRA administrators: https://jira.codehaus.org/secure/ContactAdministrators!default.jspa&#010;For more information on JIRA, see: http://www.atlassian.com/software/jira&#010;&#010;        &#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] (CONTINUUM-2702) Cannot add an argument to remove a profile ( -P!profile)</title>
<author><name>&quot;edward grey (JIRA)&quot; &lt;jira@codehaus.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/continuum-issues/201301.mbox/%3c500304586.38659.1359619393256.JavaMail.j2ee-jira@codehaus01.managed.contegix.com%3e"/>
<id>urn:uuid:%3c500304586-38659-1359619393256-JavaMail-j2ee-jira@codehaus01-managed-contegix-com%3e</id>
<updated>2013-01-31T08:03:13Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
edward grey created CONTINUUM-2702:&#010;--------------------------------------&#010;&#010;             Summary: Cannot add an argument to remove a profile ( -P!profile) &#010;                 Key: CONTINUUM-2702&#010;                 URL: https://jira.codehaus.org/browse/CONTINUUM-2702&#010;             Project: Continuum&#010;          Issue Type: Bug&#010;          Components: Web interface, XMLRPC Interface&#010;    Affects Versions: 1.4.1&#010;         Environment: All&#010;            Reporter: edward grey&#010;&#010;&#010;I've a maven profile 'dev' in my project for local configuration. &#010;When I build my project, I want to remove the dev profile. maven provides the -P!dev command.&#010;In continuum version 1.3.4, adding this attribute was OK.&#010;&#010;In v1.4.1, there is an error ('!' detected as invalid character). &#010;&#010;To fix this, we should add '!' in the list of accepted character in 3 files :&#010;continuum/trunk/continuum-webapp/src/main/resources/org/apache/maven/continuum/web/action/BuildDefinitionAction-saveBuildDefinition-validation.xml&#010;&#010;continuum/trunk/continuum-webapp/src/main/resources/org/apache/maven/continuum/web/action/admin/BuildDefinitionTemplateAction-saveBuildDefinitionAsTemplate-validation.xml&#010;&#010;continuum/trunk/continuum-xmlrpc/continuum-xmlrpc-server/src/main/java/org/apache/maven/continuum/xmlrpc/server/ContinuumServiceImpl.java&#010;&#010;&#010;In this 3 files, the argument validation pattern should accept '!'.&#010;&#010;&#010;--&#010;This message is automatically generated by JIRA.&#010;If you think it was sent incorrectly, please contact your JIRA administrators: https://jira.codehaus.org/secure/ContactAdministrators!default.jspa&#010;For more information on JIRA, see: http://www.atlassian.com/software/jira&#010;&#010;        &#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] (CONTINUUM-2701) Legacy projects with ampersand lack permission after upgrade</title>
<author><name>&quot;Brett Porter (JIRA)&quot; &lt;jira@codehaus.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/continuum-issues/201301.mbox/%3c339137610.35841.1359000433263.JavaMail.j2ee-jira@codehaus01.managed.contegix.com%3e"/>
<id>urn:uuid:%3c339137610-35841-1359000433263-JavaMail-j2ee-jira@codehaus01-managed-contegix-com%3e</id>
<updated>2013-01-24T04:07:13Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
&#010;    [ https://jira.codehaus.org/browse/CONTINUUM-2701?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=317908#comment-317908&#010;] &#010;&#010;Brett Porter commented on CONTINUUM-2701:&#010;-----------------------------------------&#010;&#010;Thanks for the report - this certainly shouldn't happen. &#010;                &#010;&gt; Legacy projects with ampersand lack permission after upgrade&#010;&gt; ------------------------------------------------------------&#010;&gt;&#010;&gt;                 Key: CONTINUUM-2701&#010;&gt;                 URL: https://jira.codehaus.org/browse/CONTINUUM-2701&#010;&gt;             Project: Continuum&#010;&gt;          Issue Type: Bug&#010;&gt;    Affects Versions: 1.4.1&#010;&gt;            Reporter: Philippe Busque&#010;&gt;&#010;&gt; I upgraded Continuum from 1.3.6 to 1.4.1&#010;&gt; Some of my projets had ampersand in their name. In 1.3.X, this was allowed.&#010;&gt; Now in 1.4.1, the interface block you from creating project with ampersand in their name.&#010;However, for every project with ampersand already in their name, those project are locked&#010;out.&#010;&gt; When opening the project, the following message is displayed :&#010;&gt; Authorization Error&#010;&gt; You are not authorized to access this page. Please contact your administrator to be granted&#010;the appropriate permissions.&#010;&gt; In the logs, the following trace is displayed:&#010;&gt;  INFO  org.codehaus.plexus.redback.authorization.rbac.RbacAuthorizer  - no permission&#010;found for operation continuum-view-group resource Questions &amp;amp; Answers&#010;&#010;--&#010;This message is automatically generated by JIRA.&#010;If you think it was sent incorrectly, please contact your JIRA administrators: https://jira.codehaus.org/secure/ContactAdministrators!default.jspa&#010;For more information on JIRA, see: http://www.atlassian.com/software/jira&#010;&#010;        &#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] (CONTINUUM-2701) Legacy projects with ampersand lack permission after upgrade</title>
<author><name>&quot;Philippe Busque (JIRA)&quot; &lt;jira@codehaus.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/continuum-issues/201301.mbox/%3c1248940177.32611.1358361733252.JavaMail.j2ee-jira@codehaus01.managed.contegix.com%3e"/>
<id>urn:uuid:%3c1248940177-32611-1358361733252-JavaMail-j2ee-jira@codehaus01-managed-contegix-com%3e</id>
<updated>2013-01-16T18:42:13Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Philippe Busque created CONTINUUM-2701:&#010;------------------------------------------&#010;&#010;             Summary: Legacy projects with ampersand lack permission after upgrade&#010;                 Key: CONTINUUM-2701&#010;                 URL: https://jira.codehaus.org/browse/CONTINUUM-2701&#010;             Project: Continuum&#010;          Issue Type: Bug&#010;    Affects Versions: 1.4.1&#010;            Reporter: Philippe Busque&#010;&#010;&#010;I upgraded Continuum from 1.3.6 to 1.4.1&#010;Some of my projets had ampersand in their name. In 1.3.X, this was allowed.&#010;&#010;Now in 1.4.1, the interface block you from creating project with ampersand in their name.&#010;However, for every project with ampersand already in their name, those project are locked&#010;out.&#010;&#010;When opening the project, the following message is displayed :&#010;Authorization Error&#010;You are not authorized to access this page. Please contact your administrator to be granted&#010;the appropriate permissions.&#010;&#010;In the logs, the following trace is displayed:&#010; INFO  org.codehaus.plexus.redback.authorization.rbac.RbacAuthorizer  - no permission found&#010;for operation continuum-view-group resource Questions &amp;amp; Answers&#010;&#010;&#010;&#010;--&#010;This message is automatically generated by JIRA.&#010;If you think it was sent incorrectly, please contact your JIRA administrators: https://jira.codehaus.org/secure/ContactAdministrators!default.jspa&#010;For more information on JIRA, see: http://www.atlassian.com/software/jira&#010;&#010;        &#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] (CONTINUUM-2700) SystemConfiguration in XMLRPC API is not populated from continuum.xml contents</title>
<author><name>&quot;Brett Porter (JIRA)&quot; &lt;jira@codehaus.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/continuum-issues/201301.mbox/%3c480547098.31723.1358165593250.JavaMail.j2ee-jira@codehaus01.managed.contegix.com%3e"/>
<id>urn:uuid:%3c480547098-31723-1358165593250-JavaMail-j2ee-jira@codehaus01-managed-contegix-com%3e</id>
<updated>2013-01-14T12:13:13Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Brett Porter created CONTINUUM-2700:&#010;---------------------------------------&#010;&#010;             Summary: SystemConfiguration in XMLRPC API is not populated from continuum.xml&#010;contents&#010;                 Key: CONTINUUM-2700&#010;                 URL: https://jira.codehaus.org/browse/CONTINUUM-2700&#010;             Project: Continuum&#010;          Issue Type: Bug&#010;          Components: XMLRPC Interface&#010;    Affects Versions: 1.4.1&#010;            Reporter: Brett Porter&#010;&#010;&#010;The getSystemConfiguration() call only looks at the DAO, which is no longer populated with&#010;the contents stored in the file. It should return the appropriate fallback for the file and&#010;default.&#010;&#010;--&#010;This message is automatically generated by JIRA.&#010;If you think it was sent incorrectly, please contact your JIRA administrators: https://jira.codehaus.org/secure/ContactAdministrators!default.jspa&#010;For more information on JIRA, see: http://www.atlassian.com/software/jira&#010;&#010;        &#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] (CONTINUUM-2699) Document installing Continuum as a Mac OS X service with launchd</title>
<author><name>&quot;Brett Porter (JIRA)&quot; &lt;jira@codehaus.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/continuum-issues/201301.mbox/%3c1690683690.30876.1357880113274.JavaMail.j2ee-jira@codehaus01.managed.contegix.com%3e"/>
<id>urn:uuid:%3c1690683690-30876-1357880113274-JavaMail-j2ee-jira@codehaus01-managed-contegix-com%3e</id>
<updated>2013-01-11T04:55:13Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
&#010;     [ https://jira.codehaus.org/browse/CONTINUUM-2699?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel&#010;]&#010;&#010;Brett Porter closed CONTINUUM-2699.&#010;-----------------------------------&#010;&#010;       Resolution: Fixed&#010;    Fix Version/s: 1.4.2&#010;         Assignee: Brett Porter&#010;    &#010;&gt; Document installing Continuum as a Mac OS X service with launchd&#010;&gt; ----------------------------------------------------------------&#010;&gt;&#010;&gt;                 Key: CONTINUUM-2699&#010;&gt;                 URL: https://jira.codehaus.org/browse/CONTINUUM-2699&#010;&gt;             Project: Continuum&#010;&gt;          Issue Type: Bug&#010;&gt;          Components: Documentation&#010;&gt;            Reporter: Brett Porter&#010;&gt;            Assignee: Brett Porter&#010;&gt;             Fix For: 1.4.2&#010;&gt;&#010;&gt;&#010;&#010;&#010;--&#010;This message is automatically generated by JIRA.&#010;If you think it was sent incorrectly, please contact your JIRA administrators: https://jira.codehaus.org/secure/ContactAdministrators!default.jspa&#010;For more information on JIRA, see: http://www.atlassian.com/software/jira&#010;&#010;        &#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] (CONTINUUM-2699) Document installing Continuum as a Mac OS X service with launchd</title>
<author><name>&quot;Brett Porter (JIRA)&quot; &lt;jira@codehaus.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/continuum-issues/201301.mbox/%3c1266516960.30875.1357880113257.JavaMail.j2ee-jira@codehaus01.managed.contegix.com%3e"/>
<id>urn:uuid:%3c1266516960-30875-1357880113257-JavaMail-j2ee-jira@codehaus01-managed-contegix-com%3e</id>
<updated>2013-01-11T04:55:13Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Brett Porter created CONTINUUM-2699:&#010;---------------------------------------&#010;&#010;             Summary: Document installing Continuum as a Mac OS X service with launchd&#010;                 Key: CONTINUUM-2699&#010;                 URL: https://jira.codehaus.org/browse/CONTINUUM-2699&#010;             Project: Continuum&#010;          Issue Type: Bug&#010;          Components: Documentation&#010;            Reporter: Brett Porter&#010;&#010;&#010;&#010;&#010;--&#010;This message is automatically generated by JIRA.&#010;If you think it was sent incorrectly, please contact your JIRA administrators: https://jira.codehaus.org/secure/ContactAdministrators!default.jspa&#010;For more information on JIRA, see: http://www.atlassian.com/software/jira&#010;&#010;        &#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] (CONTINUUM-2698) Delete obsolete download files</title>
<author><name>&quot;Brett Porter (JIRA)&quot; &lt;jira@codehaus.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/continuum-issues/201301.mbox/%3c847391620.30678.1357826653295.JavaMail.j2ee-jira@codehaus01.managed.contegix.com%3e"/>
<id>urn:uuid:%3c847391620-30678-1357826653295-JavaMail-j2ee-jira@codehaus01-managed-contegix-com%3e</id>
<updated>2013-01-10T14:04:13Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
&#010;     [ https://jira.codehaus.org/browse/CONTINUUM-2698?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel&#010;]&#010;&#010;Brett Porter closed CONTINUUM-2698.&#010;-----------------------------------&#010;&#010;    Resolution: Fixed&#010;      Assignee: Brett Porter&#010;&#010;Removed the contents, but don't have permissions to fix the directory or the archives. Please&#010;file such requests in the INFRA tracker in future...&#010;                &#010;&gt; Delete obsolete download files&#010;&gt; ------------------------------&#010;&gt;&#010;&gt;                 Key: CONTINUUM-2698&#010;&gt;                 URL: https://jira.codehaus.org/browse/CONTINUUM-2698&#010;&gt;             Project: Continuum&#010;&gt;          Issue Type: Task&#010;&gt;            Reporter: SebbASF&#010;&gt;            Assignee: Brett Porter&#010;&gt;&#010;&gt; There is still a directory structure on minotaur under &#010;&gt; /www/www.apache.org/dist/continuum-prepubsub&#010;&gt; This entire directory tree should now be deleted please.&#010;&#010;--&#010;This message is automatically generated by JIRA.&#010;If you think it was sent incorrectly, please contact your JIRA administrators: https://jira.codehaus.org/secure/ContactAdministrators!default.jspa&#010;For more information on JIRA, see: http://www.atlassian.com/software/jira&#010;&#010;        &#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] (CONTINUUM-2698) Delete obsolete download files</title>
<author><name>&quot;Brett Porter (JIRA)&quot; &lt;jira@codehaus.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/continuum-issues/201301.mbox/%3c627786500.30662.1357826055494.JavaMail.j2ee-jira@codehaus01.managed.contegix.com%3e"/>
<id>urn:uuid:%3c627786500-30662-1357826055494-JavaMail-j2ee-jira@codehaus01-managed-contegix-com%3e</id>
<updated>2013-01-10T13:54:15Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
&#010;    [ https://jira.codehaus.org/browse/CONTINUUM-2698?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=317091#comment-317091&#010;] &#010;&#010;Brett Porter commented on CONTINUUM-2698:&#010;-----------------------------------------&#010;&#010;I'll check with infra why it's there&#010;                &#010;&gt; Delete obsolete download files&#010;&gt; ------------------------------&#010;&gt;&#010;&gt;                 Key: CONTINUUM-2698&#010;&gt;                 URL: https://jira.codehaus.org/browse/CONTINUUM-2698&#010;&gt;             Project: Continuum&#010;&gt;          Issue Type: Task&#010;&gt;            Reporter: SebbASF&#010;&gt;&#010;&gt; There is still a directory structure on minotaur under &#010;&gt; /www/www.apache.org/dist/continuum-prepubsub&#010;&gt; This entire directory tree should now be deleted please.&#010;&#010;--&#010;This message is automatically generated by JIRA.&#010;If you think it was sent incorrectly, please contact your JIRA administrators: https://jira.codehaus.org/secure/ContactAdministrators!default.jspa&#010;For more information on JIRA, see: http://www.atlassian.com/software/jira&#010;&#010;        &#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] (CONTINUUM-2698) Delete obsolete download files</title>
<author><name>&quot;SebbASF (JIRA)&quot; &lt;jira@codehaus.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/continuum-issues/201301.mbox/%3c1508600886.30081.1357687453278.JavaMail.j2ee-jira@codehaus01.managed.contegix.com%3e"/>
<id>urn:uuid:%3c1508600886-30081-1357687453278-JavaMail-j2ee-jira@codehaus01-managed-contegix-com%3e</id>
<updated>2013-01-08T23:24:13Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
SebbASF created CONTINUUM-2698:&#010;----------------------------------&#010;&#010;             Summary: Delete obsolete download files&#010;                 Key: CONTINUUM-2698&#010;                 URL: https://jira.codehaus.org/browse/CONTINUUM-2698&#010;             Project: Continuum&#010;          Issue Type: Task&#010;            Reporter: SebbASF&#010;&#010;&#010;There is still a directory structure on minotaur under &#010;&#010;/www/www.apache.org/dist/continuum-prepubsub&#010;&#010;This entire directory tree should now be deleted please.&#010;&#010;--&#010;This message is automatically generated by JIRA.&#010;If you think it was sent incorrectly, please contact your JIRA administrators: https://jira.codehaus.org/secure/ContactAdministrators!default.jspa&#010;For more information on JIRA, see: http://www.atlassian.com/software/jira&#010;&#010;        &#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] (CONTINUUM-2609) Unable to delete a project, getting an invalid group id</title>
<author><name>&quot;Brett Porter (JIRA)&quot; &lt;jira@codehaus.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/continuum-issues/201301.mbox/%3c325268746.27786.1357282993465.JavaMail.j2ee-jira@codehaus01.managed.contegix.com%3e"/>
<id>urn:uuid:%3c325268746-27786-1357282993465-JavaMail-j2ee-jira@codehaus01-managed-contegix-com%3e</id>
<updated>2013-01-04T07:03:13Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
&#010;     [ https://jira.codehaus.org/browse/CONTINUUM-2609?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel&#010;]&#010;&#010;Brett Porter updated CONTINUUM-2609:&#010;------------------------------------&#010;&#010;    Fix Version/s:     (was: 1.4.1)&#010;    &#010;&gt; Unable to delete a project, getting an invalid group id&#010;&gt; -------------------------------------------------------&#010;&gt;&#010;&gt;                 Key: CONTINUUM-2609&#010;&gt;                 URL: https://jira.codehaus.org/browse/CONTINUUM-2609&#010;&gt;             Project: Continuum&#010;&gt;          Issue Type: Bug&#010;&gt;          Components: Core system&#010;&gt;    Affects Versions: 1.4.1&#010;&gt;            Reporter: Maria Catherine Tan&#010;&gt;            Assignee: Maria Catherine Tan&#010;&gt;&#010;&gt; From the continuum project group page, select a project and then click "Delete Project(s)"&#010;button&#010;&gt; org.apache.maven.continuum.ContinuumException: invalid group id&#010;&gt; &#009;at org.apache.maven.continuum.DefaultContinuum.getProjectGroup(DefaultContinuum.java:340)&#010;&gt; &#009;at org.apache.maven.continuum.web.action.ProjectsListAction.getProjectGroupName(ProjectsListAction.java:200)&#010;&gt; &#009;at org.apache.maven.continuum.web.action.ProjectsListAction.remove(ProjectsListAction.java:91)&#010;&gt; &#009;at org.apache.maven.continuum.web.action.ProjectsListAction.execute(ProjectsListAction.java:76)&#010;&gt; &#009;at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)&#010;&gt; &#009;at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)&#010;&gt; &#009;at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)&#010;&gt; &#009;at java.lang.reflect.Method.invoke(Method.java:597)&#010;&gt; &#009;at com.opensymphony.xwork2.DefaultActionInvocation.invokeAction(DefaultActionInvocation.java:440)&#010;&gt; &#009;at com.opensymphony.xwork2.DefaultActionInvocation.invokeActionOnly(DefaultActionInvocation.java:279)&#010;&gt; &#009;at com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:242)&#010;&gt; &#009;at org.apache.struts2.interceptor.MessageStoreInterceptor.intercept(MessageStoreInterceptor.java:204)&#010;&gt; &#009;at com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:236)&#010;&gt; &#009;at com.opensymphony.xwork2.interceptor.DefaultWorkflowInterceptor.doIntercept(DefaultWorkflowInterceptor.java:163)&#010;&gt; &#009;at com.opensymphony.xwork2.interceptor.MethodFilterInterceptor.intercept(MethodFilterInterceptor.java:87)&#010;&gt; &#009;at com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:236)&#010;&gt; &#009;at com.opensymphony.xwork2.validator.ValidationInterceptor.doIntercept(ValidationInterceptor.java:249)&#010;&gt; &#009;at org.apache.struts2.interceptor.validation.AnnotationValidationInterceptor.doIntercept(AnnotationValidationInterceptor.java:68)&#010;&gt; &#009;at com.opensymphony.xwork2.interceptor.MethodFilterInterceptor.intercept(MethodFilterInterceptor.java:87)&#010;&gt; &#009;at com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:236)&#010;&gt; &#009;at org.apache.maven.continuum.web.interceptor.ForceContinuumConfigurationInterceptor.intercept(ForceContinuumConfigurationInterceptor.java:70)&#010;&gt; &#009;at com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:236)&#010;&gt; &#009;at org.codehaus.plexus.redback.struts2.interceptor.PolicyEnforcementInterceptor.intercept(PolicyEnforcementInterceptor.java:159)&#010;&gt; &#009;at com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:236)&#010;&gt; &#009;at org.codehaus.plexus.redback.struts2.interceptor.SecureActionInterceptor.intercept(SecureActionInterceptor.java:173)&#010;&gt; &#009;at com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:236)&#010;&gt; &#009;at com.opensymphony.xwork2.interceptor.DefaultWorkflowInterceptor.doIntercept(DefaultWorkflowInterceptor.java:163)&#010;&gt; &#009;at com.opensymphony.xwork2.interceptor.MethodFilterInterceptor.intercept(MethodFilterInterceptor.java:87)&#010;&gt; &#009;at com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:236)&#010;&gt; &#009;at com.opensymphony.xwork2.validator.ValidationInterceptor.doIntercept(ValidationInterceptor.java:249)&#010;&gt; &#009;at org.apache.struts2.interceptor.validation.AnnotationValidationInterceptor.doIntercept(AnnotationValidationInterceptor.java:68)&#010;&gt; &#009;at com.opensymphony.xwork2.interceptor.MethodFilterInterceptor.intercept(MethodFilterInterceptor.java:87)&#010;&gt; &#009;at com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:236)&#010;&gt; &#009;at com.opensymphony.xwork2.interceptor.ConversionErrorInterceptor.intercept(ConversionErrorInterceptor.java:122)&#010;&gt; &#009;at com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:236)&#010;&gt; &#009;at com.opensymphony.xwork2.interceptor.ParametersInterceptor.doIntercept(ParametersInterceptor.java:195)&#010;&gt; &#009;at com.opensymphony.xwork2.interceptor.MethodFilterInterceptor.intercept(MethodFilterInterceptor.java:87)&#010;&gt; &#009;at com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:236)&#010;&gt; &#009;at com.opensymphony.xwork2.interceptor.ParametersInterceptor.doIntercept(ParametersInterceptor.java:195)&#010;&gt; &#009;at com.opensymphony.xwork2.interceptor.MethodFilterInterceptor.intercept(MethodFilterInterceptor.java:87)&#010;&gt; &#009;at com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:236)&#010;&gt; &#009;at com.opensymphony.xwork2.interceptor.StaticParametersInterceptor.intercept(StaticParametersInterceptor.java:148)&#010;&gt; &#009;at com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:236)&#010;&gt; &#009;at org.apache.struts2.interceptor.CheckboxInterceptor.intercept(CheckboxInterceptor.java:93)&#010;&gt; &#009;at com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:236)&#010;&gt; &#009;at org.apache.struts2.interceptor.FileUploadInterceptor.intercept(FileUploadInterceptor.java:235)&#010;&gt; &#009;at com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:236)&#010;&gt; &#009;at com.opensymphony.xwork2.interceptor.ModelDrivenInterceptor.intercept(ModelDrivenInterceptor.java:89)&#010;&gt; &#009;at com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:236)&#010;&gt; &#009;at com.opensymphony.xwork2.interceptor.ScopedModelDrivenInterceptor.intercept(ScopedModelDrivenInterceptor.java:128)&#010;&gt; &#009;at com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:236)&#010;&gt; &#009;at org.apache.struts2.interceptor.ProfilingActivationInterceptor.intercept(ProfilingActivationInterceptor.java:104)&#010;&gt; &#009;at com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:236)&#010;&gt; &#009;at org.apache.struts2.interceptor.debugging.DebuggingInterceptor.intercept(DebuggingInterceptor.java:267)&#010;&gt; &#009;at com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:236)&#010;&gt; &#009;at com.opensymphony.xwork2.interceptor.ChainingInterceptor.intercept(ChainingInterceptor.java:126)&#010;&gt; &#009;at com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:236)&#010;&gt; &#009;at com.opensymphony.xwork2.interceptor.PrepareInterceptor.doIntercept(PrepareInterceptor.java:138)&#010;&gt; &#009;at com.opensymphony.xwork2.interceptor.MethodFilterInterceptor.intercept(MethodFilterInterceptor.java:87)&#010;&gt; &#009;at com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:236)&#010;&gt; &#009;at com.opensymphony.xwork2.interceptor.I18nInterceptor.intercept(I18nInterceptor.java:148)&#010;&gt; &#009;at com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:236)&#010;&gt; &#009;at org.apache.struts2.interceptor.ServletConfigInterceptor.intercept(ServletConfigInterceptor.java:164)&#010;&gt; &#009;at com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:236)&#010;&gt; &#009;at com.opensymphony.xwork2.interceptor.AliasInterceptor.intercept(AliasInterceptor.java:128)&#010;&gt; &#009;at com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:236)&#010;&gt; &#009;at com.opensymphony.xwork2.interceptor.ExceptionMappingInterceptor.intercept(ExceptionMappingInterceptor.java:176)&#010;&gt; &#009;at com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:236)&#010;&gt; &#009;at org.codehaus.plexus.redback.struts2.interceptor.AutoLoginInterceptor.intercept(AutoLoginInterceptor.java:169)&#010;&gt; &#009;at com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:236)&#010;&gt; &#009;at org.codehaus.plexus.redback.struts2.interceptor.ForceAdminUserInterceptor.intercept(ForceAdminUserInterceptor.java:77)&#010;&gt; &#009;at com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:236)&#010;&gt; &#009;at org.codehaus.plexus.redback.struts2.interceptor.EnvironmentCheckInterceptor.intercept(EnvironmentCheckInterceptor.java:97)&#010;&gt; &#009;at com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:236)&#010;&gt; &#009;at org.apache.struts2.impl.StrutsActionProxy.execute(StrutsActionProxy.java:52)&#010;&gt; &#009;at org.apache.struts2.dispatcher.Dispatcher.serviceAction(Dispatcher.java:468)&#010;&gt; &#009;at org.apache.struts2.dispatcher.ng.ExecuteOperations.executeAction(ExecuteOperations.java:77)&#010;&gt; &#009;at org.apache.struts2.dispatcher.ng.filter.StrutsExecuteFilter.doFilter(StrutsExecuteFilter.java:76)&#010;&gt; &#009;at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1148)&#010;&gt; &#009;at com.opensymphony.sitemesh.webapp.SiteMeshFilter.obtainContent(SiteMeshFilter.java:129)&#010;&gt; &#009;at com.opensymphony.sitemesh.webapp.SiteMeshFilter.doFilter(SiteMeshFilter.java:77)&#010;&gt; &#009;at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1148)&#010;&gt; &#009;at org.apache.struts2.dispatcher.ng.filter.StrutsPrepareFilter.doFilter(StrutsPrepareFilter.java:65)&#010;&gt; &#009;at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1148)&#010;&gt; &#009;at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:96)&#010;&gt; &#009;at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:76)&#010;&gt; &#009;at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1148)&#010;&gt; &#009;at org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:387)&#010;&gt; &#009;at org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)&#010;&gt; &#009;at org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:181)&#010;&gt; &#009;at org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:765)&#010;&gt; &#009;at org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:417)&#010;&gt; &#009;at org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:230)&#010;&gt; &#009;at org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)&#010;&gt; &#009;at org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152)&#010;&gt; &#009;at org.mortbay.jetty.Server.handle(Server.java:326)&#010;&gt; &#009;at org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:534)&#010;&gt; &#009;at org.mortbay.jetty.HttpConnection$RequestHandler.content(HttpConnection.java:879)&#010;&gt; &#009;at org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:747)&#010;&gt; &#009;at org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:218)&#010;&gt; &#009;at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:404)&#010;&gt; &#009;at org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:409)&#010;&gt; &#009;at org.mortbay.thread.BoundedThreadPool$PoolThread.run(BoundedThreadPool.java:451)&#010;&gt; Caused by: org.apache.maven.continuum.store.ContinuumObjectNotFoundException: Could not&#010;find object. Type 'org.apache.maven.continuum.model.project.ProjectGroup'. Id: '0'.&#010;&gt; &#009;at org.apache.continuum.dao.AbstractDao.getObjectById(AbstractDao.java:116)&#010;&gt; &#009;at org.apache.continuum.dao.AbstractDao.getObjectById(AbstractDao.java:104)&#010;&gt; &#009;at org.apache.continuum.dao.ProjectGroupDaoImpl.getProjectGroup(ProjectGroupDaoImpl.java:121)&#010;&gt; &#009;at org.apache.maven.continuum.DefaultContinuum.getProjectGroup(DefaultContinuum.java:336)&#010;&gt; &#009;... 102 more&#010;&#010;--&#010;This message is automatically generated by JIRA.&#010;If you think it was sent incorrectly, please contact your JIRA administrators: https://jira.codehaus.org/secure/ContactAdministrators!default.jspa&#010;For more information on JIRA, see: http://www.atlassian.com/software/jira&#010;&#010;        &#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] (CONTINUUM-2552) JDOException when deleting a project</title>
<author><name>&quot;Brett Porter (JIRA)&quot; &lt;jira@codehaus.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/continuum-issues/201301.mbox/%3c2026389663.27783.1357282993373.JavaMail.j2ee-jira@codehaus01.managed.contegix.com%3e"/>
<id>urn:uuid:%3c2026389663-27783-1357282993373-JavaMail-j2ee-jira@codehaus01-managed-contegix-com%3e</id>
<updated>2013-01-04T07:03:13Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
&#010;     [ https://jira.codehaus.org/browse/CONTINUUM-2552?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel&#010;]&#010;&#010;Brett Porter updated CONTINUUM-2552:&#010;------------------------------------&#010;&#010;    Fix Version/s:     (was: 1.4.1)&#010;    &#010;&gt; JDOException when deleting a project&#010;&gt; ------------------------------------&#010;&gt;&#010;&gt;                 Key: CONTINUUM-2552&#010;&gt;                 URL: https://jira.codehaus.org/browse/CONTINUUM-2552&#010;&gt;             Project: Continuum&#010;&gt;          Issue Type: Bug&#010;&gt;          Components: Core system, Database&#010;&gt;    Affects Versions: 1.4.0 (Beta)&#010;&gt;            Reporter: Maria Catherine Tan&#010;&gt;&#010;&gt; We already set the parent to null, cleared project dependency and modified dependencies&#010;of build result but there are times that Continuum is still throwing a JDOException when deleting&#010;a project.&#010;&gt; Maybe setting the build result's project to null before removing the build result might&#010;help.&#010;&gt; Error Occured&#010;&gt; javax.jdo.JDOUserException: One or more instances could not be deleted NestedThrowables:&#010;javax.jdo.JDODataStoreException: Delete request failed: DELETE FROM `PROJECTDEPENDENCY` WHERE&#010;`PROJECTDEPENDENCY_ID`=? NestedThrowables: com.mysql.jdbc.exceptions.MySQLIntegrityConstraintViolationException:&#010;Cannot delete or update a parent row: a foreign key constraint fails (`continuum107`.`PROJECT`,&#010;CONSTRAINT `PROJECT_FK1` FOREIGN KEY (`PARENT_PROJECTDEPENDENCY_ID_OID`) REFERENCES `PROJECTDEPENDENCY`&#010;(`PROJECTDEPENDENCY_ID`)) &#010;&gt; Show/hide Stack Trace&#010;&gt;         javax.jdo.JDOUserException: One or more instances could not be deleted&#010;&gt; &#009;at org.jpox.AbstractPersistenceManager.deletePersistentAll(AbstractPersistenceManager.java:1541)&#010;&gt; &#009;at org.jpox.AbstractPersistenceManager.deletePersistentAll(AbstractPersistenceManager.java:1514)&#010;&gt; &#009;at org.jpox.store.rdbms.scostore.FKListStore.clear(FKListStore.java:1137)&#010;&gt; &#009;at org.jpox.store.mapping.CollectionMapping.deleteDependent(CollectionMapping.java:334)&#010;&gt; &#009;at org.jpox.store.rdbms.table.ClassTable.deleteDependent(ClassTable.java:2651)&#010;&gt; &#009;at org.jpox.store.StoreManager.deleteDependent(StoreManager.java:1076)&#010;&gt; &#009;at org.jpox.state.StateManagerImpl.deletePersistent(StateManagerImpl.java:4405)&#010;&gt; &#009;at org.jpox.AbstractPersistenceManager.internalDeletePersistent(AbstractPersistenceManager.java:1489)&#010;&gt; &#009;at org.jpox.AbstractPersistenceManager.deletePersistent(AbstractPersistenceManager.java:1505)&#010;&gt; &#009;at org.codehaus.plexus.jdo.PlexusJdoUtils.removeObject(PlexusJdoUtils.java:121)&#010;&gt; &#009;at org.apache.continuum.dao.AbstractDao.removeObject(AbstractDao.java:95)&#010;&gt; &#009;at org.apache.continuum.dao.BuildResultDaoImpl.removeBuildResult(BuildResultDaoImpl.java:311)&#010;&gt; &#009;at org.apache.maven.continuum.DefaultContinuum.removeBuildResult(DefaultContinuum.java:1108)&#010;&gt; &#009;at org.apache.maven.continuum.DefaultContinuum.removeProject(DefaultContinuum.java:689)&#010;&gt; &#009;at org.apache.maven.continuum.web.action.DeleteProjectAction.execute(DeleteProjectAction.java:83)&#010;&#010;--&#010;This message is automatically generated by JIRA.&#010;If you think it was sent incorrectly, please contact your JIRA administrators: https://jira.codehaus.org/secure/ContactAdministrators!default.jspa&#010;For more information on JIRA, see: http://www.atlassian.com/software/jira&#010;&#010;        &#010;&#010;
</pre>
</div>
</content>
</entry>
</feed>
