summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Lewis <stevelle@gmail.com>2016-08-30 12:38:47 -0700
committerSteve Lewis <stevelle@gmail.com>2016-08-30 12:45:40 -0700
commit8f08f86c10344343dbde10cbf69caca301213568 (patch)
treed5caa5e2aee9cd1f0d7e2f63c6f2f9bea6e39446
parent1fd6270c2ec425cb6f9bb3742fabfc6015bcb92f (diff)
downloadceilometermiddleware-8f08f86c10344343dbde10cbf69caca301213568.tar.gz
Add release note for background thread notifier
Change-Id: Iad4e6c5e517ca6b01b0e2205be9fcd1cb302ec63 Related: I3da2b88b2bc9b7fd8c572a0085fa1d78c4f54701 Related: I9a8fad8036a0887653d2ad5f99f6b5b1b953c2db
-rw-r--r--releasenotes/notes/background-thread-notifier-21b36a5f5c8dec0e.yaml12
1 files changed, 12 insertions, 0 deletions
diff --git a/releasenotes/notes/background-thread-notifier-21b36a5f5c8dec0e.yaml b/releasenotes/notes/background-thread-notifier-21b36a5f5c8dec0e.yaml
new file mode 100644
index 0000000..d1a6181
--- /dev/null
+++ b/releasenotes/notes/background-thread-notifier-21b36a5f5c8dec0e.yaml
@@ -0,0 +1,12 @@
+---
+features:
+ - Introduced option to send notifications from a background thread
+ instead of blocking the service response to send the
+ notification. This option is disabled by default, retaining
+ previous behavior. Enable by setting ``nonblocking_notify`` to
+ ``True`` in the middleware configuration. When enabled
+ notifications will be queued for delivery in a single thread.
+ Set ``send_queue_size`` to customize the length of this delivery
+ queue (default size 1000).
+ - Introduced option to customize the logging level using the
+ ``log_level`` option (default WARNING).