Skip to content
Snippets Groups Projects
Commit b801d16d authored by Damian Johnson's avatar Damian Johnson
Browse files

Use inference as the primary resolver when DisableDebuggerAttachment is set

On reflection it will be less confusing if inference is used as the primary
resolver in all scenarios.
parent 157b9b36
No related branches found
No related tags found
No related merge requests found
......@@ -511,7 +511,7 @@ class ConnectionTracker(Daemon):
# in town.
if tor_controller().get_conf('DisableDebuggerAttachment', None) == '0':
self._resolvers = connection.system_resolvers() + [CustomResolver.INFERENCE]
self._resolvers = [CustomResolver.INFERENCE] + connection.system_resolvers()
else:
self._resolvers = [CustomResolver.INFERENCE]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment