v0.16 for internal use

Signed-off-by: luofucong <luofc@foxmail.com>
This commit is contained in:
luofucong
2026-06-08 17:43:16 +08:00
parent d60981effa
commit 7d8aafe10e
3 changed files with 2 additions and 4 deletions

View File

@@ -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();

View File

@@ -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;

View File

@@ -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,