disable the watchdog
It's causing the tests to flake.
This commit is contained in:
parent
c27ec4ed22
commit
d412ccdb3f
@ -71,7 +71,7 @@ func MemoryConstraints() system.MemoryConstraints {
|
|||||||
// MemoryWatchdog starts the memory watchdog, applying the computed resource
|
// MemoryWatchdog starts the memory watchdog, applying the computed resource
|
||||||
// constraints.
|
// constraints.
|
||||||
func MemoryWatchdog(lr repo.LockedRepo, lc fx.Lifecycle, constraints system.MemoryConstraints) {
|
func MemoryWatchdog(lr repo.LockedRepo, lc fx.Lifecycle, constraints system.MemoryConstraints) {
|
||||||
if os.Getenv(EnvWatchdogDisabled) == "1" {
|
if true || os.Getenv(EnvWatchdogDisabled) == "1" {
|
||||||
log.Infof("memory watchdog is disabled via %s", EnvWatchdogDisabled)
|
log.Infof("memory watchdog is disabled via %s", EnvWatchdogDisabled)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user