Skip to content

Commit

Permalink
Merge pull request #34 from Xelon-AG/fix/isset-issue
Browse files Browse the repository at this point in the history
fix: remove wrong check
  • Loading branch information
tonkoshkurik committed Sep 29, 2023
2 parents 06b3157 + f2cb00d commit fa0f439
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Traits/Soap/SoapImportApis.php
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ public function importVApp(string $resourcePoolId, $entityConfig, $instantiation
'vvtdEnabled' => $configSpec->flags->vvtdEnabled ?? null,
'vbsEnabled' => $configSpec->flags->vbsEnabled ?? null,
]) : null,
'numCPUs' => isset($configSpec->numCPUs) ?? null,
'numCPUs' => $configSpec->numCPUs ?? null,
'numCoresPerSocket' => $configSpec->numCoresPerSocket ?? null,
'memoryMB' => $configSpec->memoryMB ?? null,
'memoryHotAddEnabled' => $configSpec->memoryHotAddEnabled ?? null,
Expand Down

0 comments on commit fa0f439

Please sign in to comment.