From e421baf0bc38b5c563e88bf6c8fd89d647ef2a52 Mon Sep 17 00:00:00 2001 From: Paul Dix Date: Sat, 11 Jan 2025 14:32:36 -0500 Subject: [PATCH] feat: include specific plugin error to http response (#25794) --- influxdb3_server/src/http.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/influxdb3_server/src/http.rs b/influxdb3_server/src/http.rs index d3ef8a216f..81508ab73e 100644 --- a/influxdb3_server/src/http.rs +++ b/influxdb3_server/src/http.rs @@ -217,7 +217,7 @@ pub enum Error { #[error("Python plugins not enabled on this server")] PythonPluginsNotEnabled, - #[error("Plugin error")] + #[error("Plugin error: {0}")] Plugin(#[from] influxdb3_processing_engine::plugins::Error), #[error("Processing engine error: {0}")]