Skip to content

Commit

Permalink
use fixed library
Browse files Browse the repository at this point in the history
  • Loading branch information
conorbros committed Dec 9, 2022
1 parent b850168 commit 4b6e762
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
6 changes: 4 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions shotover-proxy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ halfbrown = "0.1.11"

# Transform dependencies
redis-protocol = { version = "4.0.1", features = ["decode-mut"] }
cassandra-protocol = { git = "https://github.com/krojew/cdrs-tokio", branch = "8.0-dev" }
cassandra-protocol = { git = "https://github.com/conorbros/cdrs-tokio", branch = "8.0-dev" }
crc16 = "0.4.0"
ordered-float = { version = "3.0.0", features = ["serde"] }

Expand All @@ -91,7 +91,7 @@ hex-literal = "0.3.3"
nix = "0.26.0"
reqwest = "0.11.6"
metrics-util = "0.14.0"
cdrs-tokio = { git = "https://github.com/krojew/cdrs-tokio", branch = "8.0-dev" }
cdrs-tokio = { git = "https://github.com/conorbros/cdrs-tokio", branch = "8.0-dev" }
scylla = { git = "https://github.com/scylladb/scylla-rust-driver", features = ["ssl"] }
rstest = "0.16.0"

Expand Down
9 changes: 6 additions & 3 deletions shotover-proxy/tests/cassandra_int_tests/routing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,8 @@ mod composite_key {
ResultValue::Boolean(true),
],
)
.await;
.await
.unwrap();

let _ = connection
.execute_prepared(
Expand All @@ -372,14 +373,16 @@ mod composite_key {
ResultValue::Boolean(true),
],
)
.await;
.await
.unwrap();

let _ = connection
.execute_prepared(
&simple1,
&[ResultValue::Varchar(name), ResultValue::Boolean(true)],
)
.await;
.await
.unwrap();
}
}

Expand Down

0 comments on commit 4b6e762

Please sign in to comment.