From 6c752fd2ec9bc81dc2f4b727580d7dd7a42b9165 Mon Sep 17 00:00:00 2001 From: Arpit Temani Date: Mon, 2 Sep 2024 18:07:19 +0530 Subject: [PATCH] change default queue name --- paladin-core/src/runtime/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paladin-core/src/runtime/mod.rs b/paladin-core/src/runtime/mod.rs index faa1e6f..3a58512 100644 --- a/paladin-core/src/runtime/mod.rs +++ b/paladin-core/src/runtime/mod.rs @@ -123,7 +123,7 @@ pub struct Runtime { } const IPC_ROUTING_KEY: &str = "ffffffff-ffff-ffff-ffff-ffffffffffff"; -const DEFAULT_ROUTING_KEY: &str = "task"; +pub const DEFAULT_ROUTING_KEY: &str = "default"; impl Runtime { /// Initializes the [`Runtime`] with the provided [`Config`].