forked from TrueCloudLab/frostfs-api-go
Airat Arifullin
b171364079
* Introduce `frostfsServiceNamePrefix` for rpc interface since `apemanager` uses `frostfs` root instead `neo.fs`. Signed-off-by: Airat Arifullin <a.arifullin@yadro.com>
10 lines
306 B
Go
10 lines
306 B
Go
package rpc
|
|
|
|
const (
|
|
// serviceNamePrefix is still used in "old" services but should be
|
|
// considered as deprecated. Since new services use "frostfs" root,
|
|
// `frostfsServiceNamePrefix` must be used for their rpc interface.
|
|
serviceNamePrefix = "neo.fs.v2."
|
|
|
|
frostfsServiceNamePrefix = "frostfs.v2."
|
|
)
|