##// END OF EJS Templates
commits: disable shadow repo callback daemon
marcink -
r3932:04ab971e default
parent child Browse files
Show More
@@ -654,6 +654,9 b' class SimpleVCS(object):'
654 654 raise NotImplementedError()
655 655
656 656 def _should_use_callback_daemon(self, extras, environ, action):
657 if extras.get('is_shadow_repo'):
658 # we don't want to execute hooks, and callback daemon for shadow repos
659 return False
657 660 return True
658 661
659 662 def _prepare_callback_daemon(self, extras, environ, action, txn_id=None):
General Comments 0
You need to be logged in to leave comments. Login now