This commit is contained in:
2024-12-22 17:20:59 +01:00
parent 974464aa5d
commit 368bf9fa82
4 changed files with 44 additions and 2 deletions

View File

@@ -35,7 +35,7 @@ class CurrentClients:
def start_client(self, client, args):
process = subprocess.Popen(
[f'{self.venv_path}/bin/python3', args.ase_receiver, client],
[f'{self.venv_path}/bin/python3 {args.ase_receiver} {client}'],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
text=True
@@ -82,7 +82,7 @@ def ctrl_client_mod(client, userdata, message):
def get_credentials(args):
url = args.wallet + "get"
data = {
"master_password": "Ase#2024@wallet!",
"master_password": os.getenv('WALLET_MASTER_PASSWORD'),
"site": "mqtt_control"
}
response = requests.post(url, json=data)