Skip to content

Commit

Permalink
DEVEX-1899 Increase wait for initialization to 90 seconds (#66)
Browse files Browse the repository at this point in the history
* Increase wait for initialization to 90 seconds

* Bump version to v0.24.1
  • Loading branch information
kpjensen authored May 10, 2021
1 parent 4fffdaf commit 8551c08
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cli/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ func fsDaemon(
}

func waitForReady(logFile string) string {
for i := 0; i < 10; i++ {
for i := 0; i < 90; i++ {
time.Sleep(1 * time.Second)

// read the log file and look for either "ready" or "error"
Expand Down
2 changes: 1 addition & 1 deletion util.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const (
MaxDirSize = 255 * 1000
MaxNumFileHandles = 1000 * 1000
NumRetriesDefault = 10
Version = "v0.24.0"
Version = "v0.24.1"
)
const (
InodeInvalid = 0
Expand Down

0 comments on commit 8551c08

Please sign in to comment.