From ff604cb77c3bcfe78eec3fd05ee7a1bd74fd5149 Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 10 Oct 2006 15:26:39 +0200 Subject: [PATCH] ndb - ndb_restore Return OK even if temporary errors (otherwise mysql-test-run/ndb_restore can fail on really slow machines) storage/ndb/tools/restore/restore_main.cpp: Return OK even if temporary errors --- storage/ndb/tools/restore/restore_main.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/storage/ndb/tools/restore/restore_main.cpp b/storage/ndb/tools/restore/restore_main.cpp index 8070dba9bf6..6eaef9aa2fa 100644 --- a/storage/ndb/tools/restore/restore_main.cpp +++ b/storage/ndb/tools/restore/restore_main.cpp @@ -686,10 +686,9 @@ main(int argc, char** argv) clearConsumers(); ndbout_c("\nRestore successful, but encountered temporary error, " "please look at configuration."); - return NDBT_ProgramExit(NDBT_TEMPORARY); } } - + clearConsumers(); return NDBT_ProgramExit(NDBT_OK); } // main