Skip to content

Commit

Permalink
HPCC-31494 Avoid spurious follow-on 'failed to run' error
Browse files Browse the repository at this point in the history
Signed-off-by: Gavin Halliday <[email protected]>
  • Loading branch information
ghalliday committed Mar 19, 2024
1 parent 1c441ca commit 02b78f4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ecl/eclagent/eclagentmain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ int main(int argc, const char *argv[])
try
{
ret = eclagent_main(argc, argv);
//Do not return a non-zero error code in containerized mode - otherwise the system will think it failed to run
if (isContainerized())
ret = 0;
}
catch (IException *E)
{
Expand Down

0 comments on commit 02b78f4

Please sign in to comment.