server: Do not modify hostname when printing

The `<<` operator would modify the original hostname string for the
server when calling Server#to_s.
This commit is contained in:
Vicent Marti 2016-03-16 14:48:42 +01:00
Родитель 0544f5ea56
Коммит f534ae435f
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -11,7 +11,7 @@ module Memcached
end
def to_s
s = hostname
s = hostname.dup
s << ":#{port}" if 0 != port
s << ":#{weight}" if weight
s