Skip to content

Commit

Permalink
feature: add arn in deploy output
Browse files Browse the repository at this point in the history
  • Loading branch information
rsonghuster committed Aug 15, 2024
1 parent 88a36c6 commit 97030f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 2 additions & 0 deletions __tests__/it/integration_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ describe('Integration Tests', () => {
expect(output).toEqual({
region: process.env.REGION || 'cn-huhehaote',
description: 'hello world by serverless devs',
functionArn: 'acs:fc:cn-huhehaote:1431999136518149:functions/start-py',
functionName: 'start-py',
handler: 'index.handler',
internetAccess: true,
Expand Down Expand Up @@ -107,6 +108,7 @@ describe('Integration Tests', () => {
expect(output).toEqual({
region: process.env.REGION || 'cn-huhehaote',
description: 'hello world by serverless devs',
functionArn: 'acs:fc:cn-huhehaote:1431999136518149:functions/start-py',
functionName: 'start-py',
handler: 'index.handler',
internetAccess: true,
Expand Down
1 change: 0 additions & 1 deletion src/resources/fc/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,6 @@ export default class FC extends FC_Client {
'createdTime',
'codeSize',
'codeChecksum',
'functionArn',
'useSLRAuthentication',
]);
logger.debug(`Result body: ${JSON.stringify(r)}`);
Expand Down

0 comments on commit 97030f4

Please sign in to comment.