Skip to content

Commit

Permalink
change profiles so that we can monitor data in staging (#610)
Browse files Browse the repository at this point in the history
  • Loading branch information
lkemperman-cfa committed Feb 7, 2024
1 parent edb4117 commit 8b9b7b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

@Slf4j
@Component
@Profile("!production")
@Profile({"dev", "test", "demo"})
public class MockSftpClientImpl implements SftpClient {

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

@Component
@Slf4j
@Profile("production")
@Profile({"production", "staging"})
public class SftpClientImpl implements SftpClient {

String username;
Expand Down

0 comments on commit 8b9b7b6

Please sign in to comment.