Skip to content

Commit

Permalink
Merge pull request #18426 from ghalliday/issue31494
Browse files Browse the repository at this point in the history
HPCC-31494 Avoid spurious follow-on 'failed to run' error

Reviewed-by: Jake Smith <[email protected]>
Merged-by: Gavin Halliday <[email protected]>
  • Loading branch information
ghalliday authored Mar 21, 2024
2 parents ed87f27 + 02b78f4 commit 18ac290
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 18ac290

Please sign in to comment.