##// END OF EJS Templates
darwin: add another preemptive gui() call when using chg...
Kyle Lippincott -
r44850:6392bd7c default
parent child Browse files
Show More
@@ -545,6 +545,10 b' class unixforkingservice(object):'
545 if maxlen < 0:
545 if maxlen < 0:
546 raise error.Abort(_(b'negative max-repo-cache size not allowed'))
546 raise error.Abort(_(b'negative max-repo-cache size not allowed'))
547 self._repoloader = repocache.repoloader(ui, maxlen)
547 self._repoloader = repocache.repoloader(ui, maxlen)
548 # attempt to avoid crash in CoreFoundation when using chg after fix in
549 # a89381e04c58
550 if pycompat.isdarwin:
551 procutil.gui()
548
552
549 def init(self):
553 def init(self):
550 self._sock = socket.socket(socket.AF_UNIX)
554 self._sock = socket.socket(socket.AF_UNIX)
General Comments 0
You need to be logged in to leave comments. Login now