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) => {
|
return new Promise<RestFulResponse>((resolve, reject) => {
|
||||||
const handler = this.addCommandListener(command, (data) => {
|
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) {
|
if (data._id === _id) {
|
||||||
handler();
|
handler();
|
||||||
resolve(data as RestFulResponse);
|
resolve(data as RestFulResponse);
|
||||||
|
@ -79,6 +79,7 @@ export function revealOpenMcpWebviewPanel(
|
|||||||
switch (command) {
|
switch (command) {
|
||||||
case 'vscode/launch-signature':
|
case 'vscode/launch-signature':
|
||||||
const launchResult = {
|
const launchResult = {
|
||||||
|
_id: data._id,
|
||||||
code: 200,
|
code: 200,
|
||||||
msg: option
|
msg: option
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user