Fix nodelist import, when parsing regions

This commit is contained in:
Deon George 2022-12-19 23:34:42 +11:00
parent 4c182f196f
commit 91fc61e170
1 changed files with 2 additions and 2 deletions

View File

@ -147,9 +147,9 @@ class NodelistImport implements ShouldQueue
case 'Region':
$region = $fields[1];
$role = Address::NODE_RC;
$host = 0;
$host = $fields[1];
$hub_id = NULL;
$role = Address::NODE_RC;
break;