##// END OF EJS Templates
rust-dirstate-status: use fast-path even with fsmonitor and sparse extensions...
Raphaël Gomès -
r43575:6230c70a default
parent child Browse files
Show More
@@ -27,7 +27,6 b' from . import ('
27 policy,
27 policy,
28 pycompat,
28 pycompat,
29 scmutil,
29 scmutil,
30 sparse,
31 txnutil,
30 txnutil,
32 util,
31 util,
33 )
32 )
@@ -1115,11 +1114,6 b' class dirstate(object):'
1115 elif not match.always():
1114 elif not match.always():
1116 # Matchers have yet to be implemented
1115 # Matchers have yet to be implemented
1117 use_rust = False
1116 use_rust = False
1118 # We don't yet have a mechanism for extensions
1119 elif sparse.enabled:
1120 use_rust = False
1121 elif not getattr(self, "_fsmonitordisable", True):
1122 use_rust = False
1123
1117
1124 if use_rust:
1118 if use_rust:
1125 (
1119 (
General Comments 0
You need to be logged in to leave comments. Login now