From 6526d636349bd730507af8c526e5f1e138f2a475 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Fri, 16 Dec 2016 14:13:58 -0500 Subject: Avoid unnescessary data pushes --- git-mirror-gitlab-ce | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'git-mirror-gitlab-ce') diff --git a/git-mirror-gitlab-ce b/git-mirror-gitlab-ce index 6502618..80f0b81 100755 --- a/git-mirror-gitlab-ce +++ b/git-mirror-gitlab-ce @@ -101,7 +101,7 @@ class GitLabCE < GitMirrorBackend if self.info().nil? # create - libremessages('msg2', 'Creating repo %s', @project_id) + libremessages('msg2', 'Creating repo') namespace, path = @project_id.split('/', 2) namespace_id = namespace_path2id(namespace) @@ -122,7 +122,17 @@ class GitLabCE < GitMirrorBackend self.info = JSON::parse(res.body) else # update - libremessages('msg2', 'Updating repo %s metadata', @project_id) + mismatch = false + map.each do |key,val| + if self.info[key].to_s != val.to_s + mismatch = true + end + end + unless mismatch + libremessages('msg2', 'General metadata ok') + return nil + end + libremessages('msg2', 'Updating general metadata') req = Net::HTTP::Put.new(@gl.config['apiurl'] + "projects/" + CGI::escape(self.info["id"].to_s)) req.add_field("PRIVATE-TOKEN", @gl.config['apikey']) req.add_field("Content-Type", "application/json") -- cgit v1.2.3