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 e435378 commit 4d752a8Copy full SHA for 4d752a8
src/dstack/_internal/core/backends/verda/compute.py
@@ -155,18 +155,16 @@ def create_instance(
155
try:
156
_delete_startup_script(self.client, startup_script_id)
157
except Exception:
158
- logger.warning(
+ logger.exception(
159
"Failed to cleanup startup script %s after provisioning failure.",
160
startup_script_id,
161
- exc_info=True,
162
)
163
164
_delete_ssh_keys(self.client, ssh_ids)
165
166
167
"Failed to cleanup ssh keys %s after provisioning failure.",
168
ssh_ids,
169
170
171
raise
172
return JobProvisioningData(
0 commit comments