This is an automated email from the ASF dual-hosted git repository. rzo1 pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/storm.git
commit f75ab785326253450b23e96642641ea9d8bd32e6 Author: Bharat Gulati <[email protected]> AuthorDate: Sat Jun 17 15:06:36 2023 +0530 minor correction in flux README --- docs/flux.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/flux.md b/docs/flux.md index 75a62e133..08c08957d 100644 --- a/docs/flux.md +++ b/docs/flux.md @@ -771,9 +771,9 @@ The `override` property controls how includes affect the values defined in the c **N.B.:** Includes are not yet recursive. Includes from included files will be ignored. ## Worker Hooks -Flux allows you to attach topology component that can be executed when a worker starts, and when a worker shuts down. It can be useful when you want to execute operations before topology processing starts, or cleanup operations before your workers shut down, e.g. managing application context. Worker Hooks should be an implementation of [IWorkerHook]({{page.git-blob-base}}/storm-client/src/jvm/org/apache/storm/hooks/IWorkerHook.java). Otherwise, follow similar Bean definition semantics as [...] +Flux allows you to attach topology component that can be executed when a worker starts, and when a worker shuts down. It can be useful when you want to execute operations before topology processing starts, or cleanup operations before your workers shut down, e.g. managing application context. Worker Hooks should be an implementation of [IWorkerHook]({{page.git-blob-base}}/storm-client/src/jvm/org/apache/storm/hooks/IWorkerHook.java). Other than that, they follow similar Bean definition s [...] -Worker Hooks are specified as a list of maps: +Worker Hooks are specified as a map of bean definitions: ```yaml workerHooks:
