Skip to content

Commit

Permalink
fix(redis): fix accidental change of default redis key prefix (#769)
Browse files Browse the repository at this point in the history
In moving a Value annotation to config properties, the default was changed from spinnaker:fiat to fiat
This switches the default back to its original value
  • Loading branch information
cfieber committed Sep 9, 2020
1 parent 6aeed13 commit 9bfa0fd
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -7,7 +7,7 @@
@ConfigurationProperties("fiat.redis")
public class RedisPermissionRepositoryConfigProps {

private String prefix = "fiat";
private String prefix = "spinnaker:fiat";

@NestedConfigurationProperty private Repository repository = new Repository();

Expand Down

0 comments on commit 9bfa0fd

Please sign in to comment.