Skip to content

Commit

Permalink
[memcached] fix GetMemcachedServerListWithInetString
Browse files Browse the repository at this point in the history
  • Loading branch information
stuggi committed Mar 12, 2024
1 parent 5d715a2 commit 52a11fd
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 52a11fd

Please sign in to comment.