We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is a tough one and I haven't made up my mind yet.
Basically the use case is that, let's say we have a processor that instead of throwing a js/Error just returns it, like:
js/Error
(defn validate-data [ctx] (let [data (:some-data ctx) spec ::some/spec] (if (not (s/valid? spec data)) (ex-info "Invalid data" {}) data)))
Then fonda at the moment does not short-circuits and errors out. We only short circuit in case of anomaly data.
fonda
anomaly
Maybe it makes sense but I just want to note this down for future reference.
Also, should it write this in the docs?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This is a tough one and I haven't made up my mind yet.
Basically the use case is that, let's say we have a processor that instead of throwing a
js/Error
just returns it, like:Then
fonda
at the moment does not short-circuits and errors out. We only short circuit in case ofanomaly
data.Maybe it makes sense but I just want to note this down for future reference.
Also, should it write this in the docs?
The text was updated successfully, but these errors were encountered: