Skip to content
Snippets Groups Projects
Commit 3eb75767 authored by geant-release-service's avatar geant-release-service
Browse files

Finished release 2.14.

parents f04f3820 47b6a8f0
No related branches found
No related tags found
No related merge requests found
Pipeline #89098 passed
# Changelog
## [2.14] - 2024-09-19
- Fixes to Infoblox client.
## [2.13] - 2024-09-18
- Run cleanup at 1 AM only, not every minute between 1 and 2 AM.
......
......@@ -203,9 +203,9 @@ def allocate_host(
network_view=network_view,
)
created_v6 = ipaddress.IPv6Address(new_host.ipv6addr)
except InfobloxCannotCreateObject:
except InfobloxCannotCreateObject as e:
msg = f"Cannot find 1 available IP address in network {ipv6_range}."
logger.warning(msg)
logger.warning(msg, exc_info=e)
if created_v6 is None:
msg = f"Cannot find 1 available IP address in networks {allocation_networks_v6}."
......@@ -221,9 +221,9 @@ def allocate_host(
new_host.update()
new_host = objects.HostRecord.search(conn, name=hostname)
created_v4 = ipaddress.IPv4Address(new_host.ipv4addr)
except InfobloxCannotUpdateObject:
except InfobloxCannotUpdateObject as e:
msg = f"Cannot find 1 available IP address in network {ipv4_range}."
logger.warning(msg)
logger.warning(msg, exc_info=e)
if created_v4 is None:
msg = f"Cannot find 1 available IP address in networks {allocation_networks_v4}."
......
......@@ -4,7 +4,7 @@ from setuptools import find_packages, setup
setup(
name="geant-service-orchestrator",
version="2.13",
version="2.14",
author="GÉANT Orchestration and Automation Team",
author_email="goat@geant.org",
description="GÉANT Service Orchestrator",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment