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,