Skip to content
Closed
Show file tree
Hide file tree
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 CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.5) # <3.5 is deprecated by CMake
project( DriplinePy VERSION 5.1.4 )
project( DriplinePy VERSION 5.1.5 )

cmake_policy( SET CMP0074 NEW )

Expand Down
7 changes: 7 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ Types of changes: Added, Changed, Deprecated, Removed, Fixed, Security
## [Unreleased]


## [5.1.5] - 2025-02-04

### Fixed

- Bug in how SignalHandler is used from RequestSender fixed


## [5.1.4] - 2026-01-23

### Changed
Expand Down
2 changes: 1 addition & 1 deletion chart/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
## the appVersion is used as the container image tag for the main container in the pod from the deployment
## it can be overridden by a values.yaml file in image.tag
appVersion: "v5.1.4"
appVersion: "v5.1.5"
description: Deploy a dripline-python microservice
name: dripline-python
version: 1.1.2
2 changes: 1 addition & 1 deletion dripline/core/request_sender.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def _receive_reply(self, reply_pkg, timeout_s):
'''
internal helper method to standardize receiving reply messages
'''
sig_handler = scarab.SignalHandler()
sig_handler = scarab.SignalHandler(True)
sig_handler.add_cancelable(self._receiver)
result = self._receiver.wait_for_reply(reply_pkg, timeout_s * 1000) # receiver expects ms
sig_handler.remove_cancelable(self._receiver)
Expand Down