create-ekka-desktop-app 0.3.3 → 0.3.4
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/package.json
CHANGED
|
@@ -741,18 +741,9 @@ fn handle_ensure_node_identity(state: &EngineState) -> EngineResponse {
|
|
|
741
741
|
/// Requires local engine to be available (strict local engine mode).
|
|
742
742
|
/// Does NOT use Ed25519 register/challenge/session flow.
|
|
743
743
|
fn handle_bootstrap_node_session(payload: &Value, state: &EngineState) -> EngineResponse {
|
|
744
|
-
//
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
op = "node_runner.skipped.engine_unavailable",
|
|
748
|
-
engine_available = false,
|
|
749
|
-
"Node session bootstrap skipped: local engine not available"
|
|
750
|
-
);
|
|
751
|
-
return EngineResponse::err(
|
|
752
|
-
"ENGINE_UNAVAILABLE",
|
|
753
|
-
"Local engine not available. Node session requires local engine.",
|
|
754
|
-
);
|
|
755
|
-
}
|
|
744
|
+
// NodeSessionRunner is an in-process runner that uses node session auth (Authorization: Bearer).
|
|
745
|
+
// It does NOT require the local engine-bootstrap binary - it makes direct HTTP calls to the engine API.
|
|
746
|
+
// The engine_available check was overly restrictive and has been removed.
|
|
756
747
|
|
|
757
748
|
// Get home_path
|
|
758
749
|
let home_path = match state.home_path.lock() {
|