1
0
Fork 0
mirror of synced 2024-05-20 12:42:39 +12:00

increase sleeps

This commit is contained in:
Torsten Dittmann 2021-10-22 19:21:52 +02:00
parent 744560fbb9
commit dc99127533
3 changed files with 3 additions and 3 deletions

View file

@ -42,4 +42,4 @@ jobs:
if: always()
run: |
docker compose down -v
docker ps -q | xargs docker stop
docker ps -aq | xargs docker rm --force

View file

@ -277,7 +277,7 @@ trait DatabaseBase
$this->assertEquals(true, $boolean['body']['default']);
// wait for database worker to create attributes
sleep(10);
sleep(30);
$stringResponse = $this->client->call(Client::METHOD_GET, "/database/collections/{$collectionId}/attributes/{$collectionId}_{$string['body']['key']}",array_merge([
'content-type' => 'application/json',

View file

@ -588,7 +588,7 @@ class DatabaseCustomServerTest extends Scope
$this->assertEquals(201, $attribute['headers']['status-code']);
}
sleep(5);
sleep(30);
$tooMany = $this->client->call(Client::METHOD_POST, '/database/collections/' . $collectionId . '/attributes/integer', array_merge([
'content-type' => 'application/json',