From 7d8aafe10e8875ec9a8a0e97189b1fee8eb9450f Mon Sep 17 00:00:00 2001 From: luofucong Date: Mon, 8 Jun 2026 17:43:16 +0800 Subject: [PATCH] v0.16 for internal use Signed-off-by: luofucong --- src/cmd/src/bin/greptime.rs | 3 +-- src/cmd/src/cli.rs | 2 +- src/servers/tests/http/http_handler_test.rs | 1 - 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/cmd/src/bin/greptime.rs b/src/cmd/src/bin/greptime.rs index f634deb707..8148afb03c 100644 --- a/src/cmd/src/bin/greptime.rs +++ b/src/cmd/src/bin/greptime.rs @@ -144,8 +144,7 @@ async fn start(cli: Command) -> Result<()> { fn setup_human_panic() { human_panic::setup_panic!( - human_panic::Metadata::new(product_name(), version()) - .homepage("https://github.com/GreptimeTeam/greptimedb/discussions") + human_panic::Metadata::new(product_name(), version()).homepage("https://greptime.cn") ); common_telemetry::set_panic_hook(); diff --git a/src/cmd/src/cli.rs b/src/cmd/src/cli.rs index 5730de14fc..0c879c38a3 100644 --- a/src/cmd/src/cli.rs +++ b/src/cmd/src/cli.rs @@ -20,7 +20,7 @@ use snafu::ResultExt; use tracing_appender::non_blocking::WorkerGuard; use crate::options::GlobalOptions; -use crate::{App, Result, error}; +use crate::{error, App, Result}; pub const APP_NAME: &str = "greptime-cli"; use async_trait::async_trait; diff --git a/src/servers/tests/http/http_handler_test.rs b/src/servers/tests/http/http_handler_test.rs index 30ca45600c..0c5f5bf776 100644 --- a/src/servers/tests/http/http_handler_test.rs +++ b/src/servers/tests/http/http_handler_test.rs @@ -384,7 +384,6 @@ async fn test_status() { .unwrap_or_else(|_| "unknown".to_string()); let build_info = common_version::build_info(); let expected_json = http_handler::StatusResponse { - source_time: build_info.source_time, commit: build_info.commit, branch: build_info.branch, rustc_version: build_info.rustc,