Skip to content

Commit

Permalink
fix: set correct max cost for oauth2 introspection authn handler
Browse files Browse the repository at this point in the history
  • Loading branch information
David-Wobrock committed Aug 9, 2024
1 parent 6b5672b commit 5f50982
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .schema/config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -888,9 +888,9 @@
},
"max_cost": {
"type": "integer",
"default": 1000,
"default": 100000000,
"title": "Max Cost",
"description": "Max number of tokens to cache."
"description": "Max cost to cache."
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions spec/config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -904,9 +904,9 @@
},
"max_cost": {
"type": "integer",
"default": 1000,
"default": 100000000,
"title": "Max Cost",
"description": "Max number of tokens to cache."
"description": "Max cost to cache."
}
}
}
Expand Down

0 comments on commit 5f50982

Please sign in to comment.