Skip to content

Commit f9aa3d7

Browse files
chore: generate
1 parent 5d47ea0 commit f9aa3d7

2 files changed

Lines changed: 2 additions & 9 deletions

File tree

packages/opencode/src/config/mcp.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,7 @@ export const Remote = z
4949
oauth: z
5050
.union([OAuth, z.literal(false)])
5151
.optional()
52-
.describe(
53-
"OAuth authentication configuration for the MCP server. Set to false to disable OAuth auto-detection.",
54-
),
52+
.describe("OAuth authentication configuration for the MCP server. Set to false to disable OAuth auto-detection."),
5553
timeout: z
5654
.number()
5755
.int()

packages/opencode/src/server/proxy.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -103,12 +103,7 @@ const app = (upgrade: UpgradeWebSocket) =>
103103

104104
const log = Log.Default.clone().tag("service", "server-proxy")
105105

106-
export async function http(
107-
url: string | URL,
108-
extra: HeadersInit | undefined,
109-
req: Request,
110-
workspaceID: WorkspaceID,
111-
) {
106+
export async function http(url: string | URL, extra: HeadersInit | undefined, req: Request, workspaceID: WorkspaceID) {
112107
if (!Workspace.isSyncing(workspaceID)) {
113108
return new Response(`broken sync connection for workspace: ${workspaceID}`, {
114109
status: 503,

0 commit comments

Comments
 (0)