summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/interpreter.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/interpreter.rs b/src/interpreter.rs
index f122fc2..7f401de 100644
--- a/src/interpreter.rs
+++ b/src/interpreter.rs
@@ -70,7 +70,6 @@ impl Interpreter<Event, Command> for EventInterpreter {
match request.status {
Status::Pending => ctx.send(Command::StartDownload(id)),
- /* FIXME(PRO-1654): race condition due to prior in-progress operations
Status::InFlight if self.pacman != PackageManager::Off => {
if self.pacman.is_installed(&request.packageId) {
let report = UpdateReport::single(id, UpdateResultCode::OK, "".to_string());
@@ -79,7 +78,6 @@ impl Interpreter<Event, Command> for EventInterpreter {
ctx.send(Command::StartDownload(id));
}
}
- */
_ => ()
}