Giter Club home page Giter Club logo

Comments (2)

weiznich avatar weiznich commented on July 19, 2024 1

Essentially a duplicate of #113

from diesel_async.

banool avatar banool commented on July 19, 2024

I suppose this is because r2d2 isn't really designed for async connections. You can see an attempt here: b9fd59c.

But you end up hitting this error:

$ cargo build --features r2d2
   Compiling diesel-async v0.4.1 (/Users/dport/github/diesel_async)
error[E0728]: `await` is only allowed inside `async` functions and blocks
  --> src/pooled_connection/r2d2.rs:67:14
   |
65 | /     fn connect(&self) -> Result<Self::Connection, Self::Error> {
66 | |         (self.manager_config.custom_setup)(&self.connection_url)
67 | |             .await
   | |              ^^^^^ only allowed inside `async` functions and blocks
68 | |             .map_err(PoolError::ConnectionError)
69 | |     }
   | |_____- this is not `async`

error[E0728]: `await` is only allowed inside `async` functions and blocks
  --> src/pooled_connection/r2d2.rs:73:14
   |
71 | /     fn is_valid(&self, conn: &mut Self::Connection) -> Result<(), Self::Error> {
72 | |         conn.ping(&self.manager_config.recycling_method)
73 | |             .await
   | |              ^^^^^ only allowed inside `async` functions and blocks
74 | |             .map_err(PoolError::QueryError)
75 | |     }
   | |_____- this is not `async`

For more information about this error, try `rustc --explain E0728`.
error: could not compile `diesel-async` (lib) due to 2 previous errors

Either you'd have to make non async implementations of these functions inside AsyncDieselConnectionManager (in which case it's not really async) or use tokio::block_on internally.

from diesel_async.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.