Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wy65701436 committed Jul 30, 2024
1 parent f331818 commit 7d942e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pkg/cached/artifact/redis/manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ func (m *Manager) List(ctx context.Context, query *q.Query) ([]*artifact.Artifac
return m.delegator.List(ctx, query)
}

func (m *Manager) ListWithLatest(ctx context.Context, query *q.Query) ([]*artifact.Artifact, error) {
return m.delegator.ListWithLatest(ctx, query)
func (m *Manager) ListWithLatest(ctx context.Context, query *q.Query, pagination bool) ([]*artifact.Artifact, error) {
return m.delegator.ListWithLatest(ctx, query, pagination)
}

func (m *Manager) Create(ctx context.Context, artifact *artifact.Artifact) (int64, error) {
Expand Down

0 comments on commit 7d942e6

Please sign in to comment.