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 5c61b9b commit b06e942Copy full SHA for b06e942
src/aleph/sdk/client/vmclient.py
@@ -134,8 +134,8 @@ async def get_logs(self, vm_id):
134
135
payload = self.create_payload(vm_id, "logs")
136
signed_operation = self.sign_payload(payload, self.ephemeral_key)
137
-
138
- ws_url, header = await self._generate_header(vm_id=vm_id, operation="logs")
+ path = payload["path"]
+ ws_url = f"{self.node_url}{payload[path]}"
139
140
async with self.session.ws_connect(ws_url) as ws:
141
auth_message = {
0 commit comments