Skip to content

Commit 292e9c7

Browse files
authored
fix perform_token_rotation kwarg (#503)
1 parent c98710e commit 292e9c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

slack_bolt/authorization/async_authorize.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ async def __call__(
209209
raise BoltError(self._config_error_message)
210210
refreshed = await self.token_rotator.perform_token_rotation(
211211
installation=installation,
212-
token_rotation_expiration_minutes=self.token_rotation_expiration_minutes,
212+
minutes_before_expiration=self.token_rotation_expiration_minutes,
213213
)
214214
if refreshed is not None:
215215
await self.installation_store.async_save(refreshed)

0 commit comments

Comments
 (0)