Actions
Adding refine runjob » History » Revision 4
« Previous |
Revision 4/17
(diff)
| Next »
Christopher Irving, 08/02/2011 11:22 AM
Adding refine job¶
Add job type to Agent.¶
After you have added a new refinement job class it needs to be added to the job running agent by editing the file apAgent.py in appionlib.
- Add the name of the module you created to the import statements at the top of the file.
- In the method createJobInst add the new refinment job type to the condition statements.
Ex. elif "newJobType" == jobType: jobInstance = newModuleName.NewRefinementClass(command)
Updated by Christopher Irving over 13 years ago · 4 revisions