We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc1c2df commit d63ff6aCopy full SHA for d63ff6a
dataplane/src/main/java/io/sentrius/sso/core/services/selfhealing/SelfHealingOrchestrator.java
@@ -9,6 +9,7 @@
9
import lombok.extern.slf4j.Slf4j;
10
import org.springframework.beans.factory.annotation.Autowired;
11
import org.springframework.beans.factory.annotation.Value;
12
+import org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication;
13
import org.springframework.scheduling.annotation.Async;
14
import org.springframework.scheduling.annotation.Scheduled;
15
import org.springframework.stereotype.Service;
@@ -21,6 +22,7 @@
21
22
*/
23
@Slf4j
24
@Service
25
+@ConditionalOnWebApplication(type = ConditionalOnWebApplication.Type.SERVLET)
26
public class SelfHealingOrchestrator {
27
28
@Autowired
0 commit comments