Skip to content
This repository has been archived by the owner on Mar 20, 2023. It is now read-only.

Fix for the index out of range exception #322

Merged
merged 1 commit into from
Nov 1, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion convoy/slurm.py
Original file line number Diff line number Diff line change
Expand Up @@ -908,7 +908,7 @@ def create_slurm_controller(
if util.is_none_or_empty(pips):
fqdn[i] = None
ipinfo[i] = 'private_ip_address={}'.format(
nics[i].ip_configurations[i].private_ip_address)
nics[i].ip_configurations[0].private_ip_address)
else:
# refresh public ip for vm
pip = network_client.public_ip_addresses.get(
Expand Down