main_tool: disable aiohttp backend for arm64
This commit is contained in:
parent
2356abd1b4
commit
e2ea3b5d26
1 changed files with 3 additions and 1 deletions
|
|
@ -384,7 +384,9 @@ if gc.prog_name.endswith('-tool'):
|
||||||
opts_data = opts_data,
|
opts_data = opts_data,
|
||||||
parsed_opts = po,
|
parsed_opts = po,
|
||||||
need_proto = cls.need_proto,
|
need_proto = cls.need_proto,
|
||||||
init_opts = {'rpc_backend':'aiohttp'} if cmd == 'twimport' else None,
|
init_opts = {'rpc_backend':'aiohttp'} if cmd == 'twimport'
|
||||||
|
and gc.machine != 'aarch64' # TODO: aiohttp + Reth is broken for arm64
|
||||||
|
else None,
|
||||||
process_opts = True)
|
process_opts = True)
|
||||||
|
|
||||||
cmd, *args = cfg._args
|
cmd, *args = cfg._args
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue