Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: podengo-project/idmsvc-backend
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4cb812e364dd4c3f8f2ab150a540726cb5300533
Choose a base ref
..
head repository: podengo-project/idmsvc-backend
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 9190a583522257baed85bb3de23de54bb99bfd61
Choose a head ref
Showing with 1 addition and 1 deletion.
  1. +1 −1 internal/config/config.go
2 changes: 1 addition & 1 deletion internal/config/config.go
Original file line number Diff line number Diff line change
@@ -292,7 +292,7 @@ func setClowderConfiguration(v *viper.Viper, clowderConfig *clowder.AppConfig) {
v.Set("logging.cloudwatch.secret", clowderConfig.Logging.Cloudwatch.SecretAccessKey)
// TODO Delete the block below when the below PR is merged
// See: https://github.com/RedHatInsights/clowder/pull/627
if clowderConfig.Logging.Type == "" {
if clowderConfig.Logging.Type == "" && len(clowderConfig.Logging.Cloudwatch.SecretAccessKey) > 0 {
v.Set("logging.type", "cloudwatch")
}
}