PMM-7 add name to copy.

This commit is contained in:
Nurlan Moldomurov 2023-11-15 15:34:45 +03:00 committed by Nurlan Moldomurov
parent f62273552e
commit d8c068d8e1

View File

@ -54,6 +54,7 @@ func newInstance(dsn string) (*instance, error) {
func (i *instance) copy() *instance { func (i *instance) copy() *instance {
return &instance{ return &instance{
dsn: i.dsn, dsn: i.dsn,
name: i.name,
} }
} }