Skip to content

Commit

Permalink
πŸ› FIX: Ignore exists seq on changes worker (#253)
Browse files Browse the repository at this point in the history
  • Loading branch information
fengmk2 authored Jun 27, 2022
1 parent c63159d commit d578baf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/core/service/ChangesStreamService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ export class ChangesStreamService extends AbstractService {
for (const change of data.results) {
const seq = change.seq;
const fullname = change.id;
if (seq && fullname) {
if (seq && fullname && seq !== since) {
await this.packageSyncerService.createTask(fullname, {
authorIp: os.hostname(),
authorId: 'ChangesStreamService',
Expand Down

0 comments on commit d578baf

Please sign in to comment.