Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix(dbmanager): Add leading slash to db uri path rewrite
  • Loading branch information
andrewmbenton committed Jul 19, 2024
commit 80767b81225058c9b5df06f9f39bf1f96a6ba02e
2 changes: 1 addition & 1 deletion internal/dbmanager/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ func (m *ManagedClient) CreateDatabase(ctx context.Context, req *CreateDatabaseR
if err != nil {
return nil, err
}
uri.Path = name
uri.Path = "/" + name

key := uri.String()
_, err, _ = flight.Do(key, func() (interface{}, error) {
Expand Down