@blaxel/core 0.2.87-preview.168 → 0.2.87-preview.169
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.
- package/dist/cjs/.tsbuildinfo +1 -1
- package/dist/cjs/common/h2pool.js +9 -0
- package/dist/cjs/common/settings.js +2 -2
- package/dist/cjs-browser/.tsbuildinfo +1 -1
- package/dist/cjs-browser/common/settings.js +2 -2
- package/dist/esm/.tsbuildinfo +1 -1
- package/dist/esm/common/h2pool.js +9 -0
- package/dist/esm/common/settings.js +2 -2
- package/dist/esm-browser/.tsbuildinfo +1 -1
- package/dist/esm-browser/common/settings.js +2 -2
- package/package.json +1 -1
|
@@ -153,6 +153,15 @@ class H2Pool {
|
|
|
153
153
|
return session;
|
|
154
154
|
}
|
|
155
155
|
if (await this.ping(session)) {
|
|
156
|
+
// ENG-2676 generation/identity pin: `await this.ping` yields, and during
|
|
157
|
+
// that await an eviction listener (goaway/error/close ->
|
|
158
|
+
// attachEvictionListeners, see above) may have deleted or replaced this
|
|
159
|
+
// entry. `entry` is the exact object held in the map, so if it is no
|
|
160
|
+
// longer the cached generation, refuse the now-stale session instead of
|
|
161
|
+
// handing back a zombie — the ENG-2422 failure re-entering through the
|
|
162
|
+
// validate race. The caller falls through to establish a fresh session.
|
|
163
|
+
if (this.sessions.get(domain) !== entry)
|
|
164
|
+
return null;
|
|
156
165
|
this.markUsed(domain, session);
|
|
157
166
|
return session;
|
|
158
167
|
}
|
|
@@ -11,8 +11,8 @@ const index_js_1 = require("../authentication/index.js");
|
|
|
11
11
|
const env_js_1 = require("../common/env.js");
|
|
12
12
|
const node_js_1 = require("../common/node.js");
|
|
13
13
|
// Build info - these placeholders are replaced at build time by build:replace-imports
|
|
14
|
-
const BUILD_VERSION = "0.2.87-preview.
|
|
15
|
-
const BUILD_COMMIT = "
|
|
14
|
+
const BUILD_VERSION = "0.2.87-preview.169";
|
|
15
|
+
const BUILD_COMMIT = "5357b12d98548db2b306537be7d96d2888ac8cb1";
|
|
16
16
|
const BUILD_SENTRY_DSN = "https://fd5e60e1c9820e1eef5ccebb84a07127@o4508714045276160.ingest.us.sentry.io/4510465864564736";
|
|
17
17
|
const BLAXEL_API_VERSION = "2026-04-16";
|
|
18
18
|
// Cache for config.yaml tracking value
|