WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit fff4b43

Browse files
committed
fix build
1 parent a6268fd commit fff4b43

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

genkit-tools/cli/src/mcp/util.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export class McpRuntimeManager {
3636

3737
async getManagerWithDevProcess(command: string, args: string[]) {
3838
if (this.manager) {
39-
await this.manager.stop();
39+
await this.manager.processManager?.kill();
4040
}
4141
const devManager = await startDevProcessManager(
4242
this.projectRoot,
@@ -49,7 +49,7 @@ export class McpRuntimeManager {
4949

5050
async kill() {
5151
if (this.manager) {
52-
await this.manager.stop();
52+
await this.manager.processManager?.kill();
5353
}
5454
}
5555
}

0 commit comments

Comments
 (0)