rel 0.9
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user