-
Notifications
You must be signed in to change notification settings - Fork 1.3k
fix: migrations rerunning on every start for logstore #4421
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,6 @@ | ||
| { | ||
| "$schema": "https://www.getbifrost.ai/schema", | ||
| "env_label":"Development", | ||
| "mcp": { | ||
| "client_configs": [ | ||
| { | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -890,8 +890,8 @@ func LoadConfig(ctx context.Context, configDirPath string) (*Config, error) { | |
| // 12. Env label (config.json takes precedence over BIFROST_ENV_LABEL env var) | ||
| truncateLabel := func(s string) string { | ||
| r := []rune(s) | ||
| if len(r) > 10 { | ||
| return string(r[:10]) | ||
| if len(r) > 14 { | ||
| return string(r[:14]) | ||
|
Comment on lines
+893
to
+894
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The loader now accepts and truncates Rule Used: transports/config.schema.json is the source of tru... (source) |
||
| } | ||
|
akshaydeo marked this conversation as resolved.
|
||
| return s | ||
| } | ||
|
akshaydeo marked this conversation as resolved.
|
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.