Skip to content

Commit

Permalink
Merge pull request #199 from stuggi/fix_memcachend_inet
Browse files Browse the repository at this point in the history
[memcached] fix GetMemcachedServerListWithInetString
  • Loading branch information
openshift-merge-bot[bot] authored Mar 12, 2024
2 parents 5d715a2 + 52a11fd commit 455be04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apis/memcached/v1beta1/memcached_funcs.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ func (instance *Memcached) GetMemcachedServerListQuotedString() string {
// GetMemcachedServerListWithInetString - return the memcached servers as comma separated list
// to be used in OpenStack config.
func (instance *Memcached) GetMemcachedServerListWithInetString() string {
return strings.Join(instance.Status.ServerListWithInet, "','")
return strings.Join(instance.Status.ServerListWithInet, ",")
}

// GetMemcachedServerListWithInetQuotedString - return the memcached servers, each quoted, as comma separated list
Expand Down

0 comments on commit 455be04

Please sign in to comment.