@@ -60,8 +60,8 @@ def get_create_provides_context_keys(cls) -> set[str]:
6060 async def get_create_retries (cls , context : DeferredContext ) -> int :
6161 """
6262 [optional] amount of retires in case of creation
63- HINT: you can use `get_step_group_proxy(context)` and `get_step_store_proxy (context)`
64- to implement custom retry strategy
63+ HINT: you can use `get_opration_context_proxy()`, `get_step_group_proxy (context)`
64+ and `get_step_store_proxy(context)` to implement custom retry strategy
6565 """
6666 assert context # nosec
6767 return _DEFAULT_STEP_RETRIES
@@ -72,8 +72,8 @@ async def get_create_wait_between_attempts(
7272 ) -> timedelta :
7373 """
7474 [optional] wait time between retires case of creation
75- HINT: you can use `get_step_group_proxy(context)` and `get_step_store_proxy (context)`
76- to implement custom retry strategy
75+ HINT: you can use `get_opration_context_proxy()`, `get_step_group_proxy (context)`
76+ and `get_step_store_proxy(context)` to implement custom retry strategy
7777 """
7878 assert context # nosec
7979 return _DEFAULT_STEP_TIMEOUT
@@ -120,8 +120,8 @@ def get_revert_provides_context_keys(cls) -> set[str]:
120120 async def get_revert_retries (cls , context : DeferredContext ) -> int :
121121 """
122122 [optional] amount of retires in case of failure
123- HINT: you can use `get_step_group_proxy(context)` and `get_step_store_proxy (context)`
124- to implement custom retry strategy
123+ HINT: you can use `get_opration_context_proxy()`, `get_step_group_proxy (context)`
124+ and `get_step_store_proxy(context)` to implement custom retry strategy
125125 """
126126 assert context # nosec
127127 return _DEFAULT_STEP_RETRIES
@@ -132,8 +132,8 @@ async def get_revert_wait_between_attempts(
132132 ) -> timedelta :
133133 """
134134 [optional] timeout between retires in case of failure
135- HINT: you can use `get_step_group_proxy(context)` and `get_step_store_proxy (context)`
136- to implement custom retry strategy
135+ HINT: you can use `get_opration_context_proxy()`, `get_step_group_proxy (context)`
136+ and `get_step_store_proxy(context)` to implement custom retry strategy
137137 """
138138 assert context # nosec
139139 return _DEFAULT_STEP_TIMEOUT
0 commit comments