Skip to content

Commit

Permalink
Fix missing compatibility with tokio 0.3 needed for postgres ramps.
Browse files Browse the repository at this point in the history
Signed-off-by: Matthias Wahl <mwahl@wayfair.com>
  • Loading branch information
Matthias Wahl committed Dec 7, 2020
1 parent 2127ee0 commit 2cc26b4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## Unreleased

* Fix panic upon usage of postgres ramps due to incompatbility with tokio and async-std runtime. [#641](https://github.com/tremor-rs/tremor-runtime/pull/641)

## 0.9.3

### New features
Expand Down
2 changes: 2 additions & 0 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ async-channel = "1"
async-compat = "0.1"
async-compression = {version = "0.3", features = ["xz", "futures-bufread", "stream"]}
async-io = "1.3"
async-std = {version = "1.7.0", features = ["unstable", "attributes"]}
async-std = {version = "1.7.0", features = ["unstable", "attributes", "tokio03"]}
async-trait = "0.1"
async-tungstenite = {version = "0.10.0", features = ["async-std-runtime"]}
base64 = "0.13"
Expand Down

0 comments on commit 2cc26b4

Please sign in to comment.