fix(chdb): add connection name to ClickHouse error messages
Wrap logs/scores connection errors with their name so it's clear which connection failed on startup.
This commit is contained in:
@@ -2,6 +2,7 @@ package chdb
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
|
"fmt"
|
||||||
"os"
|
"os"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
@@ -67,11 +68,11 @@ func setupClickhouse(ctx context.Context, configFile string) (*ClickHouse, error
|
|||||||
|
|
||||||
ch.Logs, err = open(ctx, cfg.ClickHouse.Logs)
|
ch.Logs, err = open(ctx, cfg.ClickHouse.Logs)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, fmt.Errorf("logs: %w", err)
|
||||||
}
|
}
|
||||||
ch.Scores, err = open(ctx, cfg.ClickHouse.Scores)
|
ch.Scores, err = open(ctx, cfg.ClickHouse.Scores)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, fmt.Errorf("scores: %w", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
return ch, nil
|
return ch, nil
|
||||||
|
|||||||
Reference in New Issue
Block a user