##// END OF EJS Templates
mercurial: disable paginate for all commands to prevent potential gunicorn issues....
marcink -
r349:9d03aa86 default
parent child Browse files
Show More
@@ -53,6 +53,7 b' def make_ui_from_config(repo_config):'
53 # make our hgweb quiet so it doesn't print output
53 # make our hgweb quiet so it doesn't print output
54 baseui.setconfig('ui', 'quiet', 'true')
54 baseui.setconfig('ui', 'quiet', 'true')
55
55
56 baseui.setconfig('ui', 'paginate', 'never')
56 # force mercurial to only use 1 thread, otherwise it may try to set a
57 # force mercurial to only use 1 thread, otherwise it may try to set a
57 # signal in a non-main thread, thus generating a ValueError.
58 # signal in a non-main thread, thus generating a ValueError.
58 baseui.setconfig('worker', 'numcpus', 1)
59 baseui.setconfig('worker', 'numcpus', 1)
General Comments 0
You need to be logged in to leave comments. Login now