Skip to content

Commit bfa9d00

Browse files
committed
fix(scf): change cfs UserGroupId to string
1 parent 145e7e7 commit bfa9d00

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/modules/scf/utils.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -273,8 +273,8 @@ const formatFunctionInputs = (region, inputs) => {
273273
MountInsId: item.MountInsId || item.cfsId,
274274
LocalMountDir: item.localMountDir,
275275
RemoteMountDir: item.remoteMountDir,
276-
UserGroupId: item.userGroupId || 10000,
277-
UserId: item.userId || 10000,
276+
UserGroupId: String(item.userGroupId || 10000),
277+
UserId: String(item.userId || 10000),
278278
});
279279
});
280280
}

0 commit comments

Comments
 (0)