Nikolay Kim 5 months ago
parent
commit
698e69bca8

+ 1 - 1
frameworks/Rust/ntex/benchmark_config.json

@@ -37,7 +37,7 @@
         "notes": "",
         "versus": ""
     },
-    "default": {
+    "default-rt": {
         "json_url": "/json",
         "plaintext_url": "/plaintext",
         "port": 8080,

+ 1 - 1
frameworks/Rust/ntex/config.toml

@@ -27,7 +27,7 @@ platform = "None"
 webserver = "ntex"
 versus = ""
 
-[default]
+[default-rt]
 urls.plaintext = "/plaintext"
 urls.json = "/json"
 approach = "Realistic"

+ 1 - 1
frameworks/Rust/ntex/ntex-plt-default.dockerfile

@@ -9,7 +9,7 @@ ADD ./ /ntex
 WORKDIR /ntex
 
 RUN cargo clean
-RUN RUSTFLAGS="-C target-cpu=native" cargo build --release --features="default"
+RUN RUSTFLAGS="-C target-cpu=native" cargo build --release --features="default-rt"
 
 EXPOSE 8080