Skip to content

Commit

Permalink
Fix SyncOnCommit always return false in API of push_mirrors (#23088)
Browse files Browse the repository at this point in the history
Fix: #22990

---
Before, the return value of the api is always false,regrardless of
whether the entry of `sync_on_commit` is true or false.
I have confirmed that the value of `sync_on_commit` dropped into the
database is correct.
So, I think it is enough to make some small changes.
  • Loading branch information
sillyguodong committed Feb 23, 2023
1 parent ed954b0 commit 1f09051
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions services/convert/mirror.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ func ToPushMirror(pm *repo_model.PushMirror) (*api.PushMirror, error) {
LastUpdateUnix: pm.LastUpdateUnix.FormatLong(),
LastError: pm.LastError,
Interval: pm.Interval.String(),
SyncOnCommit: pm.SyncOnCommit,
}, nil
}

Expand Down

0 comments on commit 1f09051

Please sign in to comment.