skip to Main Content

Error invoking scheduled task Error instantiating bean of type [io.micronaut.configuration.lettuce.health.RedisHealthIndicator]

I have the following problem when running this schedule. @Singleton public class TaskScheduler { private static final Logger LOG = LoggerFactory.getLogger(TaskScheduler.class); @Inject private BuildLayerJob buildLayerJob; @Scheduled(fixedDelay = "30s", initialDelay = "30s") public void loadRegistriesDescriptions(){ try { LOG.info("Cargando lista de registries…

VIEW QUESTION

Redis – Why cannot import library from go get?

I downloaded go-redis client using go mod init github.com/my/repo go get github.com/go-redis/redis/v8 But it showed cannot find package "go.opentelemetry.io/otel/api/trace". So I deleted go-redis from ${GOPATH}/src/github.com and then tried running it again go get github.com/go-redis/redis/v8 But it does nothing. Doesn't show…

VIEW QUESTION
Back To Top
Search