f237d70098
Use debug.Server in storage node and satellite for customizing debug server. Change-Id: I7979412376d028cadf29656d838ab94f18e2aa99
26 lines
673 B
Go
26 lines
673 B
Go
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package main
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
"github.com/spf13/viper"
|
|
|
|
"storj.io/storj/cmd/uplink/cmd"
|
|
"storj.io/storj/pkg/process"
|
|
)
|
|
|
|
func main() {
|
|
process.ExecWithCustomConfig(cmd.RootCmd, true, func(cmd *cobra.Command, vip *viper.Viper) error {
|
|
accessFlag := cmd.Flags().Lookup("access")
|
|
// try to load configuration because we may still need 'accesses' (for named access)
|
|
// field but error only if 'access' flag is not set
|
|
err := process.LoadConfig(cmd, vip)
|
|
if err != nil && (accessFlag == nil || accessFlag.Value.String() == "") {
|
|
return err
|
|
}
|
|
return nil
|
|
})
|
|
}
|