chore: update
Java CI with Maven / build-and-test (pull_request) Failing after 6m8s

This commit is contained in:
TakahashiNg
2026-04-17 09:56:16 +00:00
parent d59885d220
commit e2457eef9c
@@ -29,6 +29,7 @@ public class CustomerService extends BaseService<CustomerEntity> {
return Response.status(Response.Status.CREATED)
.header(InternalValue.userId, newCustomer.id.toString())
.header(InternalValue.role, Role.Customer)
.entity(newCustomer)
.build();
}
@@ -43,6 +44,7 @@ public class CustomerService extends BaseService<CustomerEntity> {
return Response.status(Response.Status.CREATED)
.header(InternalValue.userId, newCustomer.id.toString())
.header(InternalValue.role, Role.Customer)
.entity(newCustomer)
.build();
}
@@ -67,6 +69,7 @@ public class CustomerService extends BaseService<CustomerEntity> {
return Response.accepted()
.header(InternalValue.userId, customer.id.toString())
.header(InternalValue.role, Role.Customer)
.entity(customer)
.build();
}
@@ -87,6 +90,7 @@ public class CustomerService extends BaseService<CustomerEntity> {
return Response.accepted()
.header(InternalValue.userId, customer.id.toString())
.header(InternalValue.role, Role.Customer)
.entity(customer)
.build();
}
}