##// END OF EJS Templates
inotify: auto-start by default when enabled
Matt Mackall -
r7218:1bd7f904 default
parent child Browse files
Show More
@@ -64,7 +64,7 b' def reposetup(ui, repo):'
64 'removing it)\n'))
64 'removing it)\n'))
65 os.unlink(repo.join('inotify.sock'))
65 os.unlink(repo.join('inotify.sock'))
66 if err[0] in (errno.ECONNREFUSED, errno.ENOENT) and \
66 if err[0] in (errno.ECONNREFUSED, errno.ENOENT) and \
67 ui.configbool('inotify', 'autostart'):
67 ui.configbool('inotify', 'autostart', True):
68 query = None
68 query = None
69 ui.debug(_('(starting inotify server)\n'))
69 ui.debug(_('(starting inotify server)\n'))
70 try:
70 try:
@@ -1,5 +1,5 b''
1 % fail
1 % fail
2 failed to contact inotify server: No such file or directory
2 could not talk to new inotify server: No such file or directory
3 abort: could not start server: File exists
3 abort: could not start server: File exists
4 % inserve
4 % inserve
5 % status
5 % status
General Comments 0
You need to be logged in to leave comments. Login now