release parallel test
This commit is contained in:
parent
1c8a447dc7
commit
7b29584cb1
@ -237,6 +237,10 @@ export class MessageBridge {
|
||||
|
||||
return new Promise<RestFulResponse>((resolve, reject) => {
|
||||
const handler = this.addCommandListener(command, (data) => {
|
||||
if (data._id === undefined) {
|
||||
console.warn('detect data without id, data: ' + JSON.stringify(data, null, 2));
|
||||
}
|
||||
|
||||
if (data._id === _id) {
|
||||
handler();
|
||||
resolve(data as RestFulResponse);
|
||||
|
@ -79,6 +79,7 @@ export function revealOpenMcpWebviewPanel(
|
||||
switch (command) {
|
||||
case 'vscode/launch-signature':
|
||||
const launchResult = {
|
||||
_id: data._id,
|
||||
code: 200,
|
||||
msg: option
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user