Thanks for sharing the items which you investigated.
This is not a bug, but one or more missing configuration settings.
It appears you have a slow connection to your remote repository (100-200 KB per second) and a large enough repository that it cannot be cloned before the default 10 minute timeout has expired. There are several steps you can take to resolve the issue.
Narrow the refspec to only the branches you need (see the online help in the Advanced section of the git plugin repository definition)
Use a shallow clone to reduce the data transfer (see the help for "Advanced clone options")
Mark Waite
added a comment - Thanks for sharing the items which you investigated.
This is not a bug, but one or more missing configuration settings.
It appears you have a slow connection to your remote repository (100-200 KB per second) and a large enough repository that it cannot be cloned before the default 10 minute timeout has expired. There are several steps you can take to resolve the issue.
Increase the clone timeout
Reduce the amount of data transferred using techniques described in my Jenkins World 2017 slides and video
Use a reference repository (also described in a very good CloudBees Support article )
Narrow the refspec to only the branches you need (see the online help in the Advanced section of the git plugin repository definition)
Use a shallow clone to reduce the data transfer (see the help for "Advanced clone options")
ERROR we get after upgrading these plugins and trying to checkout in a pipeline job
17:52:07 Cloning the remote Git repository
17:52:07 ERROR: Error cloning remote repo 'origin'
17:52:07 hudson.plugins.git.GitException: java.io.IOException: Remote call on JNLP4-connect connection from ip-10-192-23-154.us-west-2.compute.internal/10.192.23.154:23354 failed
17:52:07 at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:169)
17:52:07 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
17:52:07 at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
17:52:07 at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
17:52:07 at java.lang.reflect.Method.invoke(Method.java:498)
17:52:07 at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
17:52:07 at com.sun.proxy.$Proxy140.execute(Unknown Source)
17:52:07 at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1146)
17:52:07 at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1186)
17:52:07 at org.jenkinsci.plugins.workflow.steps.scm.SCMStep.checkout(SCMStep.java:120)
17:52:07 at org.jenkinsci.plugins.workflow.steps.scm.SCMStep$StepExecutionImpl.run(SCMStep.java:90)
17:52:07 at org.jenkinsci.plugins.workflow.steps.scm.SCMStep$StepExecutionImpl.run(SCMStep.java:77)
17:52:07 at org.jenkinsci.plugins.workflow.steps.SynchronousNonBlockingStepExecution$1$1.call(SynchronousNonBlockingStepExecution.java:51)
17:52:07 at hudson.security.ACL.impersonate(ACL.java:290)
17:52:07 at org.jenkinsci.plugins.workflow.steps.SynchronousNonBlockingStepExecution$1.run(SynchronousNonBlockingStepExecution.java:48)
17:52:07 at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
17:52:07 at java.util.concurrent.FutureTask.run(FutureTask.java:266)
17:52:07 at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
17:52:07 at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
17:52:07 at java.lang.Thread.run(Thread.java:748)
17:52:07 Caused by: java.io.IOException: Remote call on JNLP4-connect connection from ip-10-192-23-154.us-west-2.compute.internal/10.192.23.154:23354 failed
17:52:07 at hudson.remoting.Channel.call(Channel.java:961)
17:52:07 at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
17:52:07 ... 19 more
17:52:07 Caused by: java.lang.IllegalAccessError: tried to access field hudson.remoting.Channel.executor from class org.jenkinsci.remoting.util.AnonymousClassWarnings
17:52:07 at org.jenkinsci.remoting.util.AnonymousClassWarnings.check(AnonymousClassWarnings.java:65)
17:52:07 at org.jenkinsci.remoting.util.AnonymousClassWarnings$1.annotateClass(AnonymousClassWarnings.java:121)
17:52:07 at java.io.ObjectOutputStream.writeNonProxyDesc(ObjectOutputStream.java:1290)
17:52:07 at java.io.ObjectOutputStream.writeClassDesc(ObjectOutputStream.java:1231)
17:52:07 at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1427)
17:52:07 at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1178)
17:52:07 at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:348)
17:52:07 at hudson.console.ConsoleNote.encodeToBytes(ConsoleNote.java:185)
17:52:07 at hudson.console.ConsoleNote.encode(ConsoleNote.java:211)
17:52:07 at hudson.plugins.timestamper.TimestampNotesOutputStream.eol(TimestampNotesOutputStream.java:70)
17:52:07 at hudson.console.LineTransformationOutputStream.eol(LineTransformationOutputStream.java:60)
17:52:07 at hudson.console.LineTransformationOutputStream.write(LineTransformationOutputStream.java:56)
17:52:07 at hudson.console.LineTransformationOutputStream.write(LineTransformationOutputStream.java:74)
17:52:07 at java.io.PrintStream.write(PrintStream.java:480)
17:52:07 at sun.nio.cs.StreamEncoder.writeBytes(StreamEncoder.java:221)
17:52:07 at sun.nio.cs.StreamEncoder.implFlushBuffer(StreamEncoder.java:291)
17:52:07 at sun.nio.cs.StreamEncoder.flushBuffer(StreamEncoder.java:104)
17:52:07 at java.io.OutputStreamWriter.flushBuffer(OutputStreamWriter.java:185)
17:52:07 at java.io.PrintStream.newLine(PrintStream.java:546)
17:52:07 at java.io.PrintStream.println(PrintStream.java:807)
17:52:07 at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$2.execute(CliGitAPIImpl.java:589)
17:52:07 at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$1.call(RemoteGitImpl.java:153)
17:52:07 at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$1.call(RemoteGitImpl.java:146)
17:52:07 at hudson.remoting.UserRequest.perform(UserRequest.java:207)
17:52:07 at hudson.remoting.UserRequest.perform(UserRequest.java:53)
17:52:07 at hudson.remoting.Request$2.run(Request.java:358)
17:52:07 at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:72)
17:52:07 at java.util.concurrent.FutureTask.run(FutureTask.java:266)
17:52:07 at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
17:52:07 at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
17:52:07 at hudson.remoting.Engine$1$1.run(Engine.java:98)
17:52:07 ... 1 more
17:52:07 Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to JNLP4-connect connection from ip-10-192-23-154.us-west-2.compute.internal/10.192.23.154:23354
17:52:07 at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1741)
17:52:07 at hudson.remoting.UserResponse.retrieve(UserRequest.java:389)
17:52:07 at hudson.remoting.Channel.call(Channel.java:955)
17:52:07 at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
17:52:07 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
17:52:07 at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
17:52:07 at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
17:52:07 at java.lang.reflect.Method.invoke(Method.java:498)
17:52:07 at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
17:52:07 at com.sun.proxy.$Proxy140.execute(Unknown Source)
17:52:07 at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1146)
17:52:07 at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1186)
17:52:07 at org.jenkinsci.plugins.workflow.steps.scm.SCMStep.checkout(SCMStep.java:120)
17:52:07 at org.jenkinsci.plugins.workflow.steps.scm.SCMStep$StepExecutionImpl.run(SCMStep.java:90)
17:52:07 at org.jenkinsci.plugins.workflow.steps.scm.SCMStep$StepExecutionImpl.run(SCMStep.java:77)
17:52:07 at org.jenkinsci.plugins.workflow.steps.SynchronousNonBlockingStepExecution$1$1.call(SynchronousNonBlockingStepExecution.java:51)
17:52:07 at hudson.security.ACL.impersonate(ACL.java:290)
17:52:07 at org.jenkinsci.plugins.workflow.steps.SynchronousNonBlockingStepExecution$1.run(SynchronousNonBlockingStepExecution.java:48)
17:52:07 at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
17:52:07 at java.util.concurrent.FutureTask.run(FutureTask.java:266)
17:52:07 at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
17:52:07 at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
17:52:07 ... 1 more [Pipeline] } [Pipeline] // stage [Pipeline] } [Pipeline] // node [Pipeline] } [Pipeline] // timestamps [Pipeline] End of Pipeline
ERROR: Error cloning remote repo 'origin'
Gregor Philp
added a comment - ERROR we get after upgrading these plugins and trying to checkout in a pipeline job
17:52:07 Cloning the remote Git repository
17:52:07 ERROR: Error cloning remote repo 'origin'
17:52:07 hudson.plugins.git.GitException: java.io .IOException: Remote call on JNLP4-connect connection from ip-10-192-23-154.us -west-2.compute.internal/10.192.23.154:23354 failed
17:52:07 at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:169)
17:52:07 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
17:52:07 at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
17:52:07 at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
17:52:07 at java.lang.reflect.Method.invoke(Method.java:498)
17:52:07 at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
17:52:07 at com.sun.proxy.$Proxy140.execute(Unknown Source)
17:52:07 at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1146)
17:52:07 at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1186)
17:52:07 at org.jenkinsci.plugins.workflow.steps.scm.SCMStep.checkout(SCMStep.java:120)
17:52:07 at org.jenkinsci.plugins.workflow.steps.scm.SCMStep$StepExecutionImpl.run(SCMStep.java:90)
17:52:07 at org.jenkinsci.plugins.workflow.steps.scm.SCMStep$StepExecutionImpl.run(SCMStep.java:77)
17:52:07 at org.jenkinsci.plugins.workflow.steps.SynchronousNonBlockingStepExecution$1$1.call(SynchronousNonBlockingStepExecution.java:51)
17:52:07 at hudson.security.ACL.impersonate(ACL.java:290)
17:52:07 at org.jenkinsci.plugins.workflow.steps.SynchronousNonBlockingStepExecution$1.run(SynchronousNonBlockingStepExecution.java:48)
17:52:07 at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
17:52:07 at java.util.concurrent.FutureTask.run(FutureTask.java:266)
17:52:07 at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
17:52:07 at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
17:52:07 at java.lang.Thread.run(Thread.java:748)
17:52:07 Caused by: java.io .IOException: Remote call on JNLP4-connect connection from ip-10-192-23-154.us -west-2.compute.internal/10.192.23.154:23354 failed
17:52:07 at hudson.remoting.Channel.call(Channel.java:961)
17:52:07 at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
17:52:07 ... 19 more
17:52:07 Caused by: java.lang.IllegalAccessError: tried to access field hudson.remoting.Channel.executor from class org.jenkinsci.remoting.util.AnonymousClassWarnings
17:52:07 at org.jenkinsci.remoting.util.AnonymousClassWarnings.check(AnonymousClassWarnings.java:65)
17:52:07 at org.jenkinsci.remoting.util.AnonymousClassWarnings$1.annotateClass(AnonymousClassWarnings.java:121)
17:52:07 at java.io .ObjectOutputStream.writeNonProxyDesc(ObjectOutputStream.java:1290)
17:52:07 at java.io .ObjectOutputStream.writeClassDesc(ObjectOutputStream.java:1231)
17:52:07 at java.io .ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1427)
17:52:07 at java.io .ObjectOutputStream.writeObject0(ObjectOutputStream.java:1178)
17:52:07 at java.io .ObjectOutputStream.writeObject(ObjectOutputStream.java:348)
17:52:07 at hudson.console.ConsoleNote.encodeToBytes(ConsoleNote.java:185)
17:52:07 at hudson.console.ConsoleNote.encode(ConsoleNote.java:211)
17:52:07 at hudson.plugins.timestamper.TimestampNotesOutputStream.eol(TimestampNotesOutputStream.java:70)
17:52:07 at hudson.console.LineTransformationOutputStream.eol(LineTransformationOutputStream.java:60)
17:52:07 at hudson.console.LineTransformationOutputStream.write(LineTransformationOutputStream.java:56)
17:52:07 at hudson.console.LineTransformationOutputStream.write(LineTransformationOutputStream.java:74)
17:52:07 at java.io .PrintStream.write(PrintStream.java:480)
17:52:07 at sun.nio.cs.StreamEncoder.writeBytes(StreamEncoder.java:221)
17:52:07 at sun.nio.cs.StreamEncoder.implFlushBuffer(StreamEncoder.java:291)
17:52:07 at sun.nio.cs.StreamEncoder.flushBuffer(StreamEncoder.java:104)
17:52:07 at java.io .OutputStreamWriter.flushBuffer(OutputStreamWriter.java:185)
17:52:07 at java.io .PrintStream.newLine(PrintStream.java:546)
17:52:07 at java.io .PrintStream.println(PrintStream.java:807)
17:52:07 at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$2.execute(CliGitAPIImpl.java:589)
17:52:07 at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$1.call(RemoteGitImpl.java:153)
17:52:07 at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$1.call(RemoteGitImpl.java:146)
17:52:07 at hudson.remoting.UserRequest.perform(UserRequest.java:207)
17:52:07 at hudson.remoting.UserRequest.perform(UserRequest.java:53)
17:52:07 at hudson.remoting.Request$2.run(Request.java:358)
17:52:07 at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:72)
17:52:07 at java.util.concurrent.FutureTask.run(FutureTask.java:266)
17:52:07 at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
17:52:07 at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
17:52:07 at hudson.remoting.Engine$1$1.run(Engine.java:98)
17:52:07 ... 1 more
17:52:07 Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to JNLP4-connect connection from ip-10-192-23-154.us -west-2.compute.internal/10.192.23.154:23354
17:52:07 at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1741)
17:52:07 at hudson.remoting.UserResponse.retrieve(UserRequest.java:389)
17:52:07 at hudson.remoting.Channel.call(Channel.java:955)
17:52:07 at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
17:52:07 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
17:52:07 at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
17:52:07 at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
17:52:07 at java.lang.reflect.Method.invoke(Method.java:498)
17:52:07 at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
17:52:07 at com.sun.proxy.$Proxy140.execute(Unknown Source)
17:52:07 at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1146)
17:52:07 at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1186)
17:52:07 at org.jenkinsci.plugins.workflow.steps.scm.SCMStep.checkout(SCMStep.java:120)
17:52:07 at org.jenkinsci.plugins.workflow.steps.scm.SCMStep$StepExecutionImpl.run(SCMStep.java:90)
17:52:07 at org.jenkinsci.plugins.workflow.steps.scm.SCMStep$StepExecutionImpl.run(SCMStep.java:77)
17:52:07 at org.jenkinsci.plugins.workflow.steps.SynchronousNonBlockingStepExecution$1$1.call(SynchronousNonBlockingStepExecution.java:51)
17:52:07 at hudson.security.ACL.impersonate(ACL.java:290)
17:52:07 at org.jenkinsci.plugins.workflow.steps.SynchronousNonBlockingStepExecution$1.run(SynchronousNonBlockingStepExecution.java:48)
17:52:07 at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
17:52:07 at java.util.concurrent.FutureTask.run(FutureTask.java:266)
17:52:07 at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
17:52:07 at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
17:52:07 ... 1 more
[Pipeline] }
[Pipeline] // stage
[Pipeline] }
[Pipeline] // node
[Pipeline] }
[Pipeline] // timestamps
[Pipeline] End of Pipeline
ERROR: Error cloning remote repo 'origin'
This is not to do with a large repository or timeout. The repo is extremely small I am testing with and the job fails in just over 20 seconds. I remove that plugin and the job works fine.
Gregor Philp
added a comment - This is not to do with a large repository or timeout. The repo is extremely small I am testing with and the job fails in just over 20 seconds. I remove that plugin and the job works fine.
timestamps {
node ('ECS-CO7-LATEST') {
stage ('Checkout')
{
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[credentialsId: '*******, url: 'git@github.move.com:IT-Operations/aws-certificates.git']]])
}
stage ('sleep')
{
sh '''
sleep 20
'''
}
stage ('Clean')
{
cleanWs()
}
}
}
gjphilp the original bug report is related to a large repository and a timeout. The stack trace you're reporting is significantly different from the stack trace in the description of this bug report. The differences are evident because your stack trace does not include the message:
ERROR: Timeout after 10 minutes
I suspect you'll be better served by first asking for help on one of the chat locations, or on the Jenkins users mailing list. They will tend to ask you questions that will help you identify the problem and will help you decide if a bug report is needed. Some of the questions that they will probably ask in those places will include things like:
What versions of Jenkins and plugins were you running when it worked?
What versions of Jenkins and plugins were you running after it stopped working?
What operating system is running Jenkins?
What operating system is running the agent where the failure happens?
Is the agent connected to the master with ssh, JNLP, or some other way?
Does the failure happen on multiple agents?
The chat and the mailing list have many more readers than individual bug reports, especially individual bug reports that are already resolved.
If you don't find an answer through chat and the mailing list, you'll need to open a new bug report. If you open a new bug report, please be sure to include answers to those questions and the other items identified in "How to report an issue".
Mark Waite
added a comment - gjphilp the original bug report is related to a large repository and a timeout. The stack trace you're reporting is significantly different from the stack trace in the description of this bug report. The differences are evident because your stack trace does not include the message:
ERROR: Timeout after 10 minutes
I suspect you'll be better served by first asking for help on one of the chat locations , or on the Jenkins users mailing list . They will tend to ask you questions that will help you identify the problem and will help you decide if a bug report is needed. Some of the questions that they will probably ask in those places will include things like:
What versions of Jenkins and plugins were you running when it worked?
What versions of Jenkins and plugins were you running after it stopped working?
What operating system is running Jenkins?
What operating system is running the agent where the failure happens?
Is the agent connected to the master with ssh, JNLP, or some other way?
Does the failure happen on multiple agents?
The chat and the mailing list have many more readers than individual bug reports, especially individual bug reports that are already resolved.
If you don't find an answer through chat and the mailing list, you'll need to open a new bug report. If you open a new bug report, please be sure to include answers to those questions and the other items identified in " How to report an issue ".
ok I will try that. This was a new bug I filed this morning so I don't know how it got merged onto this one.
I created a new issue. It is breaking or production stack with over 700 jobs and over 400 users
Gregor Philp
added a comment - ok I will try that. This was a new bug I filed this morning so I don't know how it got merged onto this one.
I created a new issue. It is breaking or production stack with over 700 jobs and over 400 users
I've tried contacting both the users and dev email addresses on the Jenkins users mailing list and both just get returned emails saying the group does not exist.
What is the jenkins support mailing list?
Gregor Philp
added a comment - Mark Waite
ok this is not easy.
I've tried contacting both the users and dev email addresses on the Jenkins users mailing list and both just get returned emails saying the group does not exist.
What is the jenkins support mailing list?
The users mailing list is where users support each other. Internet Relay Chat is also used so that users can support each other.
CloudBees also sells support contracts for Jenkins for those that need the power of a commercial support team.
Mark Waite
added a comment - - edited Send an e-mail message to jenkinsci-users@googlegroups.com . Due to spam, your first posting to the mailing list will be held until it is approved.
If that doesn't work, then connect to Gitter
The users mailing list is where users support each other. Internet Relay Chat is also used so that users can support each other.
CloudBees also sells support contracts for Jenkins for those that need the power of a commercial support team.
yeah thats the one I sent to and also tried to subscribe like it mentioned. Both failed telling me the group does not exist.
Now I guess I have to try gitter
Gregor Philp
added a comment - yeah thats the one I sent to and also tried to subscribe like it mentioned. Both failed telling me the group does not exist.
Now I guess I have to try gitter
If neither of those work, then please open a bug report with the answers to my questions. I don't know if I will have time to help you, but that's probably better than nothing.
Mark Waite
added a comment - If neither of those work, then please open a bug report with the answers to my questions . I don't know if I will have time to help you, but that's probably better than nothing.
Unassigned
Vadivel Natarajan
Votes:
0Vote for this issue
Watchers:
3Start watching this issue
Created:
Updated:
Resolved:
{"searchers":{"groups":[{"searchers":[{"name":"Project","id":"project","key":"issue.field.project","isShown":true,"lastViewed":1741181395180},{"name":"Summary","id":"summary","key":"issue.field.summary","isShown":true},{"name":"Type","id":"issuetype","key":"issue.field.issuetype","isShown":true,"lastViewed":1741181395181},{"name":"Status","id":"status","key":"issue.field.status","isShown":true,"lastViewed":1741181395351},{"name":"Priority","id":"priority","key":"issue.field.priority","isShown":true},{"name":"Resolution","id":"resolution","key":"issue.field.resolution","isShown":true},{"name":"Creator","id":"creator","key":"issue.field.creator","isShown":true},{"name":"Component","id":"component","key":"issue.field.components","isShown":true},{"name":"% Limits","id":"workratio","key":"issue.field.workratio","isShown":true},{"name":"Link types","id":"issue_link_type","key":"issue.field.issuelinks","isShown":true},{"name":"Environment","id":"environment","key":"issue.field.environment","isShown":true},{"name":"Description","id":"description","key":"issue.field.description","isShown":true},{"name":"Comment","id":"comment","key":"issue.field.comment","isShown":true},{"name":"Label","id":"labels","key":"issue.field.labels","isShown":true,"lastViewed":1741181395359},{"name":"Query","id":"text","key":"text","isShown":true},{"name":"Bonfire Browser","id":"customfield_10229","key":"com.atlassian.bonfire.plugin:bonfire-text","isShown":true},{"name":"Bonfire Operating System","id":"customfield_10231","key":"com.atlassian.bonfire.plugin:bonfire-text","isShown":true},{"name":"Bonfire Screen Resolution","id":"customfield_10244","key":"com.atlassian.bonfire.plugin:bonfire-text","isShown":true},{"name":"Bonfire URL","id":"customfield_10237","key":"com.atlassian.bonfire.plugin:bonfire-text","isShown":true},{"name":"Bonfire User Agent","id":"customfield_10226","key":"com.atlassian.bonfire.plugin:bonfire-text","isShown":true},{"name":"Bonfire jQuery Version","id":"customfield_10252","key":"com.atlassian.bonfire.plugin:bonfire-text","isShown":true},{"name":"Business Value","id":"customfield_10333","key":"com.atlassian.jira.plugin.system.customfieldtypes:float","isShown":false},{"name":"Development","id":"customfield_10720","key":"com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary","isShown":true},{"name":"Epic Color","id":"customfield_10328","key":"com.pyxis.greenhopper.jira:gh-epic-color","isShown":false},{"name":"Epic Link","id":"customfield_10325","key":"com.pyxis.greenhopper.jira:gh-epic-link","isShown":true},{"name":"Epic Name","id":"customfield_10327","key":"com.pyxis.greenhopper.jira:gh-epic-label","isShown":true},{"name":"Epic Status","id":"customfield_10326","key":"com.pyxis.greenhopper.jira:gh-epic-status","isShown":false},{"name":"Epic/Theme","id":"customfield_10331","key":"com.atlassian.jira.plugin.system.customfieldtypes:labels","isShown":true},{"name":"Flagged","id":"customfield_10330","key":"com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes","isShown":true},{"name":"GitHub Users to Authorize as Committers","id":"customfield_10323","key":"com.atlassian.jira.plugin.system.customfieldtypes:textarea","isShown":true},{"name":"Issue Tracker","id":"customfield_11320","key":"com.atlassian.jira.plugin.system.customfieldtypes:select","isShown":true},{"name":"JIRA Capture Browser","id":"customfield_10228","key":"com.atlassian.bonfire.plugin:bonfire-text","isShown":true},{"name":"JIRA Capture Browser","id":"customfield_10230","key":"com.atlassian.bonfire.plugin:bonfire-text","isShown":true},{"name":"JIRA Capture Document Mode","id":"customfield_10258","key":"com.atlassian.bonfire.plugin:bonfire-text","isShown":true},{"name":"JIRA Capture Operating System","id":"customfield_10232","key":"com.atlassian.bonfire.plugin:bonfire-text","isShown":true},{"name":"JIRA Capture Operating System","id":"customfield_10233","key":"com.atlassian.bonfire.plugin:bonfire-text","isShown":true},{"name":"JIRA Capture Operating System","id":"customfield_10234","key":"com.atlassian.bonfire.plugin:bonfire-text","isShown":true},{"name":"JIRA Capture Operating System","id":"customfield_10236","key":"com.atlassian.bonfire.plugin:bonfire-text","isShown":true},{"name":"JIRA Capture Operating System","id":"customfield_10238","key":"com.atlassian.bonfire.plugin:bonfire-text","isShown":true},{"name":"JIRA Capture Operating System","id":"customfield_10239","key":"com.atlassian.bonfire.plugin:bonfire-text","isShown":true},{"name":"JIRA Capture Screen Resolution","id":"customfield_10245","key":"com.atlassian.bonfire.plugin:bonfire-text","isShown":true},{"name":"JIRA Capture Screen Resolution","id":"customfield_10246","key":"com.atlassian.bonfire.plugin:bonfire-text","isShown":true},{"name":"JIRA Capture Screen Resolution","id":"customfield_10247","key":"com.atlassian.bonfire.plugin:bonfire-text","isShown":true},{"name":"JIRA Capture Screen Resolution","id":"customfield_10248","key":"com.atlassian.bonfire.plugin:bonfire-text","isShown":true},{"name":"JIRA Capture Screen Resolution","id":"customfield_10249","key":"com.atlassian.bonfire.plugin:bonfire-text","isShown":true},{"name":"JIRA Capture Screen Resolution","id":"customfield_10250","key":"com.atlassian.bonfire.plugin:bonfire-text","isShown":true},{"name":"JIRA Capture URL","id":"customfield_10240","key":"com.atlassian.bonfire.plugin:bonfire-text","isShown":true},{"name":"JIRA Capture URL","id":"customfield_10241","key":"com.atlassian.bonfire.plugin:bonfire-text","isShown":true},{"name":"JIRA Capture URL","id":"customfield_10242","key":"com.atlassian.bonfire.plugin:bonfire-text","isShown":true},{"name":"JIRA Capture URL","id":"customfield_10243","key":"com.atlassian.bonfire.plugin:bonfire-text","isShown":true},{"name":"JIRA Capture User Agent","id":"customfield_10225","key":"com.atlassian.bonfire.plugin:bonfire-text","isShown":true},{"name":"JIRA Capture User Agent","id":"customfield_10227","key":"com.atlassian.bonfire.plugin:bonfire-text","isShown":true},{"name":"JIRA Capture jQuery Version","id":"customfield_10251","key":"com.atlassian.bonfire.plugin:bonfire-text","isShown":true},{"name":"JIRA Capture jQuery Version","id":"customfield_10253","key":"com.atlassian.bonfire.plugin:bonfire-text","isShown":true},{"name":"JIRA Capture jQuery Version","id":"customfield_10254","key":"com.atlassian.bonfire.plugin:bonfire-text","isShown":true},{"name":"JIRA Capture jQuery Version","id":"customfield_10255","key":"com.atlassian.bonfire.plugin:bonfire-text","isShown":true},{"name":"JIRA Capture jQuery Version","id":"customfield_10256","key":"com.atlassian.bonfire.plugin:bonfire-text","isShown":true},{"name":"JIRA Capture jQuery Version","id":"customfield_10257","key":"com.atlassian.bonfire.plugin:bonfire-text","isShown":true},{"name":"Meeting minutes URL","id":"customfield_10020","key":"com.atlassian.jira.plugin.system.customfieldtypes:url","isShown":false},{"name":"New Repository Name","id":"customfield_10321","key":"com.atlassian.jira.plugin.system.customfieldtypes:textfield","isShown":true},{"name":"Original story points","id":"customfield_11423","key":"com.atlassian.jpo:jpo-custom-field-original-story-points","isShown":true},{"name":"Parent Link","id":"customfield_11420","key":"com.atlassian.jpo:jpo-custom-field-parent","isShown":false},{"name":"Plugin Description","id":"customfield_10322","key":"com.atlassian.jira.plugin.system.customfieldtypes:textarea","isShown":true},{"name":"Raised During","id":"customfield_10220","key":"com.atlassian.bonfire.plugin:bonfire-session-cft","isShown":false},{"name":"Raised During","id":"customfield_10221","key":"com.atlassian.bonfire.plugin:bonfire-session-cft","isShown":false},{"name":"Rank","id":"customfield_10324","key":"com.pyxis.greenhopper.jira:gh-lexo-rank","isShown":true},{"name":"Released As","id":"customfield_10620","key":"com.atlassian.jira.plugin.system.customfieldtypes:textfield","isShown":true},{"name":"Repository URL","id":"customfield_10320","key":"com.atlassian.jira.plugin.system.customfieldtypes:url","isShown":true},{"name":"Similar Issues","id":"customfield_10520","key":"com.suggestimate:similar-issues-custom-field","isShown":true},{"name":"Sprint","id":"customfield_10329","key":"com.pyxis.greenhopper.jira:gh-sprint","isShown":true},{"name":"Story Points","id":"customfield_10332","key":"com.atlassian.jira.plugin.system.customfieldtypes:float","isShown":false},{"name":"Team","id":"customfield_11424","key":"com.atlassian.teams:rm-teams-custom-field-team","isShown":true},{"name":"Test Sessions","id":"customfield_10222","key":"com.atlassian.bonfire.plugin:bonfire-multi-session-cft","isShown":false},{"name":"Test Sessions","id":"customfield_10223","key":"com.atlassian.bonfire.plugin:bonfire-multi-session-cft","isShown":false},{"name":"Test Sessions","id":"customfield_10224","key":"com.atlassian.bonfire.plugin:bonfire-multi-session-cft","isShown":false},{"name":"Testing Status","id":"customfield_10259","key":"com.atlassian.bonfire.plugin:bonfire-testing-status-cft","isShown":false},{"name":"URL","id":"customfield_10000","key":"com.atlassian.jira.plugin.system.customfieldtypes:url","isShown":true}],"type":"DETAILS","title":"Details"},{"searchers":[{"name":"Created Date","id":"created","key":"issue.field.created","isShown":true},{"name":"Updated Date","id":"updated","key":"issue.field.updated","isShown":true},{"name":"Resolution Date","id":"resolutiondate","key":"issue.field.resolution.date","isShown":true},{"name":"Target end","id":"customfield_11422","key":"com.atlassian.jpo:jpo-custom-field-baseline-end","isShown":true},{"name":"Target start","id":"customfield_11421","key":"com.atlassian.jpo:jpo-custom-field-baseline-start","isShown":true}],"type":"DATES","title":"Dates"},{"searchers":[{"name":"Assignee","id":"assignee","key":"issue.field.assignee","isShown":true,"lastViewed":1741181395353},{"name":"Reporter","id":"reporter","key":"issue.field.reporter","isShown":true}],"type":"PEOPLE","title":"People"}]},"values":{"issuetype":{"name":"Type","editHtml":"\n\n\n\n <div class=\"field-group aui-field-issuetype\" >\n <label for=\"searcher-type\">Type</label> <select class=\"select js-default-checkboxmultiselect\"\n id=\"searcher-type\"\n multiple=\"multiple\"\n name=\"type\"\n data-max-inline-results-displayed=\"100\"\n data-placeholder-text=\"Find Issue Types...\">\n <optgroup>\n \n <option class=\" \"\n id=\"type_-2\"\n title=\"All Standard Issue Types\"\n value=\"-2\">All Standard Issue Types</option>\n </optgroup>\n\n <optgroup label=\"Standard Issue Types\">\n \n <option class=\" imagebacked 10730 \"\n data-icon=\"/secure/viewavatar?size=xsmall&avatarId=14673&avatarType=issuetype\"\n data-fallback-icon=\"/images/icons/issuetypes/blank.png\"\n id=\"type_1\"\n title=\"Bug\"\n value=\"1\">Bug</option>\n \n <option class=\" imagebacked 10730 \"\n data-icon=\"/images/icons/issuetypes/epic.png\"\n data-fallback-icon=\"/images/icons/issuetypes/blank.png\"\n id=\"type_10001\"\n title=\"Epic\"\n value=\"10001\">Epic</option>\n \n <option class=\" imagebacked 10730 \"\n data-icon=\"/secure/viewavatar?size=xsmall&avatarId=14680&avatarType=issuetype\"\n data-fallback-icon=\"/images/icons/issuetypes/blank.png\"\n id=\"type_4\"\n title=\"Improvement\"\n value=\"4\">Improvement</option>\n \n <option class=\" imagebacked 10730 \"\n data-icon=\"/secure/viewavatar?size=xsmall&avatarId=14681&avatarType=issuetype\"\n data-fallback-icon=\"/images/icons/issuetypes/blank.png\"\n id=\"type_2\"\n title=\"New Feature\"\n value=\"2\">New Feature</option>\n \n <option class=\" imagebacked 10730 \"\n data-icon=\"/secure/viewavatar?size=xsmall&avatarId=14670&avatarType=issuetype\"\n data-fallback-icon=\"/images/icons/issuetypes/blank.png\"\n id=\"type_5\"\n title=\"Patch\"\n value=\"5\">Patch</option>\n \n <option class=\" imagebacked 10730 \"\n data-icon=\"/secure/viewavatar?size=xsmall&avatarId=14685&avatarType=issuetype\"\n data-fallback-icon=\"/images/icons/issuetypes/blank.png\"\n id=\"type_10002\"\n title=\"Story\"\n value=\"10002\">Story</option>\n \n <option class=\" imagebacked 10730 \"\n data-icon=\"/secure/viewavatar?size=xsmall&avatarId=14688&avatarType=issuetype\"\n data-fallback-icon=\"/images/icons/issuetypes/blank.png\"\n id=\"type_3\"\n title=\"Task\"\n value=\"3\">Task</option>\n </optgroup>\n\n <optgroup label=\"Sub-Task Issue Types\">\n </optgroup>\n </select>\n </div>\n ","validSearcher":true,"isShown":true},"project":{"name":"Project","editHtml":" \n <div class=\"field-group aui-field-project\" >\n <label for=\"searcher-pid\">Project</label> <select class=\"js-project-checkboxmultiselect\"\n data-placeholder-text=\"Find Projects...\"\n id=\"searcher-pid\"\n multiple=\"multiple\"\n name=\"pid\">\n <optgroup label=\"Recent Projects\">\n </optgroup>\n <optgroup label=\"All Projects\" >\n \n <option data-icon=\"/secure/projectavatar?pid=10172&size=small\"\n title=\"Jenkins\"\n value=\"10172\">\n Jenkins (JENKINS)\n </option>\n <option data-icon=\"/secure/projectavatar?pid=10050&size=small\"\n title=\"test\"\n value=\"10050\">\n test (TEST)\n </option>\n </optgroup>\n </select>\n </div>\n \n\n","validSearcher":true,"isShown":true},"assignee":{"name":"Assignee","editHtml":"\n \n <div class=\"field-group aui-field-userlist\" >\n <label for=\"searcher-assigneeSelect\">Assignee</label> <fieldset rel=\"assignee\" class=\"hidden user-group-searcher-params\">\n </fieldset>\n <select class=\"js-usergroup-checkboxmultiselect\" multiple=\"multiple\" id=\"assignee\" name=\"assignee\" data-placeholder-text=\"Enter username or group\">\n <optgroup>\n <option class=\"headerOption\" data-icon=\"https://issues.jenkins.io/secure/useravatar?size=xsmall&avatarId=10293\" value=\"empty\" title=\"Unassigned\">Unassigned</option>\n </optgroup>\n <optgroup>\n </optgroup>\n </select>\n <input type=\"hidden\" name=\"check_prev_assignee\" value=\"true\">\n </div>\n \n","validSearcher":true,"isShown":true},"status":{"name":"Status","editHtml":"\n <div class=\"field-group aui-field-constants\" >\n <label for=\"searcher-status\">Status</label> <select class=\"select js-default-checkboxmultiselectstatuslozenge\"\n data-placeholder-text=\"Find Statuses...\"\n id=\"searcher-status\"\n multiple=\"multiple\"\n name=\"status\"\n data-max-inline-results-displayed=\"100\"\n data-footer-text=\"-88 more options. Continue typing to refine further.\" data-status-lozenge=\"true\">\n <optgroup >\n <option class=\"imagebacked\" data-icon=\"/images/icons/statuses/needinfo.png\" value=\"10001\" title=\"Untriaged\" data-simple-status=\"{"id":"10001","name":"Untriaged","description":"New issue sits in this state until a developer agrees that this is a security issue","iconUrl":"/images/icons/statuses/needinfo.png","statusCategory":{"id":2,"key":"new","colorName":"default"}}\">Untriaged</option>\n <option class=\"imagebacked\" data-icon=\"/images/icons/statuses/open.png\" value=\"1\" title=\"Open\" data-simple-status=\"{"id":"1","name":"Open","description":"The issue is open and ready for the assignee to start work on it.","iconUrl":"/images/icons/statuses/open.png","statusCategory":{"id":2,"key":"new","colorName":"default"}}\">Open</option>\n <option class=\"imagebacked\" data-icon=\"/images/icons/statuses/inprogress.png\" value=\"3\" title=\"In Progress\" data-simple-status=\"{"id":"3","name":"In Progress","description":"This issue is being actively worked on at the moment by the assignee.","iconUrl":"/images/icons/statuses/inprogress.png","statusCategory":{"id":4,"key":"indeterminate","colorName":"inprogress"}}\">In Progress</option>\n <option class=\"imagebacked\" data-icon=\"/images/icons/statuses/reopened.png\" value=\"4\" title=\"Reopened\" data-simple-status=\"{"id":"4","name":"Reopened","description":"This issue was once resolved, but the resolution was deemed incorrect. From here issues are either marked assigned or resolved.","iconUrl":"/images/icons/statuses/reopened.png","statusCategory":{"id":4,"key":"indeterminate","colorName":"inprogress"}}\">Reopened</option>\n <option class=\"imagebacked\" data-icon=\"/images/icons/statuses/information.png\" value=\"10005\" title=\"In Review\" data-simple-status=\"{"id":"10005","name":"In Review","description":"","iconUrl":"/images/icons/statuses/information.png","statusCategory":{"id":4,"key":"indeterminate","colorName":"inprogress"}}\">In Review</option>\n <option class=\"imagebacked\" data-icon=\"/images/icons/statuses/resolved.png\" value=\"10002\" title=\"Fix Prepared\" data-simple-status=\"{"id":"10002","name":"Fix Prepared","description":"A fix is implemented and is waiting for the next security release","iconUrl":"/images/icons/statuses/resolved.png","statusCategory":{"id":4,"key":"indeterminate","colorName":"inprogress"}}\">Fix Prepared</option>\n <option class=\"imagebacked\" data-icon=\"/images/icons/statuses/generic.png\" value=\"10000\" title=\"Verified\" data-simple-status=\"{"id":"10000","name":"Verified","description":"Verified","iconUrl":"/images/icons/statuses/generic.png","statusCategory":{"id":4,"key":"indeterminate","colorName":"inprogress"}}\">Verified</option>\n <option class=\"imagebacked\" data-icon=\"/images/icons/statuses/generic.png\" value=\"10203\" title=\"Fixed but Unreleased\" data-simple-status=\"{"id":"10203","name":"Fixed but Unreleased","description":"This change has been implemented and merged, but not yet released.","iconUrl":"/images/icons/statuses/generic.png","statusCategory":{"id":3,"key":"done","colorName":"success"}}\">Fixed but Unreleased</option>\n <option class=\"imagebacked\" data-icon=\"/images/icons/statuses/resolved.png\" value=\"5\" title=\"Resolved\" data-simple-status=\"{"id":"5","name":"Resolved","description":"A developer had implemented a fix and is waiting for a feedback from the reporter.","iconUrl":"/images/icons/statuses/resolved.png","statusCategory":{"id":3,"key":"done","colorName":"success"}}\">Resolved</option>\n <option class=\"imagebacked\" data-icon=\"/images/icons/statuses/closed.png\" value=\"6\" title=\"Closed\" data-simple-status=\"{"id":"6","name":"Closed","description":"The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.","iconUrl":"/images/icons/statuses/closed.png","statusCategory":{"id":3,"key":"done","colorName":"success"}}\">Closed</option>\n <option class=\"imagebacked\" data-icon=\"/images/icons/statuses/open.png\" value=\"10003\" title=\"To Do\" data-simple-status=\"{"id":"10003","name":"To Do","description":"","iconUrl":"/images/icons/statuses/open.png","statusCategory":{"id":2,"key":"new","colorName":"default"}}\">To Do</option>\n <option class=\"imagebacked\" data-icon=\"/images/icons/statuses/closed.png\" value=\"10004\" title=\"Done\" data-simple-status=\"{"id":"10004","name":"Done","description":"","iconUrl":"/images/icons/statuses/closed.png","statusCategory":{"id":3,"key":"done","colorName":"success"}}\">Done</option>\n </optgroup>\n</select>\n </div>\n \n","validSearcher":true,"isShown":true},"labels":{"name":"Label","viewHtml":" <div class=\"searcherValue\">\n \n <label class=\"fieldLabel\" for=\"fieldlabels\">Label:</label><span id=\"fieldlabels\" class=\"fieldValue\">\n \n git.exe\n</span></div>\n","editHtml":"\n <div class=\"field-group aui-field-labels\" >\n <label for=\"searcher-labels\">Labels</label> <select class=\"js-label-checkboxmultiselect\" multiple=\"multiple\" id=\"searcher-labels\" name=\"labels\" data-placeholder-text=\"Find Labels...\">\n <option value=\"git.exe\" title=\"git.exe\" selected=\"selected\">git.exe</option>\n </select>\n </div>\n \n","jql":"labels = git.exe","validSearcher":true,"isShown":true}}}
[{"id":-1,"name":"My open issues","jql":"assignee = currentUser() AND resolution = Unresolved order by updated DESC","isSystem":true,"sharePermissions":[],"requiresLogin":true},{"id":-2,"name":"Reported by me","jql":"reporter = currentUser() order by created DESC","isSystem":true,"sharePermissions":[],"requiresLogin":true},{"id":-4,"name":"All issues","jql":"order by created DESC","isSystem":true,"sharePermissions":[],"requiresLogin":false},{"id":-5,"name":"Open issues","jql":"resolution = Unresolved order by priority DESC,updated DESC","isSystem":true,"sharePermissions":[],"requiresLogin":false},{"id":-9,"name":"Done issues","jql":"statusCategory = Done order by updated DESC","isSystem":true,"sharePermissions":[],"requiresLogin":false},{"id":-3,"name":"Viewed recently","jql":"issuekey in issueHistory() order by lastViewed DESC","isSystem":true,"sharePermissions":[],"requiresLogin":false},{"id":-6,"name":"Created recently","jql":"created >= -1w order by created DESC","isSystem":true,"sharePermissions":[],"requiresLogin":false},{"id":-7,"name":"Resolved recently","jql":"resolutiondate >= -1w order by updated DESC","isSystem":true,"sharePermissions":[],"requiresLogin":false},{"id":-8,"name":"Updated recently","jql":"updated >= -1w order by updated DESC","isSystem":true,"sharePermissions":[],"requiresLogin":false}]
Thanks for sharing the items which you investigated.
This is not a bug, but one or more missing configuration settings.
It appears you have a slow connection to your remote repository (100-200 KB per second) and a large enough repository that it cannot be cloned before the default 10 minute timeout has expired. There are several steps you can take to resolve the issue.