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
fluree.db.api
I see this while using com/fluree.db@1.0.0-rc34 with fluree/ledger@1.0.0-beta19, and the https://github.com/cognitect-labs/test-runner test runner with a simple test:
com/fluree.db@1.0.0-rc34
fluree/ledger@1.0.0-beta19
(deftest repro (let [conn (fdb/connect "http://localhost:8090")] @(fdb/new-ledger conn ledger) (fdb/wait-for-ledger-ready conn ledger) @(fdb/transact conn ledger schema-tx) (run! #(->> % new-event vector (fdb/transact conn ledger) deref) (range 4)) (is (seq (-> conn (fdb/db ledger) (fdb/query {:select ["*"] :from "event"}) deref))) (fdb/close conn)))
Running this test with the test runner will hang forever after the tests finish:
... Ran 1 tests containing 1 assertions. 0 failures, 0 errors.
I created a repro in https://github.com/filipesilva/fluree-test-hang that you can use by following these steps:
git clone https://github.com/filipesilva/fluree-test-hang cd fluree-test-hang docker-compose up -d fluree clojure -X:test
The text was updated successfully, but these errors were encountered:
test: run fluree tests manually for now
bb033c8
See fluree/db#163
This issue no longer exists - but feel free to reopen if it exists in a specific environment.
Sorry, something went wrong.
No branches or pull requests
I see this while using
com/fluree.db@1.0.0-rc34
withfluree/ledger@1.0.0-beta19
, and the https://github.com/cognitect-labs/test-runner test runner with a simple test:Running this test with the test runner will hang forever after the tests finish:
I created a repro in https://github.com/filipesilva/fluree-test-hang that you can use by following these steps:
The text was updated successfully, but these errors were encountered: