We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2f50f0 commit 6e69034Copy full SHA for 6e69034
cli/src/services/server/observatory.services.ts
@@ -41,12 +41,12 @@ export const toggleOpenIdMonitoring = async ({
41
const updateRateConfig = async ({context}: {context: CliContext}) => {
42
const {agent} = context;
43
44
- const {update_rate_config} = await getObservatoryActor({
+ const {set_rate_config} = await getObservatoryActor({
45
agent,
46
canisterId: OBSERVATORY_CANISTER_ID
47
});
48
49
- await update_rate_config(
+ await set_rate_config(
50
{OpenIdCertificateRequests: null},
51
{
52
max_tokens: 300n, // allow up to 300 requests
0 commit comments