From 961cdbbc3dec641477e80dd18f432d5dfca011e1 Mon Sep 17 00:00:00 2001 From: Bobby Calderwood Date: Thu, 24 Nov 2016 02:08:12 -0500 Subject: [PATCH] Minor tweaks to event-log --- src/com/capitalone/commander/event_log.clj | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/com/capitalone/commander/event_log.clj b/src/com/capitalone/commander/event_log.clj index c51b725..53655ef 100644 --- a/src/com/capitalone/commander/event_log.clj +++ b/src/com/capitalone/commander/event_log.clj @@ -14,13 +14,15 @@ (ns com.capitalone.commander.event-log (:require [clojure.core.async :as a])) +(set! *warn-on-reflection* true) + (defprotocol EventProducer (-send! [this record result-ch] "Sends a single record to the Event Log. Returns result-ch, which will convey record metadata.")) (defn send! - "Sends a single record to the Event Log" + "Writes a single record to the Event Log" ([producer record] (send! producer record (a/promise-chan))) ([producer record result-ch]