Compare commits

...

2 commits

Author SHA1 Message Date
7d4388e05c
Add log directories for coffee and teapot services to .gitignore
Some checks are pending
CI / check-phpdoc (push) Waiting to run
CI / release (push) Waiting to run
CI / debug (push) Waiting to run
CI / release_executable (push) Waiting to run
CI / debug_executable (push) Waiting to run
CI / check-phpunit (push) Waiting to run
CI / generate-phpdoc (push) Blocked by required conditions
CI / test (push) Blocked by required conditions
CI / release-documentation (push) Blocked by required conditions
CI / release-artifacts (push) Blocked by required conditions
2025-03-18 15:15:07 -04:00
33706d0b50
Add logging volume mounts for coffee and teapot services; improve error message in RpcClient 2025-03-18 15:14:42 -04:00
4 changed files with 5 additions and 10 deletions

2
.gitignore vendored
View file

@ -11,3 +11,5 @@
/teapot_socialbox/logs/
/tests/docker/coffee/data/
/tests/docker/teapot/data/
/tests/docker/teapot/logs/
/tests/docker/coffee/logs/

View file

@ -24,6 +24,7 @@ services:
volumes:
- ./tests/docker/coffee/config:/etc/config
- ./tests/docker/coffee/data:/etc/socialbox
- ./tests/docker/coffee/logs:/var/log
environment:
# No need to change these values
LOG_LEVEL: ${LOG_LEVEL:-debug}
@ -125,6 +126,7 @@ services:
volumes:
- ./tests/docker/teapot/config:/etc/config
- ./tests/docker/teapot/data:/etc/socialbox
- ./tests/docker/teapot/logs:/var/log
environment:
# No need to change these values
LOG_LEVEL: ${LOG_LEVEL:-debug}

View file

@ -481,7 +481,7 @@
publicKey: $this->serverPublicSigningKey,
))
{
throw new RpcException('Failed to verify the response signature');
throw new RpcException('The response signature cannot be verified with the server\'s public signing key');
}
}
catch (CryptographyException $e)

View file

@ -1,9 +0,0 @@
<?php
namespace Socialbox;
use PHPUnit\Framework\TestCase;
class SocialClientSessionTest extends TestCase
{
}