Skip to content

Commit

Permalink
Pass in the metadata as kernel metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Silvester committed Dec 23, 2019
1 parent 7e2c254 commit c26c8cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/console-extension/src/index.ts
Expand Up @@ -194,7 +194,7 @@ async function activateConsole(
category: 'Console',
rank,
kernelIconUrl,
metadata: spec.metadata
metadata: { kernel: spec.metadata }
})
);
}
Expand Down
2 changes: 1 addition & 1 deletion packages/notebook-extension/src/index.ts
Expand Up @@ -738,7 +738,7 @@ function activateNotebookHandler(
category: 'Notebook',
rank,
kernelIconUrl,
metadata: spec.metadata
metadata: { kernel: spec.metadata }
})
);
}
Expand Down

0 comments on commit c26c8cc

Please sign in to comment.