chore: generate
This commit is contained in:
@@ -275,10 +275,7 @@ export const layer = Layer.effect(
|
|||||||
|
|
||||||
const DISABLED_RESULT: CreateResult = { status: { status: "disabled" } }
|
const DISABLED_RESULT: CreateResult = { status: { status: "disabled" } }
|
||||||
|
|
||||||
const connectRemote = Effect.fn("MCP.connectRemote")(function* (
|
const connectRemote = Effect.fn("MCP.connectRemote")(function* (key: string, mcp: Config.Mcp & { type: "remote" }) {
|
||||||
key: string,
|
|
||||||
mcp: Config.Mcp & { type: "remote" },
|
|
||||||
) {
|
|
||||||
const oauthDisabled = mcp.oauth === false
|
const oauthDisabled = mcp.oauth === false
|
||||||
const oauthConfig = typeof mcp.oauth === "object" ? mcp.oauth : undefined
|
const oauthConfig = typeof mcp.oauth === "object" ? mcp.oauth : undefined
|
||||||
let authProvider: McpOAuthProvider | undefined
|
let authProvider: McpOAuthProvider | undefined
|
||||||
@@ -451,9 +448,7 @@ export const layer = Layer.effect(
|
|||||||
const queue = [pid]
|
const queue = [pid]
|
||||||
while (queue.length > 0) {
|
while (queue.length > 0) {
|
||||||
const current = queue.shift()!
|
const current = queue.shift()!
|
||||||
const handle = yield* spawner.spawn(
|
const handle = yield* spawner.spawn(ChildProcess.make("pgrep", ["-P", String(current)], { stdin: "ignore" }))
|
||||||
ChildProcess.make("pgrep", ["-P", String(current)], { stdin: "ignore" }),
|
|
||||||
)
|
|
||||||
const text = yield* Stream.mkString(Stream.decodeText(handle.stdout))
|
const text = yield* Stream.mkString(Stream.decodeText(handle.stdout))
|
||||||
yield* handle.exitCode
|
yield* handle.exitCode
|
||||||
for (const tok of text.split("\n")) {
|
for (const tok of text.split("\n")) {
|
||||||
|
|||||||
Reference in New Issue
Block a user