Skip to content
New issue

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

QA-4388 Fixes in append scenario #5

Merged
merged 19 commits into from
Nov 13, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Refresh comments
  • Loading branch information
ahitrin committed Nov 8, 2023
commit 373dd71fa5224c61813ab7629b0b74c47c105366
4 changes: 1 addition & 3 deletions ignite-3/src/jepsen/ignite3/append.clj
Original file line number Diff line number Diff line change
@@ -92,7 +92,6 @@
client/Client
;
(open! [this test node]
; (log/info "Node: " node)
(let [ignite (.build (.addresses (IgniteClient/builder) (into-array [(str node ":10800")])))]
(assoc this :ignite ignite)))
;
@@ -103,13 +102,12 @@
(log/info "Table" table-name "created")))
;
(invoke! [this test op]
; (log/info "Received: " op)
(let [ops (:value op)
; result (map #(invoke-op ignite %) ops)
result (map #(invoke-with-retries ignite %) ops)
overall-result (assoc op
:type :info
:value (into [] result))]
; (log/info "Returned: " overall-result)
overall-result))
;
(teardown! [this test])