8000 Release Beta by himank · Pull Request #1284 · tigrisdata-archive/tigris · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Release Beta #1284

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

Merged
merged 1 commit into from
Jun 28, 2023
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion api/proto
Submodule proto updated from 7e29de to 8b60b6
3 changes: 2 additions & 1 deletion server/metadata/tenant.go
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,8 @@ func NewTenantManager(kvStore kv.TxStore, searchStore search.Store, txMgr *trans
func newTenantManager(kvStore kv.TxStore, searchStore search.Store, mdNameRegistry *NameRegistry, txMgr *transaction.Manager) *TenantManager {
collectionsInSearch, err := searchStore.AllCollections(context.TODO())
if err != nil {
log.Fatal().Err(err).Msgf("error starting server: loading schemas from search failed")
log.Err(err).Msgf("error starting server: loading schemas from search failed")
collectionsInSearch = make(map[string]*tsApi.CollectionResponse)
}

return &TenantManager{
Expand Down
0