statusd: use eth.prod fleet by default

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2020-02-10 15:41:12 +01:00 committed by Jakub
parent cca47ef6e1
commit 6b5e97d148
2 changed files with 2 additions and 1 deletions

View File

@ -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())
}

View File

@ -4,6 +4,7 @@ package params
const (
FleetUndefined = ""
FleetBeta = "eth.beta"
FleetProd = "eth.prod"
FleetStaging = "eth.staging"
)