Results 6 comments of Mayank Pahwa

Thanks a lot @alexander-yakushev for your response. I tried the above with multiple cases and below is what I have found ```clojure ;; Configuration definition (cfg/define {:hdfs-ip {:type :string} :hdfs-port...

I am trying with the following ```clojure (cfg/define {:hdfs-ip {:type :string} :hdfs-port {:type :number} :hdfs-url {:type :string :default nil ;; Needed for delayed transform to work :delayed-transform #(or % (str...

I have another question My configuration definition is: ```clojure (cfg/define {:hdfs-ip {:type :string} :hdfs-port {:type :number} :hdfs-url {:type :string :default "nil" :delayed-transform (fn [v] (str (cfg/get [:hdfs-ip]) ":" (cfg/get [:hdfs-port])))}...

Works fine, thanks :) I just wanted to ask one more question. My configuration definition is present in a separate file rather than in the core.clj. In the file, I...