Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

stderr: fatal: Couldn't find remote ref $GERRIT_REFSPEC

Before anyone guns me down..I have looked at all the messages that has this error but they seem to manifest from a different problem,I couldn't get any substantial information. Following are the errors I'm running into in the git polling log...

  1. I don't have a clue regarding error #1,please provide inputs

  2. For this,I read on other questions that $GERRIT_REFSPEC gets filled in dynamically when there is a gerrit trigger but i don't understand why I keep seeing this in the git poll log. How can I fix this ?


Error messages:

  1. ERROR: Problem fetching from origin / origin - could be unavailable. Continuing anyway

  2. hudson.plugins.git.GitException: Command "/usr/bin/git fetch -t ssh://company.com:29418/platform/vendor/proprietary/mla.git $GERRIT_REFSPEC" returned status code 128: stdout: stderr: fatal: Couldn't find remote ref $GERRIT_REFSPEC

like image 632
user1927233 Avatar asked Dec 27 '12 04:12

user1927233


3 Answers

  • Go to the Job's Configure page and search to check This build is parameterized box.
  • Then set Name to GERRIT_REFSPEC
  • and Default value to refs/heads/master.

It took me some time to search for how to add this string parameter mentioned in the Gerrit Trigger plugin manual. I use Jenkins 1.567 with Gerrit Trigger 2.11.1.

like image 150
Rado Avatar answered Nov 19 '22 16:11

Rado


As of May 2016, this error may be result of fix for SECURITY-170 introduced in Jenkins 2.3 or 1.651.2.

From wiki:

In a May 2016 security advisory, a vulnerability was announced (SECURITY-170 / CVE-2016-3721) whereby attackers could potentially exploit the fact that certain Jenkins plugins allow the definition of arbitrary build parameters — which are in turn injected into the build envirionment.

The fix for this issue — which was first included in Jenkins versions 1.651.2 and Jenkins 2.3 — means that only build parameters that have been explicitly defined in a job's configuration will be available by default at build time. Any other arbitrary parameters added to a build by plugins will not be available by default.

As there are a number of plugins that rely on the behaviour in older Jenkins versions, upgrading to 1.651.2 or 2.3 means that certain build behaviours may be broken.

One of the affected plugins is the Gerrit Trigger. The issue you should watch for updates is here.

However, please note that the Rado's solution to definine the GERRIT_REFSPEC parameter manually in build config can solve this problem temporarily if you build only one branch from Gerrit.


A workaround is available by adding the following JAVA_ARGS to /etc/default/jenkins on ubuntu

JAVA_ARGS="$JAVA_ARGS -Dhudson.model.ParametersAction.keepUndefinedParameters=true"

You could also add which variables should be allowed

JAVA_ARGS="$JAVA_ARGS -Dhudson.model.ParametersAction.safeParameters=GERRIT_REFSPEC,GERRIT_BRANCH
like image 26
fracz Avatar answered Nov 19 '22 14:11

fracz


Looks like you ran a Jenkins Gerrit Trigger build manually? The trigger page says,

Using "Build Now"
[..]
Add a String parameter called GERRIT_REFSPEC with the default value refs/heads/master

https://wiki.jenkins-ci.org/display/JENKINS/Gerrit+Trigger

like image 36
eel ghEEz Avatar answered Nov 19 '22 14:11

eel ghEEz