Compare commits
3 commits
5b9a8906d2
...
8decf941c8
Author | SHA1 | Date | |
---|---|---|---|
8decf941c8 | |||
eb42745383 | |||
126d5d3ef5 |
2 changed files with 1 additions and 1 deletions
|
@ -53,6 +53,7 @@ impl Handler<ReceiveCIStatus> for RepoActor {
|
||||||
},
|
},
|
||||||
log.as_ref(),
|
log.as_ref(),
|
||||||
);
|
);
|
||||||
|
// FIXME: this blocks the thread and prevents UI from being updated
|
||||||
delay_send(
|
delay_send(
|
||||||
&addr,
|
&addr,
|
||||||
sleep_duration,
|
sleep_duration,
|
||||||
|
|
|
@ -111,7 +111,6 @@ impl Handler<ValidateRepo> for RepoActor {
|
||||||
.wait(ctx);
|
.wait(ctx);
|
||||||
}
|
}
|
||||||
Err(Error::UserIntervention(user_notification)) => {
|
Err(Error::UserIntervention(user_notification)) => {
|
||||||
// FIXME: end up here when doing git force push to leave this situation
|
|
||||||
self.alert_tui(format!("[USER INTERVENTION: {user_notification}]"));
|
self.alert_tui(format!("[USER INTERVENTION: {user_notification}]"));
|
||||||
if let UserNotification::CICheckFailed { log, .. }
|
if let UserNotification::CICheckFailed { log, .. }
|
||||||
| UserNotification::DevNotBasedOnMain { log, .. } = &user_notification
|
| UserNotification::DevNotBasedOnMain { log, .. } = &user_notification
|
||||||
|
|
Loading…
Reference in a new issue