github.com/voedger/voedger@v0.0.0-20240520144910-273e84102129/pkg/cluster/errors.go (about) 1 /* 2 * Copyright (c) 2024-present unTill Software Development Group B.V. 3 * @author Denis Gribanov 4 */ 5 6 package cluster 7 8 import "errors" 9 10 var ( 11 ErrNumPartitionsChanged = errors.New("num partitions changed") 12 ErrNumAppWorkspacesChanged = errors.New("num application workspaces changed") 13 )