We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03d471b commit 4bf26cfCopy full SHA for 4bf26cf
command/ota/upload.go
@@ -11,8 +11,10 @@ import (
11
)
12
13
const (
14
- otaExpirationMins = 10
15
- otaDeferredExpirationMins = 10000
+ // default ota should complete in 10 mins
+ otaExpirationMins = 10
16
+ // deferred ota can take up to 1 week (equal to 10080 minutes)
17
+ otaDeferredExpirationMins = 10080
18
19
20
// UploadParams contains the parameters needed to
0 commit comments