Skip to content

Commit dade40d

Browse files
committed
fixup jwt issue
1 parent 81a6740 commit dade40d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cabotage/server/ext/github_app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def bearer_token(self):
6363
payload = {
6464
"iat": issued,
6565
"exp": issued + 599,
66-
"iss": self.app_id,
66+
"iss": str(self.app_id),
6767
}
6868
self._bearer_token = jwt.encode(
6969
payload, self.app_private_key_pem, algorithm="RS256"

0 commit comments

Comments
 (0)