Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## [Unreleased]

### Fixed

- Increase timeout for start command ([#219](https://github.com/src-d/sourced-ce/pull/219))

## [v0.15.1](https://github.com/src-d/sourced-ce/releases/tag/v0.15.1) - 2019-08-27

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion cmd/sourced/cmd/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ func (c *startCmd) Execute(args []string) error {
return err
}

return OpenUI(30 * time.Second)
return OpenUI(30 * time.Minute)

}

Expand Down