Skip to content

Commit

Permalink
Merge pull request #259 from splitio/fix/hide_redis_pass
Browse files Browse the repository at this point in the history
hide redis password
  • Loading branch information
mmelograno authored Dec 20, 2023
2 parents 292b858 + 0f2619f commit 6eae033
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion splitio/commitversion.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ This file is created automatically, please do not edit
*/

// CommitVersion is the version of the last commit previous to release
const CommitVersion = "cf3da63"
const CommitVersion = "5ed4245"
1 change: 1 addition & 0 deletions splitio/producer/initialization.go
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,7 @@ func Start(logger logging.LoggerInterface, cfg *conf.Main) error {

cfgForAdmin := *cfg
cfgForAdmin.Apikey = logging.ObfuscateAPIKey(cfgForAdmin.Apikey)
cfgForAdmin.Storage.Redis.Pass = "xxxxxxxxxxxxxxx"
adminServer, err := admin.NewServer(&admin.Options{
Host: cfg.Admin.Host,
Port: int(cfg.Admin.Port),
Expand Down
2 changes: 1 addition & 1 deletion splitio/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
package splitio

// Version is the version of this Agent
const Version = "5.5.0"
const Version = "5.5.1-rc1"

0 comments on commit 6eae033

Please sign in to comment.