Skip to content

Commit

Permalink
fix zero copy problem (#2182)
Browse files Browse the repository at this point in the history
resolves #2181
  • Loading branch information
sehz committed Feb 10, 2022
1 parent f58856d commit db2cbff
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 15 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* Add `version` column to `fluvio connector list` ([#2145](https://github.com/infinyon/fluvio/issues/2145))
* Reimport metadata for tableformat in fluvio client ([#2175](https://github.com/infinyon/fluvio/issues/2175))
* Change log level for admin actions to info in SC public services ([#2177](https://github.com/infinyon/fluvio/issues/2177))
* Fix problem with zero copy ([#2181](https://github.com/infinyon/fluvio/issues/2181))

## Platform Version 0.9.18 - 2022-01-31
* Show Platform version for fluvio run ([#2104](https://github.com/infinyon/fluvio/issues/2104))
Expand Down
14 changes: 7 additions & 7 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion crates/fluvio-sc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ serde_yaml = "0.8"

# Fluvio dependencies
fluvio-auth = { path = "../fluvio-auth" }
fluvio-future = { version = "0.3.0", features = [
fluvio-future = { version = "0.3.13", features = [
"subscriber",
"openssl_tls",
"zero_copy",
Expand Down
4 changes: 2 additions & 2 deletions crates/fluvio-smartengine/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fluvio-smartengine"
version = "0.2.3"
version = "0.2.4"
edition = "2021"
license = "Apache-2.0"
authors = ["Fluvio Contributors <team@fluvio.io>"]
Expand All @@ -23,7 +23,7 @@ tracing = "0.1.27"
anyhow = "1.0.38"
futures-util = { version = "0.3.5", features = ["sink"] }

fluvio-future = { version = "0.3.9", features = [
fluvio-future = { version = "0.3.13", features = [
"subscriber",
"openssl_tls",
"zero_copy",
Expand Down
6 changes: 3 additions & 3 deletions crates/fluvio-socket/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fluvio-socket"
version = "0.11.1"
version = "0.11.2"
edition = "2021"
authors = ["Fluvio Contributors <team@fluvio.io>"]
description = "Provide TCP socket wrapper for fluvio protocol"
Expand Down Expand Up @@ -31,15 +31,15 @@ pin-project = "1.0.1"
thiserror = "1.0.20"

# Fluvio dependencies
fluvio-future = { version = "0.3.2", features = ["net", "task"] }
fluvio-future = { version = "0.3.13", features = ["net", "task"] }
fluvio-protocol = { path = "../fluvio-protocol", version = "0.7", features = [
"derive",
"api",
"codec",
] }

[dev-dependencies]
fluvio-future = { version = "0.3.1", features = [
fluvio-future = { version = "0.3.13", features = [
"fixture",
"fs",
"zero_copy",
Expand Down
2 changes: 1 addition & 1 deletion crates/fluvio-spu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ dataplane = { path = "../fluvio-dataplane-protocol", package = "fluvio-dataplane
fluvio-service = { path = "../fluvio-service" }
flv-tls-proxy = { version = "0.5.0" }
flv-util = { version = "0.5.0" }
fluvio-future = { version = "0.3.9", features = [
fluvio-future = { version = "0.3.13", features = [
"subscriber",
"openssl_tls",
"zero_copy",
Expand Down
2 changes: 1 addition & 1 deletion crates/fluvio-storage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ tokio = { version = "1.3.0", features = ["macros"] }
fluvio-types = { path = "../fluvio-types", features = [
"events",
], version = "0.3.1" }
fluvio-future = { version = "0.3.10", features = ["fs", "mmap", "zero_copy"] }
fluvio-future = { version = "0.3.13", features = ["fs", "mmap", "zero_copy"] }
fluvio-protocol = { path = "../fluvio-protocol" }
dataplane = { path = "../fluvio-dataplane-protocol", package = "fluvio-dataplane-protocol", features = [
"file",
Expand Down

0 comments on commit db2cbff

Please sign in to comment.