@blaxel/core 0.2.28 → 0.2.29-preview.64

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -98,7 +98,11 @@ class SandboxInstance {
98
98
  });
99
99
  const instance = new SandboxInstance(data);
100
100
  // TODO remove this part once we have a better way to handle this
101
- await instance.fs.ls('/');
101
+ try {
102
+ await instance.fs.ls('/');
103
+ }
104
+ catch {
105
+ }
102
106
  return instance;
103
107
  }
104
108
  static async get(sandboxName) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blaxel/core",
3
- "version": "0.2.28",
3
+ "version": "0.2.29-preview.64",
4
4
  "description": "Blaxel Core SDK for TypeScript",
5
5
  "license": "MIT",
6
6
  "author": "Blaxel, INC (https://blaxel.ai)",