Skip to content

Commit 893168e

Browse files
extrawurstIndianBoy42
authored andcommitted
remove debug sleep (fixes gitui-org#1451)
1 parent 4adfdbb commit 893168e

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313
### Fixes
1414
* commit msg history ordered the wrong way ([#1445](https://github.com/extrawurst/gitui/issues/1445))
1515
* improve help documentation for amend cmd ([#1448](https://github.com/extrawurst/gitui/issues/1448))
16+
* lag issue when showing files tab ([#1451](https://github.com/extrawurst/gitui/issues/1451))
1617

1718
## [0.22.1] - 2022-11-22
1819

asyncgit/src/treefiles.rs

-3
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,6 @@ impl AsyncJob for AsyncTreeFilesJob {
6565
JobState::Request { commit, repo } => {
6666
let files = tree_files(&repo, commit);
6767

68-
std::thread::sleep(
69-
std::time::Duration::from_secs(2),
70-
);
7168
JobState::Response(FileTreeResult {
7269
commit,
7370
result: files,

0 commit comments

Comments
 (0)