chore: update docker-compose.yml

This commit is contained in:
Maël Gangloff
2024-08-25 21:09:32 +02:00
parent 534a8db86c
commit 891c608a9b
2 changed files with 3 additions and 1 deletions

View File

@@ -32,6 +32,8 @@ services:
healthcheck: healthcheck:
disable: true disable: true
test: [ ] test: [ ]
volumes:
# - ./custom_rdap_servers.yaml:/app/config/app/custom_rdap_servers.yaml # Please see #41 issue
database: database:
image: postgres:${POSTGRES_VERSION:-16}-alpine image: postgres:${POSTGRES_VERSION:-16}-alpine

View File

@@ -75,7 +75,7 @@ readonly class RDAPService
]; ];
private const IMPORTANT_EVENTS = [EventAction::Deletion->value, EventAction::Expiration->value]; private const IMPORTANT_EVENTS = [EventAction::Deletion->value, EventAction::Expiration->value];
private const IMPORTANT_STATUS = ['auto renew period', 'redemption period', 'pending delete']; private const IMPORTANT_STATUS = ['auto renew period', 'redemption period', 'pending delete', 'client hold'];
public function __construct(private HttpClientInterface $client, public function __construct(private HttpClientInterface $client,
private EntityRepository $entityRepository, private EntityRepository $entityRepository,