We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e45fff commit 29884a7Copy full SHA for 29884a7
tests/performance/locust_files/platform_ping_test.py
@@ -19,15 +19,15 @@
19
assert locust_plugins # nosec
20
21
22
-class LocustAuth(BaseSettings):
+class MonitoringBasicAuth(BaseSettings):
23
SC_USER_NAME: str = Field(default=..., examples=["<your username>"])
24
SC_PASSWORD: str = Field(default=..., examples=["<your password>"])
25
26
27
class WebApiUser(FastHttpUser):
28
def __init__(self, *args, **kwargs):
29
super().__init__(*args, **kwargs)
30
- _auth = LocustAuth()
+ _auth = MonitoringBasicAuth()
31
self.auth = (
32
_auth.SC_USER_NAME,
33
_auth.SC_PASSWORD,
0 commit comments