Skip to content

Commit

Permalink
Check for sqlite
Browse files Browse the repository at this point in the history
  • Loading branch information
rmweir committed Sep 3, 2024
1 parent 447c5fa commit ec630d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/endpoint/endpoint.go
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ func validateStorageEndpoint(str string) error {
if strings.Contains(str, "://") {
return nil
}
if str == "" {
if str == "" || str == "sqlite" {
return nil
}
// without this check kine will silently run embedded sqlite, despite user intending to use a passed backend
Expand Down

0 comments on commit ec630d7

Please sign in to comment.