rust - actix-web 处理程序中的 HTTP 请求 -> 多个执行程序一次 : EnterError

标签 rust rust-tokio hyper actix-web

actix-web 解析器中创建 super 发布请求时,会抛出以下错误 - 如何通过将请求生成到现有执行程序来发送一个 http 请求?

thread 'actix-rt:worker:1' panicked at 'Multiple executors at once: EnterError { reason: "attempted to run an executor while another executor is already running" }', src/libcore/result.rs:999:5
note: Run with `RUST_BACKTRACE=1` environment variable to display a backtrace.
Panic in Arbiter thread, shutting down system.

主要.rs

extern crate actix_web;
extern crate serde_json;
extern crate actix_rt;
extern crate hyper;

use serde_json::{Value, json};
use hyper::{Client, Uri, Body, Request};
use actix_web::{middleware, web, App, HttpResponse, HttpServer};
use actix_rt::System;
use actix_web::client;
use futures::future::{Future, lazy};

fn main() {
    println!("Start server...");
    listen();
}

pub fn listen() -> std::io::Result<()> {
    HttpServer::new(|| {
        App::new()
            .wrap(middleware::Logger::default())
            .data(web::JsonConfig::default().limit(4096))
            .service(web::resource("/push").route(web::post().to(index)))
            .service(web::resource("/test").route(web::post().to(test)))
    })
    .bind("127.0.0.1:8080")?
    .run()
}


fn index(item: web::Json<Value>) -> HttpResponse {
    println!("model: {:?}", &item);
    send(json!({
        "hello": "world"
    }));

    HttpResponse::Ok().json(item.0) // <- send response
}

fn test(item: web::Json<Value>) -> HttpResponse {
    println!("recevied test call!");
    println!("{:?}", &item);

    HttpResponse::Ok().json(item.0) // <- send response
}



pub fn send(mut data: serde_json::Value) {
    println!("# Start running log post future...");

    // if the following line is removed, the call is not received by the test function above
    System::new("test").block_on(lazy(|| {
        let req = Request::builder()
            .method("POST")
            .uri("http://localhost:8080/test")
            .body(Body::from(data.to_string()))
            .expect("request builder");

        let client = Client::new();
        let future = client.request(req)
        .and_then(|res| {
            println!("status: {}", res.status());
            Ok(())
        })
        .map_err(|err| {
            println!("error: {}", err);
        });
        return future;
    }));

    println!("# Finish running log post future")
}

cargo .toml

[package]
name = "rust-tokio-event-loop-madness"
version = "0.1.0"
authors = [""]
edition = "2018"

[dependencies]
serde_json = "1.0.39"
actix-web = "1.0.0"
serde_derive = "1.0.92"
actix-rt = "*"
hyper = "0.12.30"
futures = "*"

curl 命令触发错误:

curl -X POST -H 'Content-Type: application/json' -d '{"test":1}' http://localhost:8080/push

repo 示例:https://github.com/fabifrank/rust-tokio-event-loop-madness

最佳答案

通过使用 tokio 函数 spawn 将 future 添加到正在运行的 tokio 执行器中使其工作。

所以代替:

System::new("test").block_on(lazy(|| {

使用:

spawn(lazy(move || {

当然,在 cargo.toml 中添加 tokio 作为依赖项并包含 crate。

关于rust - actix-web 处理程序中的 HTTP 请求 -> 多个执行程序一次 : EnterError,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56634370/

相关文章:

rust - 是否可以在 Tokio 中关闭 TcpListener?

rust - 什么单一类型可以指超 HttpConnector 和 HttpsConnector?

rust - 解决 future 的元组

rust - 如何声明作为原始指针的泛型类型?

rust - 如果它的生命周期是静态的,我如何通过引用拥有一个字符串?

rust - 如何将任务添加到在另一个线程上运行的 Tokio 事件循环?

rust - 为什么迭代器的实现在异步上下文中不够通用?

rust - 如何返回 Arc<Vec<u8>> 作为 super 响应?

rust - 可变树的规范实现

arrays - 如何将sha256的前128位作为u128,而没有结果?