From 65198a643e40035e8fe5cc6318536945eb060058 Mon Sep 17 00:00:00 2001 From: Jamie Grant Date: Thu, 6 Aug 2026 11:03:58 +0100 Subject: [PATCH] pass through date param in callendofday --- di/pubsub/pubsub.q | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/di/pubsub/pubsub.q b/di/pubsub/pubsub.q index d0c7f8dd..d471fd04 100644 --- a/di/pubsub/pubsub.q +++ b/di/pubsub/pubsub.q @@ -75,10 +75,10 @@ closesub:{[h] .z.pc:{closesub[x]}; / broadcast to all subscribers upon end of day, client needs to define endofday function -callendofday:{(neg getallhandles[])@\:`endofday`}; +callendofday:{[d](neg getallhandles[])@\:(`endofday;d)}; / broadcast to all subscribers upon end of period, client needs to define endofperiod function -callendofperiod:{(neg getallhandles[])@\:`endofperiod`}; +callendofperiod:{(neg getallhandles[])@\:(`endofperiod;x)}; / get table schema extractschema:{[table]0#value table};