fix: async invoke show

This commit is contained in:
wss-git 2021-07-05 10:43:00 +08:00
parent 1fd83169d0
commit 53beb966d6
1 changed files with 4 additions and 3 deletions

View File

@ -82,11 +82,12 @@ export default class RemoteInvoke {
console.log('\n'); console.log('\n');
} }
} else { } else {
await this.fcClient.invokeFunction(serviceName, functionName, event, { const { headers } = await this.fcClient.invokeFunction(serviceName, functionName, event, {
'X-Fc-Invocation-Type': invocationType 'X-Fc-Invocation-Type': invocationType
}, qualifier); }, qualifier);
const rId = headers['x-fc-request-id'];
logger.log('`${serviceName}/${functionName} async invoke success.\n`', 'green'); logger.log(`\n${serviceName}/${functionName} async invoke success.\n${rId ? `request id: ${rId}\n` : ''}`, 'green');
} }
} }
@ -124,7 +125,7 @@ export default class RemoteInvoke {
resp = await this.fcClient.request('HEAD', p, queries, body, headers); resp = await this.fcClient.request('HEAD', p, queries, body, headers);
} */ } */
} else { } else {
logger.log(`Does not support ${method} requests temporarily.`); logger.error(`Does not support ${method} requests temporarily.`);
} }
} catch (e) { } catch (e) {
logger.debug(e); logger.debug(e);