Added back code missed used to merge issues.

This commit is contained in:
Abiola Akinnubi
2025-06-03 06:11:05 -07:00
committed by Nader Arbabian
parent 84f8555361
commit 0c4d89f17b
3 changed files with 12 additions and 6 deletions
+3 -3
View File
@@ -9,7 +9,7 @@ from enum import Enum
from collections import Counter
from dataclasses import dataclass, field, asdict
from urllib.parse import urljoin
from utils.endpoint_util import Endpoint
import requests
from lib.data_types import AuthData, ApiPayload
@@ -79,7 +79,7 @@ class ClientState:
def make_call(self):
self.status = ClientStatus.FetchEndpoint
endpoint_api_key = AuthData.get_endpoint_api_key(
endpoint_api_key = Endpoint.get_endpoint_api_key(
endpoint_name=self.endpoint_group_name,
account_api_key=self.api_key,
)
@@ -233,7 +233,7 @@ def run_test(
print_thread = threading.Thread(target=print_state, args=(clients, num_requests))
print_thread.daemon = True # makes threads get killed on program exit
print_thread.start()
endpoint_api_key = AuthData.get_endpoint_api_key(
endpoint_api_key = Endpoint.get_endpoint_api_key(
endpoint_name=endpoint_group_name,
account_api_key=api_key,
)