statusd: use eth.prod fleet by default
Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
cca47ef6e1
commit
6b5e97d148
|
@ -87,7 +87,7 @@ func main() {
|
|||
os.Exit(1)
|
||||
}
|
||||
|
||||
opts := []params.Option{params.WithFleet(params.FleetBeta)}
|
||||
opts := []params.Option{params.WithFleet(params.FleetProd)}
|
||||
if *mailserver {
|
||||
opts = append(opts, params.WithMailserver())
|
||||
}
|
||||
|
|
|
@ -4,6 +4,7 @@ package params
|
|||
const (
|
||||
FleetUndefined = ""
|
||||
FleetBeta = "eth.beta"
|
||||
FleetProd = "eth.prod"
|
||||
FleetStaging = "eth.staging"
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue