1
0
Fork 0
mirror of synced 2024-06-29 19:50:26 +12:00

removed some unnecessary files

This commit is contained in:
shimon 2023-01-31 17:02:22 +02:00
parent e278732481
commit bddbc15f1a
3 changed files with 4 additions and 4 deletions

2
.env
View file

@ -52,7 +52,7 @@ _APP_FUNCTIONS_CPUS=1
_APP_FUNCTIONS_MEMORY=512 _APP_FUNCTIONS_MEMORY=512
_APP_FUNCTIONS_INACTIVE_THRESHOLD=600 _APP_FUNCTIONS_INACTIVE_THRESHOLD=600
_APP_FUNCTIONS_MAINTENANCE_INTERVAL=600 _APP_FUNCTIONS_MAINTENANCE_INTERVAL=600
_APP_FUNCTIONS_RUNTIMES_NETWORK=openruntimes-runtimes _APP_FUNCTIONS_RUNTIMES_NETWORK=runtimes
_APP_EXECUTOR_SECRET=your-secret-key _APP_EXECUTOR_SECRET=your-secret-key
_APP_EXECUTOR_HOST=http://exc1/v1 _APP_EXECUTOR_HOST=http://exc1/v1
_APP_FUNCTIONS_RUNTIMES= _APP_FUNCTIONS_RUNTIMES=

View file

@ -17,7 +17,7 @@ class AbuseTest extends Scope
use ProjectCustom; use ProjectCustom;
use SideNone; use SideNone;
public function setUp(): void protected function setUp(): void
{ {
parent::setUp(); parent::setUp();

View file

@ -21,7 +21,7 @@ abstract class Scope extends TestCase
*/ */
protected $endpoint = 'http://localhost/v1'; protected $endpoint = 'http://localhost/v1';
public function setUp(): void protected function setUp(): void
{ {
$this->client = new Client(); $this->client = new Client();
@ -30,7 +30,7 @@ abstract class Scope extends TestCase
; ;
} }
public function tearDown(): void protected function tearDown(): void
{ {
$this->client = null; $this->client = null;
} }