From 59d027ca0219b0edf1971e6ef0d5ea1b40aa8896 Mon Sep 17 00:00:00 2001 From: belikor Date: Tue, 6 Jul 2021 11:39:08 -0500 Subject: [PATCH] script/find_max_server: fix the import of `ClientSession` This is nothing special, it just allows the module to run without throwing an error on the import. From ``` from lbry.wallet.client.basenetwork import ClientSession ``` To ``` from lbry.wallet.network import ClientSession ``` --- scripts/find_max_server_load.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/find_max_server_load.py b/scripts/find_max_server_load.py index 11f0d5082..9c252bb39 100644 --- a/scripts/find_max_server_load.py +++ b/scripts/find_max_server_load.py @@ -2,7 +2,7 @@ import time import asyncio import random from argparse import ArgumentParser -from lbry.wallet.client.basenetwork import ClientSession +from lbry.wallet.network import ClientSession class AgentSmith(ClientSession):