mirror of
https://github.com/gitui-org/gitui
synced 2026-05-23 08:58:21 +00:00
remove debug sleep (fixes #1451)
This commit is contained in:
parent
ca19d42948
commit
6c4ee56eed
2 changed files with 1 additions and 3 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue