diff --git a/app/javascript/react/screens/App/Settings/__tests__/__snapshots__/SettingsActions.test.js.snap b/app/javascript/react/screens/App/Settings/__tests__/__snapshots__/SettingsActions.test.js.snap index c6f5957e2b..18c16f1a0e 100644 --- a/app/javascript/react/screens/App/Settings/__tests__/__snapshots__/SettingsActions.test.js.snap +++ b/app/javascript/react/screens/App/Settings/__tests__/__snapshots__/SettingsActions.test.js.snap @@ -77,6 +77,7 @@ Array [ }, "transformation": Object { "limits": Object { + "max_concurrent_tasks_per_ems": 10, "max_concurrent_tasks_per_host": 10, }, }, @@ -113,6 +114,7 @@ Array [ }, "transformation": Object { "limits": Object { + "max_concurrent_tasks_per_ems": 10, "max_concurrent_tasks_per_host": 10, }, }, diff --git a/app/javascript/react/screens/App/Settings/__tests__/__snapshots__/SettingsReducer.test.js.snap b/app/javascript/react/screens/App/Settings/__tests__/__snapshots__/SettingsReducer.test.js.snap index 3e8e8f885f..47b9bc64a1 100644 --- a/app/javascript/react/screens/App/Settings/__tests__/__snapshots__/SettingsReducer.test.js.snap +++ b/app/javascript/react/screens/App/Settings/__tests__/__snapshots__/SettingsReducer.test.js.snap @@ -287,6 +287,7 @@ Object { "isSavingSettings": false, "postConversionHostsResults": Array [], "savedSettings": Object { + "max_concurrent_tasks_per_ems": 10, "max_concurrent_tasks_per_host": 10, }, "savingSettingsRejected": false, @@ -397,6 +398,7 @@ Object { "isSavingSettings": false, "postConversionHostsResults": Array [], "savedSettings": Object { + "max_concurrent_tasks_per_ems": 10, "max_concurrent_tasks_per_host": 10, }, "savingSettingsRejected": false, diff --git a/app/javascript/react/screens/App/Settings/screens/GeneralSettings/__tests__/__snapshots__/GeneralSettings.test.js.snap b/app/javascript/react/screens/App/Settings/screens/GeneralSettings/__tests__/__snapshots__/GeneralSettings.test.js.snap index 03189be06d..b73703965b 100644 --- a/app/javascript/react/screens/App/Settings/screens/GeneralSettings/__tests__/__snapshots__/GeneralSettings.test.js.snap +++ b/app/javascript/react/screens/App/Settings/screens/GeneralSettings/__tests__/__snapshots__/GeneralSettings.test.js.snap @@ -18,6 +18,7 @@ exports[`GeneralSettings component renders the general settings page 1`] = ` >
+
+

+ Concurrent Migrations +

+
- Maximum concurrent migrations per conversion host + + Maximum concurrent migrations per conversion host + + For VDDK transformations the maximum concurrent migrations per conversion host is limited to 20. See the product documentation for more information. + + } + placement="top" + rootClose={false} + trigger={ + Array [ + "hover", + ] + } + > + + +
+
+
+ + +
+ Maximum concurrent migrations per provider +
+
+
+
-
diff --git a/app/javascript/react/screens/App/Settings/settings.fixures.js b/app/javascript/react/screens/App/Settings/settings.fixures.js index b2adda7a44..a9eda02ae9 100644 --- a/app/javascript/react/screens/App/Settings/settings.fixures.js +++ b/app/javascript/react/screens/App/Settings/settings.fixures.js @@ -18,7 +18,8 @@ export const servers = Immutable({ export const settings = Immutable({ transformation: { limits: { - max_concurrent_tasks_per_host: 10 + max_concurrent_tasks_per_host: 10, + max_concurrent_tasks_per_ems: 10 } }, otherSettings: { @@ -27,7 +28,8 @@ export const settings = Immutable({ }); export const settingsFormValues = Immutable({ - max_concurrent_tasks_per_host: 10 + max_concurrent_tasks_per_host: 10, + max_concurrent_tasks_per_ems: 10 }); export const fetchServersData = {