Skip to content

Commit 30c3910

Browse files
author
James Chapman
committed
Update CHANGELOG for ServiceBusClient lifecycle fix; bump version to 0.25.17 and 0.13.4; refine debug logging in airlock_request_status_update.py
1 parent 2a00e01 commit 30c3910

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ENHANCEMENTS:
99
* Add Windows Server 2025 image support to Guacamole. ([#4890](https://github.com/microsoft/AzureTRE/issues/4890))
1010

1111
BUG FIXES:
12-
* Fix inconsistent ServiceBusClient lifecycle management in deployment_status_updater.py, airlock_request_status_update.py, and runner.py to prevent connection socket and AMQP channel leaks
12+
* Fix inconsistent ServiceBusClient lifecycle management in deployment_status_updater.py, airlock_request_status_update.py, and runner.py to prevent connection socket and AMQP channel leaks ([#4930](https://github.com/microsoft/AzureTRE/pull/4930))
1313

1414
## (0.28.0) (March 2, 2026)
1515
**BREAKING CHANGES**

api_app/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.25.16"
1+
__version__ = "0.25.17"

api_app/service_bus/airlock_request_status_update.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ async def receive_messages(self):
6262
await asyncio.sleep(10)
6363

6464
except OperationTimeoutError:
65-
# Timeout occurred whilst connecting - this is expected and indicates no non-empty sessions are available
66-
logger.debug("No sessions for this process. Will look again...")
65+
# Timeout occurred whilst connecting - this is expected and indicates no messages are available
66+
logger.debug("No messages for this process. Will look again...")
6767

6868
except ServiceBusConnectionError:
6969
# Occasionally there will be a transient / network-level error in connecting to SB.

resource_processor/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.13.3"
1+
__version__ = "0.13.4"

0 commit comments

Comments
 (0)