From 891c608a9bbe3907f9118902c1040a393feda007 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ma=C3=ABl=20Gangloff?= Date: Sun, 25 Aug 2024 21:09:32 +0200 Subject: [PATCH] chore: update docker-compose.yml --- docker-compose.yml | 2 ++ src/Service/RDAPService.php | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 9118ebb..0fdf591 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -32,6 +32,8 @@ services: healthcheck: disable: true test: [ ] + volumes: +# - ./custom_rdap_servers.yaml:/app/config/app/custom_rdap_servers.yaml # Please see #41 issue database: image: postgres:${POSTGRES_VERSION:-16}-alpine diff --git a/src/Service/RDAPService.php b/src/Service/RDAPService.php index 78eff45..c8b692c 100644 --- a/src/Service/RDAPService.php +++ b/src/Service/RDAPService.php @@ -75,7 +75,7 @@ readonly class RDAPService ]; 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, private EntityRepository $entityRepository,