Skip to content

Commit

Permalink
Revert "R - Bruker SPRING_PROFILES_ACTIVE isteden for ENV"
Browse files Browse the repository at this point in the history
This reverts commit 2fc94dd.
  • Loading branch information
dskarpas committed Jun 3, 2024
1 parent bce362c commit 6fc2753
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import org.springframework.web.server.ResponseStatusException
*/
@Component
class PensjonsinformasjonService(private val pensjonsinformasjonClient: PensjonsinformasjonClient,
@Value("\${SPRING_PROFILES_ACTIVE}") private val environment: String
@Value("\${ENV}") private val environment: String
) {

private val logger: Logger by lazy { LoggerFactory.getLogger(PensjonsinformasjonService::class.java) }
Expand Down Expand Up @@ -76,7 +76,7 @@ class PensjonsinformasjonService(private val pensjonsinformasjonClient: Pensjons
logger.debug("Starter [vedtak] Preutfylling Utfylling Data")
logger.debug("vedtakId: $vedtakId")

val pensjonsinformasjon = if( environment.contains("test") || environment.contains("q1") ) {
val pensjonsinformasjon = if( environment == "test") {
logger.debug("Henter ikke vedtak i q1")
return Pensjonsinformasjon()
} else {
Expand Down

0 comments on commit 6fc2753

Please sign in to comment.