Skip to content

Commit

Permalink
fix perform_token_rotation kwarg (#503)
Browse files Browse the repository at this point in the history
  • Loading branch information
dkzk22 authored Oct 29, 2021
1 parent c98710e commit 292e9c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion slack_bolt/authorization/async_authorize.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ async def __call__(
raise BoltError(self._config_error_message)
refreshed = await self.token_rotator.perform_token_rotation(
installation=installation,
token_rotation_expiration_minutes=self.token_rotation_expiration_minutes,
minutes_before_expiration=self.token_rotation_expiration_minutes,
)
if refreshed is not None:
await self.installation_store.async_save(refreshed)
Expand Down

0 comments on commit 292e9c7

Please sign in to comment.