From 7831e0e08ea918300fc6d767996fb8429ccb9e82 Mon Sep 17 00:00:00 2001 From: Anton Todorov Date: Fri, 19 Jan 2024 11:16:30 +0200 Subject: [PATCH] B #6464: backup execution PARALLEL mode There is a typo causing the PARALLEL execution mode to be not recognized (cherry picked from commit 8e08b3bd107d48a6ace7578669cc7ee1a7739217) --- include/BackupJob.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/BackupJob.h b/include/BackupJob.h index 061c788432b..94b5ef44835 100644 --- a/include/BackupJob.h +++ b/include/BackupJob.h @@ -92,7 +92,7 @@ class BackupJob : public PoolObjectSQL { exec = SEQUENTIAL; } - else if ( str_exec == "PARALELL" ) + else if ( str_exec == "PARALLEL" ) { exec = PARALLEL; }