Hi All
I have one question
Suppose if a process gets failed in initallsettings.xaml what will be status of the job in orchestrator?
Is it failed? Faulted? Or Success??
Please help
Hi All
I have one question
Suppose if a process gets failed in initallsettings.xaml what will be status of the job in orchestrator?
Is it failed? Faulted? Or Success??
Please help
Hi @Akshaya89
In config sheet following Value decides if its Faulted or no:
ShouldMarkJobAsFaulted (Must be TRUE or FALSE. If the value is TRUE and an error occurs in Initialization state or the MaxConsecutiveSystemExceptions is reached, the job is marked as Faulted.)
By default its FALSE: So it will not be faulted. It will be Success.
Hope it helps!!
In RE I purposefully made one mistake in InitAllSettings.xaml and in the config file I have default values i.e ShouldMarkJobAsFaulted = False and MaxConsecutiveSystemExceptions = 0
But still in orchestrator the job showed as Faulted.
Can you please explain this?
Hi @Akshaya89
Can you please check if any further exception in end process state as well?
In my view, this would happen if process was unable to stop gracefully when control moved to end process after exception in init.
If end process state throws some exception and it was not handled then it may show faulted.
I don’t see any exception in end process
Check out your config.xlsx file.
As the others mentioned, ShouldMarkJobAsFaulted should be True
@Akshaya89
Can you share the error message shown in job info in the orchestrator?
Hi @Akshaya89
The job status in orches. depends on the ShouldMarkJobAsFaulted setting. If true, the job is faulted;
if false, it may still show as faulted if the process does not stop gracefully.
Happy Automation
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.