summaryrefslogtreecommitdiff
path: root/distbuild
diff options
context:
space:
mode:
Diffstat (limited to 'distbuild')
-rw-r--r--distbuild/worker_build_scheduler.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/distbuild/worker_build_scheduler.py b/distbuild/worker_build_scheduler.py
index 041cc0e9..d8b1ae93 100644
--- a/distbuild/worker_build_scheduler.py
+++ b/distbuild/worker_build_scheduler.py
@@ -331,13 +331,8 @@ class WorkerConnection(distbuild.StateMachine):
def _maybe_cancel(self, event_source, build_cancel):
logging.debug('WC: BuildController %r requested a cancel' %
event_source)
- if build_cancel.id == self._initiator_id:
- distbuild.crash_point()
- for id in self._initiator_request_map[self._initiator_id]:
- logging.debug('WC: Cancelling exec %s' % id)
- msg = distbuild.message('exec-cancel', id=id)
- self._jm.send(msg)
+ # TODO: implement cancel
def _reconnect(self, event_source, event):
distbuild.crash_point()