Skip to content

Commit

Permalink
remove debug sleep (fixes #1451)
Browse files Browse the repository at this point in the history
  • Loading branch information
extrawurst committed Nov 25, 2022
1 parent ca19d42 commit 6c4ee56
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixes
* commit msg history ordered the wrong way ([#1445](https://github.com/extrawurst/gitui/issues/1445))
* improve help documentation for amend cmd ([#1448](https://github.com/extrawurst/gitui/issues/1448))
* lag issue when showing files tab ([#1451](https://github.com/extrawurst/gitui/issues/1451))

## [0.22.1] - 2022-11-22

Expand Down
3 changes: 0 additions & 3 deletions asyncgit/src/treefiles.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,6 @@ impl AsyncJob for AsyncTreeFilesJob {
JobState::Request { commit, repo } => {
let files = tree_files(&repo, commit);

std::thread::sleep(
std::time::Duration::from_secs(2),
);
JobState::Response(FileTreeResult {
commit,
result: files,
Expand Down

0 comments on commit 6c4ee56

Please sign in to comment.