summaryrefslogtreecommitdiff
path: root/releasenotes
diff options
context:
space:
mode:
authoryangjianfeng <yjf1970231893@gmail.com>2021-08-17 02:41:15 -0400
committeryangjianfeng <yjf1970231893@gmail.com>2021-12-05 04:36:36 +0000
commite4c168b1fcc3bd79e7708c63533e3caf83ba7f1b (patch)
treeb24a5ac3412ca0045b59e0473eb791d955f3c312 /releasenotes
parent8123cc6ee3faff4b2d13927302b6acbe17b3b814 (diff)
downloadneutron-e4c168b1fcc3bd79e7708c63533e3caf83ba7f1b.tar.gz
Improve Router callback system's publish events
When I writing 'ndp_proxy' service plugin, I found I couldn't get enough informations about router from the callback system (Such as: the origin request body of user send). So, for write service plugin that related router plugin more concisely I commit this patch. This patch proposal two changes about router callback publish events: 1. Add 'request_body' parameter to some event's payload 2. add 'BEFORE_UPDATE' event for router gateway Related-bug: #1877301 Change-Id: I5f6a4e6f0b7c5feb794ddb7efbd07d01bad91af8
Diffstat (limited to 'releasenotes')
-rw-r--r--releasenotes/notes/improve-router-callback-event-5ddd73679f23039b.yaml7
1 files changed, 7 insertions, 0 deletions
diff --git a/releasenotes/notes/improve-router-callback-event-5ddd73679f23039b.yaml b/releasenotes/notes/improve-router-callback-event-5ddd73679f23039b.yaml
new file mode 100644
index 0000000000..561febc905
--- /dev/null
+++ b/releasenotes/notes/improve-router-callback-event-5ddd73679f23039b.yaml
@@ -0,0 +1,7 @@
+---
+features:
+ - |
+ Add ``request_body`` field to router callback event payloads. The field
+ record the origin request body from user.
+ - |
+ Add ``BEFORE_UPDATE`` callback event for router gateway.