mirror of
https://github.com/nextcloud/server.git
synced 2026-02-03 20:41:22 -05:00
As the external storage uses the Nextcloud server itself the number of workers of the PHP process running the Nextcloud server had to be increased. Otherwise if a request is sent for the external storage while handling a request from the integration tests a deadlock would occur. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
22 lines
499 B
PHP
22 lines
499 B
PHP
<?php
|
|
/**
|
|
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
use Behat\Behat\Context\Context;
|
|
use Behat\Behat\Context\SnippetAcceptingContext;
|
|
|
|
require __DIR__ . '/../../vendor/autoload.php';
|
|
|
|
|
|
/**
|
|
* Features context.
|
|
*/
|
|
class FeatureContext implements Context, SnippetAcceptingContext {
|
|
use ContactsMenu;
|
|
use ExternalStorage;
|
|
use Search;
|
|
use WebDav;
|
|
use Trashbin;
|
|
}
|