add_mix_content_capability #2

Merged
ton merged 25 commits from add_mix_content_capability into main 2026-02-19 12:27:59 +00:00
4 changed files with 7 additions and 8 deletions
Showing only changes of commit 9ea9d55eee - Show all commits

View File

@@ -4,17 +4,16 @@
#
# This is serviceB - the receiver that receives a dummy dictionary from serviceA
using NATSBridge
using UUIDs
using JSON
using Dates
# Include the NATSBridge module
include("src/NATSBridge.jl")
include("../src/NATSBridge.jl")
# Configuration
const SUBJECT = "/NATSBridge_dict_test"
const NATS_URL = "nats://localhost:4222"
const NATS_URL = "nats.yiem.cc"
# Helper: Log with correlation ID
function log_trace(correlation_id::String, message::String)

View File

@@ -4,17 +4,17 @@
#
# This is serviceA - the sender that sends a dummy dictionary to serviceB
using NATSBridge
using UUIDs
using JSON
using Dates
# Include the NATSBridge module
include("src/NATSBridge.jl")
include("../src/NATSBridge.jl")
# Configuration
const SUBJECT = "/NATSBridge_dict_test"
const NATS_URL = "nats://localhost:4222"
const FILESERVER_URL = "http://localhost:8080"
const NATS_URL = "nats.yiem.cc"
const FILESERVER_URL = "http://192.168.88.104:8080"
# Create correlation ID for tracing
correlation_id = string(uuid4())
@@ -47,7 +47,7 @@ function send_dictionary()
),
"metadata" => Dict(
"sender" => "serviceA",
"timestamp" => Dates.now().iso8601
"timestamp" => string(Dates.now())
)
)