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
Reflection warning, jackdaw/admin.clj:98:13 - call to static method sleep on java.lang.Thread can't be resolved (argument types: unknown).
jdk: 21 clojure: 1.11.1 jackdaw: 0.9.4
(defn retry-exists? "Returns 'true' if topic exists. Otherwise spins as configured." [client topic num-retries wait-ms] (cond (topic-exists? client topic) true (zero? num-retries) false :else (do (Thread/sleep wait-ms) (recur client topic (dec num-retries) wait-ms))))
maybe add meta , like
(defn retry-exists? "Returns `true` if topic exists. Otherwise spins as configured." [client topic num-retries ^Long wait-ms] ... )
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Reflection warning, jackdaw/admin.clj:98:13 - call to static method sleep on java.lang.Thread can't be resolved (argument types: unknown).
jdk: 21
clojure: 1.11.1
jackdaw: 0.9.4
maybe add meta , like
The text was updated successfully, but these errors were encountered: