Alex Vanin
20de74a505
Due to source code relocation from GitHub. Signed-off-by: Alex Vanin <a.vanin@yadro.com>
29 lines
938 B
Go
29 lines
938 B
Go
package innerring
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/innerring/processors/netmap/nodevalidation/state"
|
|
netmapclient "git.frostfs.info/TrueCloudLab/frostfs-node/pkg/morph/client/netmap"
|
|
)
|
|
|
|
/*
|
|
File contains dependencies for processor of the Netmap contract's notifications.
|
|
*/
|
|
|
|
// wraps Netmap contract's client and provides state.NetworkSettings.
|
|
type networkSettings netmapclient.Client
|
|
|
|
// MaintenanceModeAllowed requests network configuration from the Sidechain
|
|
// and check allowance of storage node's maintenance mode according to it.
|
|
// Always returns state.ErrMaintenanceModeDisallowed.
|
|
func (s *networkSettings) MaintenanceModeAllowed() error {
|
|
allowed, err := (*netmapclient.Client)(s).MaintenanceModeAllowed()
|
|
if err != nil {
|
|
return fmt.Errorf("read maintenance mode's allowance from the Sidechain: %w", err)
|
|
} else if allowed {
|
|
return nil
|
|
}
|
|
|
|
return state.ErrMaintenanceModeDisallowed
|
|
}
|