Skip to content

Commit

Permalink
Fix CDI scope mismatch for health checks
Browse files Browse the repository at this point in the history
  • Loading branch information
snazy committed Nov 4, 2024
1 parent 55c9607 commit 359a30c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

import static com.google.common.base.Throwables.getStackTraceAsString;

import jakarta.enterprise.context.ApplicationScoped;
import jakarta.enterprise.context.RequestScoped;
import jakarta.inject.Inject;
import java.util.Map;
import java.util.UUID;
Expand All @@ -35,7 +35,7 @@
import org.slf4j.LoggerFactory;

@Readiness
@ApplicationScoped
@RequestScoped
public class ObjectStoresHealthCheck implements HealthCheck {
private static final Logger LOGGER = LoggerFactory.getLogger(ObjectStoresHealthCheck.class);

Expand Down

0 comments on commit 359a30c

Please sign in to comment.