1
0
Fork 0
mirror of synced 2024-09-29 08:51:28 +13:00

Update limits

This commit is contained in:
Khushboo Verma 2023-08-18 12:44:13 +05:30
parent 76c3eb5c65
commit c1b7b6cd0d
2 changed files with 3 additions and 3 deletions

View file

@ -46,7 +46,7 @@ jobs:
- name: Start Appwrite
run: |
docker compose up -d
sleep 60
sleep 30
- name: Doctor
run: |

View file

@ -142,7 +142,7 @@ App::post('/v1/functions')
->param('enabled', true, new Boolean(), 'Is function enabled?', true)
->param('logging', true, new Boolean(), 'Do executions get logged?', true)
->param('entrypoint', '', new Text(1028), 'Entrypoint File.')
->param('commands', '', new Text(1028, 0), 'Build Commands.', true)
->param('commands', '', new Text(8192, 0), 'Build Commands.', true)
->param('installationId', '', new Text(128, 0), 'Appwrite Installation ID for vcs deployment.', true)
->param('providerRepositoryId', '', new Text(128, 0), 'Repository ID of the repo linked to the function', true)
->param('providerBranch', '', new Text(128, 0), 'Production branch for the repo linked to the function', true)
@ -614,7 +614,7 @@ App::put('/v1/functions/:functionId')
->param('enabled', true, new Boolean(), 'Is function enabled?', true)
->param('logging', true, new Boolean(), 'Do executions get logged?', true)
->param('entrypoint', '', new Text(1028), 'Entrypoint File.')
->param('commands', '', new Text(1028, 0), 'Build Commands.', true)
->param('commands', '', new Text(8192, 0), 'Build Commands.', true)
->param('installationId', '', new Text(128, 0), 'Appwrite Installation ID for vcs deployment.', true)
->param('providerRepositoryId', '', new Text(128, 0), 'Repository ID of the repo linked to the function', true)
->param('providerBranch', '', new Text(128, 0), 'Production branch for the repo linked to the function', true)