We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9041ad7 commit 270913bCopy full SHA for 270913b
src/ziggurat/init.clj
@@ -16,7 +16,7 @@
16
[ziggurat.util.java-util :as util])
17
(:gen-class
18
:name tech.gojek.ziggurat.internal.Init
19
- :methods [^{:static true} [initJava [java.util.Map] void]]))
+ :methods [^{:static true} [init [java.util.Map] void]]))
20
21
(defstate statsd-reporter
22
:start (metrics/start-statsd-reporter (:datadog (ziggurat-config))
@@ -192,5 +192,5 @@
192
(stop stop-fn modes)
193
(System/exit 1)))))
194
195
-(defn -initJava [args]
+(defn -init [args]
196
(main (util/java->clojure-map args)))
0 commit comments