1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-28 14:50:08 +03:00

B #6464: backup execution PARALLEL mode

There is a typo causing the PARALLEL execution mode to be not recognized

(cherry picked from commit 8e08b3bd107d48a6ace7578669cc7ee1a7739217)
This commit is contained in:
Anton Todorov 2024-01-19 11:16:30 +02:00 committed by Ruben S. Montero
parent 0283337030
commit c2fa7bfd6d
No known key found for this signature in database
GPG Key ID: A0CEA6FA880A1D87

View File

@ -92,7 +92,7 @@ public:
{
exec = SEQUENTIAL;
}
else if ( str_exec == "PARALELL" )
else if ( str_exec == "PARALLEL" )
{
exec = PARALLEL;
}