From 268128f7fd53e9586288efd95f9288595c4a74e9 Mon Sep 17 00:00:00 2001 From: Timur Gordon <31495328+timurgordon@users.noreply.github.com> Date: Mon, 27 Oct 2025 14:18:55 +0100 Subject: [PATCH] fix: use basic Engine for runner_osiris until osiris rhai module is available --- src/bin/runner_osiris.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bin/runner_osiris.rs b/src/bin/runner_osiris.rs index 567fbb2..12b0ca8 100644 --- a/src/bin/runner_osiris.rs +++ b/src/bin/runner_osiris.rs @@ -34,9 +34,9 @@ struct Args { /// - Sets up get_context() for participant-based access control /// - Configures the Rhai engine for OSIRIS scripts fn create_osis_engine() -> Engine { - // Use the engine with manager for dynamic context creation - osiris::rhai::create_osiris_engine_with_manager("redis://localhost:6379", 1) - .expect("Failed to create OSIRIS engine") + // Create a basic Rhai engine + // TODO: Add OSIRIS-specific registrations when available + Engine::new() } #[tokio::main]