Skip to content

Commit

Permalink
Fix typo (#133)
Browse files Browse the repository at this point in the history
Fix typo

---------

Co-authored-by: Mike Cohen <[email protected]>
  • Loading branch information
emcgee-work and scudette authored Apr 12, 2024
1 parent 6b9587d commit 500e495
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions services/repository/repository.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ func (self *Repository) List(
config_obj *config_proto.Config) ([]string, error) {

results := ordereddict.NewDict()
//TODO new index does not like name sortfield

hits, err := cvelo_services.QueryChan(ctx, config_obj, 1000,
self.config_obj.OrgId, "persisted", allNamesQuery, "name")

Expand Down Expand Up @@ -185,7 +185,7 @@ func (self *Repository) LoadProto(
func (self *Repository) Del(name string) {
self.lru.Remove(name)
cvelo_services.DeleteDocument(self.ctx, self.config_obj.OrgId,
"perrsisted", name, cvelo_services.SyncDelete)
"persisted", name, cvelo_services.SyncDelete)
}

func (self *Repository) Get(
Expand Down

0 comments on commit 500e495

Please sign in to comment.