Azure: fix error on resolving image version with multiple locations.

The original code hasn't use the latest runbook to resolve image. So the location is not set to single value.
This commit is contained in:
Chi Song (from Dev Box) 2024-01-31 21:04:23 -08:00 коммит произвёл LiliDeng
Родитель 1174b5b873
Коммит a98190c508
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -566,7 +566,9 @@ class AzurePlatform(Platform):
# resolve Latest to specified version
if is_success:
self._resolve_marketplace_image_version(nodes_requirement)
self._resolve_marketplace_image_version(
environment.runbook.nodes_requirement
)
return is_success