Working on deployment 2

This commit is contained in:
Owen Schwartz
2024-10-26 19:56:50 -04:00
parent 778491b49f
commit a90347183d
3 changed files with 13 additions and 14 deletions

View File

@@ -122,7 +122,7 @@ async function getNextAvailableSubnet(): Promise<string> {
}
// replace the last octet with 1
subnet = subnet.split('.').slice(0, 3).join('.') + '.1';
subnet = subnet.split('.').slice(0, 3).join('.') + '.1' + subnet.split('/')[1];
return subnet;
}