1
0
Fork 0
mirror of synced 2024-10-02 10:16:27 +13:00

Merge pull request #6169 from appwrite/fix-redeploys

Fix: Function redeploys
This commit is contained in:
Christy Jacob 2023-09-07 12:10:04 -04:00 committed by GitHub
commit c6f6ec07b7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1458,6 +1458,7 @@ App::post('/v1/functions/:functionId/deployments/:deploymentId/builds/:buildId')
$deployment = $dbForProject->createDocument('deployments', $deployment->setAttributes([
'$id' => $deploymentId,
'$internalId' => '',
'buildId' => '',
'buildInternalId' => '',
'entrypoint' => $function->getAttribute('entrypoint'),