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)
|
os.Exit(1)
|
||||||
}
|
}
|
||||||
|
|
||||||
opts := []params.Option{params.WithFleet(params.FleetBeta)}
|
opts := []params.Option{params.WithFleet(params.FleetProd)}
|
||||||
if *mailserver {
|
if *mailserver {
|
||||||
opts = append(opts, params.WithMailserver())
|
opts = append(opts, params.WithMailserver())
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,6 +4,7 @@ package params
|
||||||
const (
|
const (
|
||||||
FleetUndefined = ""
|
FleetUndefined = ""
|
||||||
FleetBeta = "eth.beta"
|
FleetBeta = "eth.beta"
|
||||||
|
FleetProd = "eth.prod"
|
||||||
FleetStaging = "eth.staging"
|
FleetStaging = "eth.staging"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue