diff --git a/internal/endpoint/endpoint.go b/internal/endpoint/endpoint.go index f778015..f0ae201 100644 --- a/internal/endpoint/endpoint.go +++ b/internal/endpoint/endpoint.go @@ -596,11 +596,7 @@ func clientRoot(rootFS *zfs.DatasetPath, clientIdentity string) (*zfs.DatasetPat } func (s *Receiver) clientRootFromCtx(ctx context.Context) *zfs.DatasetPath { - if !s.conf.AppendClientIdentity { - return s.conf.RootWithoutClientComponent.Copy() - } - - // Патч: всегда возвращаем только root_fs без client_identity + // Патч: Игнорируем AppendClientIdentity и всегда возвращаем чистый root_fs return s.conf.RootWithoutClientComponent.Copy() }