Show More
@@ -131,6 +131,9 b" coreconfigitem('format', 'usefncache'," | |||
|
131 | 131 | coreconfigitem('format', 'usegeneraldelta', |
|
132 | 132 | default=True, |
|
133 | 133 | ) |
|
134 | coreconfigitem('format', 'usestore', | |
|
135 | default=True, | |
|
136 | ) | |
|
134 | 137 | coreconfigitem('hostsecurity', 'ciphers', |
|
135 | 138 | default=None, |
|
136 | 139 | ) |
@@ -2074,7 +2074,7 b' def newreporequirements(repo):' | |||
|
2074 | 2074 | """ |
|
2075 | 2075 | ui = repo.ui |
|
2076 | 2076 | requirements = {'revlogv1'} |
|
2077 |
if ui.configbool('format', 'usestore' |
|
|
2077 | if ui.configbool('format', 'usestore'): | |
|
2078 | 2078 | requirements.add('store') |
|
2079 | 2079 | if ui.configbool('format', 'usefncache'): |
|
2080 | 2080 | requirements.add('fncache') |
General Comments 0
You need to be logged in to leave comments.
Login now