We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When executing the following workflow on try.activeeon.com
<?xml version="1.0" encoding="UTF-8"?> <job xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="urn:proactive:jobdescriptor:3.9" xsi:schemaLocation="urn:proactive:jobdescriptor:3.9 http://www.activeeon.com/public_content/schemas/proactive/jobdescriptor/3.9/schedulerjob.xsd" name="SelectionWorkflow" priority="normal" onTaskError="continueJobExecution" maxNumberOfExecution="2" > <taskFlow> <task name="Groovy_Task"> <description> <![CDATA[ The simplest task, ran by a groovy engine. ]]> </description> <selection> <script type="dynamic" > <code language="groovy"> <![CDATA[ hostname = InetAddress.getLocalHost().getHostName() println "Executed on " + hostname selected = ("try.activeeon.com" == hostname) ]]> </code> </script> </selection> <scriptExecutable> <script> <code language="groovy"> <![CDATA[ println "uname -a".execute().text ]]> </code> </script> </scriptExecutable> </task> </taskFlow> </job>
Neither 1) or 2) happens, the output of the script is lost, and the task remains pending forever
The text was updated successfully, but these errors were encountered:
Hello Mario,
thank you for opening the issue.
In your case the server logs would look something like this:
[2018-01-26 22:16:46,687 5-thread-6 INFO o.o.p.r.s.ScriptExecutor] pamr://4097/local__localhost__0_2 : -1317002113 result true [2018-01-26 22:16:46,687 5-thread-6 INFO o.o.p.r.s.ScriptExecutor] pamr://4097/local__localhost__0_2 : -1317002113 output Executed on try.activeeon.com
I cannot see your jobs on try.activeeon.com did you remove them?
Sorry, something went wrong.
No branches or pull requests
When executing the following workflow on try.activeeon.com
Neither 1) or 2) happens, the output of the script is lost, and the task remains pending forever
The text was updated successfully, but these errors were encountered: