Skip to content
Open
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 internal/data/data_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ func (dm *dataManager) GetMessageWithDataCached(ctx context.Context, msgID *ffty
return msg, data, foundAllData, err
}

// GetMessageData looks for all the data attached to the message, including caching.
// GetMessageDataCached looks for all the data attached to the message, including caching.
// It only returns persistence errors.
// For all cases where the data is not found (or the hashes mismatch)
func (dm *dataManager) GetMessageDataCached(ctx context.Context, msg *core.Message, options ...CacheReadOption) (data core.DataArray, foundAll bool, err error) {
Expand Down
2 changes: 1 addition & 1 deletion internal/operations/manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ type operationsManager struct {
cache cache.CInterface
}

// SubmitBulkOperationUpdate implements Manager.
// SubmitBulkOperationUpdates implements Manager.
func (om *operationsManager) SubmitBulkOperationUpdates(ctx context.Context, updates []*core.OperationUpdate) error {
for _, update := range updates {
errString := ""
Expand Down
Loading