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 80b7e34 commit cc79fb0Copy full SHA for cc79fb0
src/main/groovy/com/ofg/microservice/config/ServiceDiscoveryConfiguration.groovy
@@ -5,11 +5,12 @@ import org.springframework.context.annotation.Configuration
5
import org.springframework.context.annotation.Import
6
import org.springframework.context.annotation.Profile
7
8
+import static com.ofg.microservice.Profiles.DEVELOPMENT
9
import static com.ofg.microservice.Profiles.PRODUCTION
10
11
@TypeChecked
12
@Configuration
13
@Import(ServiceResolverConfiguration)
-@Profile(PRODUCTION)
14
+@Profile([PRODUCTION, DEVELOPMENT])
15
class ServiceDiscoveryConfiguration {
16
}
0 commit comments