storagenode/preflightcheck: enable database check by default

With the v0.30.5 release we asked the storage node operators to manually
enable the preflight check while they are in front of their machine. We
didn't want to risk taking too many storage nodes offline at the same
time because of some unknow bug. The preflight check worked. We have no
negative feedback. We can now enable it by default.

Change-Id: Ic670ee52becd0b35eca84af7a0841ea983d7b19d
This commit is contained in:
littleskunk 2020-01-24 20:40:40 +01:00 committed by jens
parent e4cff1c938
commit 226bc4de36

View File

@ -12,5 +12,5 @@ var mon = monkit.Package()
// Config for preflight checks
type Config struct {
LocalTimeCheck bool `help:"whether or not preflight check for local system clock is enabled on the satellite side. When disabling this feature, your storagenode may not setup correctly." default:"true"`
DatabaseCheck bool `help:"whether or not preflight check for database is enabled." default:"false"`
DatabaseCheck bool `help:"whether or not preflight check for database is enabled." default:"true"`
}