You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Environment:
Rundeck 1.4.4-dev connected to Oracle.
The job dispatch "hangs" with no output to the console.
In the catalina.out , the following error appears:
ERROR: Unable to start Job execution: failed to lookup Exception object from job data map: id: 497
java.lang.RuntimeException: failed to lookup Exception object from job data map: id: 497
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
at org.codehaus.groovy.reflection.CachedConstructor.invoke(CachedConstructor.java:77)
at org.codehaus.groovy.reflection.CachedConstructor.doConstructorInvoke(CachedConstructor.java:71)
at org.codehaus.groovy.runtime.callsite.ConstructorSite$ConstructorSiteNoUnwrap.callConstructor(ConstructorSite.java:81)
at org.codehaus.groovy.runtime.callsite.CallSiteArray.defaultCallConstructor(CallSiteArray.java:52)
at org.codehaus.groovy.runtime.callsite.AbstractCallSite.callConstructor(AbstractCallSite.java:190)
at org.codehaus.groovy.runtime.callsite.AbstractCallSite.callConstructor(AbstractCallSite.java:198)
at ExecutionJob.initialize(ExecutionJob.groovy:138)
at ExecutionJob$initialize.callCurrent(Unknown Source)
at ExecutionJob.execute(ExecutionJob.groovy:38)
at org.quartz.core.JobRunShell.run(JobRunShell.java:199)
at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:546)
After discussing with greg,:
There is a race condition when starting a job. the execution is created, but not flushed to the DB when the processing thread starts, so it fails to find it
The text was updated successfully, but these errors were encountered:
Environment:
Rundeck 1.4.4-dev connected to Oracle.
The job dispatch "hangs" with no output to the console.
In the catalina.out , the following error appears:
ERROR: Unable to start Job execution: failed to lookup Exception object from job data map: id: 497
java.lang.RuntimeException: failed to lookup Exception object from job data map: id: 497
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
at org.codehaus.groovy.reflection.CachedConstructor.invoke(CachedConstructor.java:77)
at org.codehaus.groovy.reflection.CachedConstructor.doConstructorInvoke(CachedConstructor.java:71)
at org.codehaus.groovy.runtime.callsite.ConstructorSite$ConstructorSiteNoUnwrap.callConstructor(ConstructorSite.java:81)
at org.codehaus.groovy.runtime.callsite.CallSiteArray.defaultCallConstructor(CallSiteArray.java:52)
at org.codehaus.groovy.runtime.callsite.AbstractCallSite.callConstructor(AbstractCallSite.java:190)
at org.codehaus.groovy.runtime.callsite.AbstractCallSite.callConstructor(AbstractCallSite.java:198)
at ExecutionJob.initialize(ExecutionJob.groovy:138)
at ExecutionJob$initialize.callCurrent(Unknown Source)
at ExecutionJob.execute(ExecutionJob.groovy:38)
at org.quartz.core.JobRunShell.run(JobRunShell.java:199)
at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:546)
After discussing with greg,:
There is a race condition when starting a job. the execution is created, but not flushed to the DB when the processing thread starts, so it fails to find it
The text was updated successfully, but these errors were encountered: