privateone commited on
Commit
6a13ef1
·
1 Parent(s): d077c72

Testing Changes

Browse files
Files changed (1) hide show
  1. FileStream/bot/__init__.py +1 -1
FileStream/bot/__init__.py CHANGED
@@ -26,7 +26,7 @@ ACTIVE_CLIENTS = {}
26
  async def req_client(PUBLIC_IP:str)-> dict:
27
  index = min(WORK_LOADS, key=WORK_LOADS.get)
28
  faster_client = MULTI_CLIENTS[index]
29
- print(faster_client,WORK_LOADS,MULTI_CLIENTS,type(faster_client,WORK_LOADS,MULTI_CLIENTS))
30
  #ACTIVE_CLIENTS.update(faster_client)
31
  #response = dict(index=index, client=faster_client)
32
  return dict(index=index,public_ip=PUBLIC_IP, client=faster_client)
 
26
  async def req_client(PUBLIC_IP:str)-> dict:
27
  index = min(WORK_LOADS, key=WORK_LOADS.get)
28
  faster_client = MULTI_CLIENTS[index]
29
+ print("Faster Client",faster_client,type(faster_client),"WORK_LOADS",WORK_LOADS,type(WORK_LOADS),"MULTI_CLIENTS",MULTI_CLIENTS,type(MULTI_CLIENTS))
30
  #ACTIVE_CLIENTS.update(faster_client)
31
  #response = dict(index=index, client=faster_client)
32
  return dict(index=index,public_ip=PUBLIC_IP, client=faster_client)