Skip to content

Commit 8f41027

Browse files
committed
feat(playground): mcp servers listed - review comment
Signed-off-by: Marc Nuri <[email protected]>
1 parent 1dbf77b commit 8f41027

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

packages/backend/src/studio.spec.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,6 @@ describe('activate', () => {
163163
'ContainerRegistry',
164164
'PodmanConnection',
165165
'TaskRegistry',
166-
'CatalogManager',
167166
'BuilderManager',
168167
'PodManager',
169168
'URLModelHandler',
@@ -178,7 +177,6 @@ describe('activate', () => {
178177
'ApplicationManager',
179178
'McpServerManager',
180179
'PlaygroundV2Manager',
181-
'SnippetManager',
182180
])('registers $0 as subscription', (manger: string) => {
183181
const subscriptions = mockedExtensionContext.subscriptions
184182
.filter(s => s?.constructor?.name)

packages/backend/src/studio.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,6 @@ export class Studio {
213213
*/
214214
this.#catalogManager = new CatalogManager(this.#rpcExtension, appUserDirectory);
215215
await this.#catalogManager.init();
216-
this.#extensionContext.subscriptions.push(this.#catalogManager);
217216

218217
/**
219218
* The builder manager is handling the building tasks, create corresponding tasks
@@ -387,7 +386,6 @@ export class Studio {
387386
*/
388387
this.#snippetManager = new SnippetManager(this.#rpcExtension, this.#telemetry);
389388
this.#snippetManager.init();
390-
this.#extensionContext.subscriptions.push(this.#snippetManager);
391389

392390
/**
393391
* The StudioApiImpl is the implementation of our API between backend and frontend

0 commit comments

Comments
 (0)