Hi,
I have a library (crud) which exposes schema definitions with its API and a second application (app) that consumes my library.
Now I call that library from command line via lein run -m:
lein run -m foo.bar.crud/excute
Now, everytime I do that the schema is validated which I do not want in that case. It is enough to have the schema validated during tests for now. Did someone experience something similar? Or should it be turned off by default?
I tried to set
(s/set-fn-validation! false)
in the main namespace: foo.bar.crud and also into to execute function. But it still validates.
In my application itself I have never turned validation on explicitly.
Thanks in Advance,
Sven