summaryrefslogtreecommitdiff
path: root/releasenotes
diff options
context:
space:
mode:
authorDmitry Tantsur <dtantsur@protonmail.com>2020-06-19 14:26:49 +0200
committerDmitry Tantsur <dtantsur@protonmail.com>2020-06-24 10:53:21 +0200
commit35e4df4677059b1e49d262ba3dcbeb97a6595662 (patch)
treee46ee0073619f9ba9ae5aa8e681262967efc388e /releasenotes
parentb7fc1e15b48bd0e9931e309830b9f1daf20240a2 (diff)
downloadoslo-concurrency-35e4df4677059b1e49d262ba3dcbeb97a6595662.tar.gz
Add support for timeout to processutils.execute4.2.0
This is a standard Python feature since 3.3. Change-Id: Ib13af5aab0ebbae532f1e46309ad6023ca94d6b9
Diffstat (limited to 'releasenotes')
-rw-r--r--releasenotes/notes/timeout-c3fb65acda04c1c7.yaml5
1 files changed, 5 insertions, 0 deletions
diff --git a/releasenotes/notes/timeout-c3fb65acda04c1c7.yaml b/releasenotes/notes/timeout-c3fb65acda04c1c7.yaml
new file mode 100644
index 0000000..4d48b5c
--- /dev/null
+++ b/releasenotes/notes/timeout-c3fb65acda04c1c7.yaml
@@ -0,0 +1,5 @@
+---
+features:
+ - |
+ Adds a new ``timeout`` argument to ``processutils.execute``. If set,
+ the process will be aborted if it runs more than ``timeout`` seconds.