From 8384c761a5584773bbd205f55b6763103a4b461b Mon Sep 17 00:00:00 2001 From: Shuchang Zheng Date: Sun, 20 Oct 2024 23:44:21 -0700 Subject: [PATCH] fix update organization api (#1013) --- skyvern/forge/sdk/routes/agent_protocol.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/skyvern/forge/sdk/routes/agent_protocol.py b/skyvern/forge/sdk/routes/agent_protocol.py index ff68416d..07d6b7b0 100644 --- a/skyvern/forge/sdk/routes/agent_protocol.py +++ b/skyvern/forge/sdk/routes/agent_protocol.py @@ -867,10 +867,7 @@ async def update_organization( ) -> Organization: return await app.DATABASE.update_organization( current_org.organization_id, - organization_name=org_update.organization_name, - webhook_callback_url=org_update.webhook_callback_url, max_steps_per_run=org_update.max_steps_per_run, - max_retries_per_step=org_update.max_retries_per_step, )