Correct wrong name of APIEventPayload's arg

In latest version, use 'method_name' instead of 'notifier_method'.
This patch modifies it.

Change-Id: If6a2852b6a825ce7263260b79237effc9a837dd2
This commit is contained in:
ericxiett 2021-04-17 08:41:37 +00:00
parent 04cbb7775b
commit 287e65ee09

View File

@ -198,18 +198,18 @@ pass along API controller specifics.
Sample usage::
# BEFORE_RESPONSE for create:
APIEventPayload(context, notifier_method, action,
APIEventPayload(context, method_name, action,
request_body=req_body,
states=[create_result],
collection_name=self._collection_name)
# BEFORE_RESPONSE for delete:
APIEventPayload(context, notifier_method, action,
APIEventPayload(context, method_name, action,
states=[copy_of_deleted_resource],
collection_name=self._collection_name)
# BEFORE_RESPONSE for update:
APIEventPayload(context, notifier_method, action,
APIEventPayload(context, method_name, action,
states=[original, updated],
collection_name=self._collection_name)