You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#[snafu(display("Failed to decode Trino API response"))]
38
38
DecodeTrinoResponse{source: reqwest::Error},
39
39
40
+
#[snafu(display("Failed to get the bytes of the Trino API response"))]
41
+
GetTrinoResponseBytes{source: reqwest::Error},
42
+
43
+
#[snafu(display("Failed to parse Trino API response as JSON"))]
44
+
ParseTrinoResponse{source: serde_json::Error},
45
+
40
46
#[snafu(display("Configuration error: A specific Trino cluster can only be part of a single clusterGroup. Please make sure the Trino cluster {cluster_name:?} only is part of a single clusterGroup."))]
0 commit comments