Skip to content

Commit

Permalink
fix: wait time for background jobs too short
Browse files Browse the repository at this point in the history
  • Loading branch information
jpstotz authored and skylot committed Dec 26, 2018
1 parent eadf046 commit 1ac2cdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jadx-gui/src/main/java/jadx/gui/jobs/BackgroundJob.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public ShutdownTask() {
public Boolean call() throws Exception {
runJob();
executor.shutdown();
return executor.awaitTermination(5, TimeUnit.MINUTES);
return executor.awaitTermination(5, TimeUnit.DAYS);
}
});
}
Expand Down

0 comments on commit 1ac2cdf

Please sign in to comment.