diff --git a/Microservice.Customer.Api/Helpers/CustomerHttpAccessor.cs b/Microservice.Customer.Api/Helpers/CustomerHttpAccessor.cs index 73502f3..92e3472 100644 --- a/Microservice.Customer.Api/Helpers/CustomerHttpAccessor.cs +++ b/Microservice.Customer.Api/Helpers/CustomerHttpAccessor.cs @@ -13,7 +13,7 @@ public Guid CustomerId var customerId = accessor.HttpContext.User.FindFirstValue(ClaimTypes.NameIdentifier); - return customerId == null ? throw new ArgumentNullException("NameIdentifier not found with customer Id.") : new(customerId); + return customerId == null ? throw new ArgumentNullException("NameIdentifier not found with customer Id") : new(customerId); } } } \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml index c2ba4fb..3b85c35 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,12 +1,3 @@ -# version: '3.4' - -# services: -# microservice.customer.api: -# image: ${DOCKER_REGISTRY-}microservicecustomerapi -# build: -# context: . -# dockerfile: Microservice.Customer.Api/Dockerfile - version: '3.4' services: