Getting an error when using a private git repo for cas service registry. It
works correctly if I remove the username and password config options are
use a public repo.
Here is my config for the registry:
cas.serviceRegistry.git.repositoryUrl
=https://gitlab.example.edu/cas-service-registry.git
cas.serviceRegistry.git.branchesToClone=dev
cas.serviceRegistry.git.activeBranch=dev
cas.serviceRegistry.git.username=asdf
cas.serviceRegistry.git.password=asdf
cas.serviceRegistry.git.cloneDirectory=file:/tmp/cas-service-registry
cas.serviceRegistry.git.pushChanges=false
And here is the error I am getting:
2019-10-11 19:03:29,837 ERROR
[org.springframework.scheduling.support.TaskUtils$LoggingErrorHandler] -
<Unexpected error occurred in scheduled task>
org.eclipse.jgit.api.errors.TransportException:
https://gitlab.example.edu/cas-service-registry.git: Authentication is
required but no CredentialsProvider has been registered
Any thoughts?
I used our internal gitlab and tried using a github account also, tested
the credentials are working.
I tried looking at the cas code for the gitServiceRegistry and it seems
like it has the options for specifying a username and password.
Attached full log output also.
Thanks!
--
- Website: https://apereo.github.io/cas
- Gitter Chatroom: https://gitter.im/apereo/cas
- List Guidelines: https://goo.gl/1VRrw7
- Contributions: https://goo.gl/mh7qDG
---
You received this message because you are subscribed to the Google Groups "CAS
Community" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/a/apereo.org/d/msgid/cas-user/219ffe79-9bbf-43c8-b85f-a779a4039a8b%40apereo.org.
2019-10-11 20:03:24,679 ERROR
[org.springframework.aop.interceptor.SimpleAsyncUncaughtExceptionHandler] -
<Unexpected exception occurred invoking async method: public void
org.apereo.cas.config.CasCoreServicesConfiguration.refreshServicesManagerWhenReady(org.springframework.boot.context.event.ApplicationReadyEvent)>
java.lang.reflect.UndeclaredThrowableException: null
at com.sun.proxy.$Proxy146.load(Unknown Source) ~[?:?]
at
org.apereo.cas.config.CasCoreServicesConfiguration.refreshServicesManagerWhenReady(CasCoreServicesConfiguration.java:239)
~[cas-server-core-services-6.1.0-RC6.jar!/:6.1.0-RC6]
at
org.apereo.cas.config.CasCoreServicesConfiguration$$FastClassBySpringCGLIB$$b13b6f59.invoke(<generated>)
~[cas-server-core-services-6.1.0-RC6.jar!/:6.1.0-RC6]
at
org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
~[spring-core-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:769)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:747)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.interceptor.AsyncExecutionInterceptor.lambda$invoke$0(AsyncExecutionInterceptor.java:115)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at java.util.concurrent.FutureTask.run(Unknown Source) ~[?:?]
at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
~[?:?]
at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
~[?:?]
at java.lang.Thread.run(Unknown Source) [?:?]
Caused by: org.eclipse.jgit.api.errors.TransportException:
https://github.com/bondr007/test-cas-service-registry.git: Authentication is
required but no CredentialsProvider has been registered
at org.eclipse.jgit.api.FetchCommand.call(FetchCommand.java:255)
~[org.eclipse.jgit-5.5.0.201909110433-r.jar!/:5.5.0.201909110433-r]
at org.eclipse.jgit.api.PullCommand.call(PullCommand.java:296)
~[org.eclipse.jgit-5.5.0.201909110433-r.jar!/:5.5.0.201909110433-r]
at org.apereo.cas.git.GitRepository.pull(GitRepository.java:169)
~[cas-server-support-git-service-registry-6.1.0-RC6.jar!/:6.1.0-RC6]
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
~[?:?]
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
~[?:?]
at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
Source) ~[?:?]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:?]
at
org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:279)
~[spring-core-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.cloud.context.scope.GenericScope$LockedScopedProxyFactoryBean.invoke(GenericScope.java:499)
~[spring-cloud-context-2.2.0.M3.jar!/:2.2.0.M3]
at
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:747)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.apereo.cas.git.GitRepository$$EnhancerBySpringCGLIB$$8b097ccf.pull(<generated>)
~[cas-server-support-git-service-registry-6.1.0-RC6.jar!/:6.1.0-RC6]
at
org.apereo.cas.services.GitServiceRegistry.load(GitServiceRegistry.java:107)
~[cas-server-support-git-service-registry-6.1.0-RC6.jar!/:6.1.0-RC6]
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
~[?:?]
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
~[?:?]
at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
Source) ~[?:?]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:?]
at
org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:279)
~[spring-core-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.cloud.context.scope.GenericScope$LockedScopedProxyFactoryBean.invoke(GenericScope.java:499)
~[spring-cloud-context-2.2.0.M3.jar!/:2.2.0.M3]
at
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at com.sun.proxy.$Proxy196.load(Unknown Source) ~[?:?]
at java.util.stream.ReferencePipeline$3$1.accept(Unknown Source) ~[?:?]
at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(Unknown
Source) ~[?:?]
at java.util.stream.AbstractPipeline.copyInto(Unknown Source) ~[?:?]
at java.util.stream.AbstractPipeline.wrapAndCopyInto(Unknown Source)
~[?:?]
at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(Unknown
Source) ~[?:?]
at java.util.stream.AbstractPipeline.evaluate(Unknown Source) ~[?:?]
at java.util.stream.ReferencePipeline.collect(Unknown Source) ~[?:?]
at
org.apereo.cas.services.ChainingServiceRegistry.load(ChainingServiceRegistry.java:74)
~[cas-server-core-services-registry-6.1.0-RC6.jar!/:6.1.0-RC6]
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
~[?:?]
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
~[?:?]
at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
Source) ~[?:?]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:?]
at
org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:279)
~[spring-core-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.cloud.context.scope.GenericScope$LockedScopedProxyFactoryBean.invoke(GenericScope.java:499)
~[spring-cloud-context-2.2.0.M3.jar!/:2.2.0.M3]
at
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at com.sun.proxy.$Proxy196.load(Unknown Source) ~[?:?]
at
org.apereo.cas.services.AbstractServicesManager.load(AbstractServicesManager.java:182)
~[cas-server-core-services-registry-6.1.0-RC6.jar!/:6.1.0-RC6]
at
org.apereo.cas.services.AbstractServicesManager$$FastClassBySpringCGLIB$$fbf64054.invoke(<generated>)
~[cas-server-core-services-registry-6.1.0-RC6.jar!/:6.1.0-RC6]
at
org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
~[spring-core-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:769)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:747)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:747)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.apereo.cas.services.DefaultServicesManager$$EnhancerBySpringCGLIB$$16c4a308.load(<generated>)
~[cas-server-core-services-registry-6.1.0-RC6.jar!/:6.1.0-RC6]
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
~[?:?]
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
~[?:?]
at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
Source) ~[?:?]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:?]
at
org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:279)
~[spring-core-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.cloud.context.scope.GenericScope$LockedScopedProxyFactoryBean.invoke(GenericScope.java:499)
~[spring-cloud-context-2.2.0.M3.jar!/:2.2.0.M3]
at
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
... 12 more
Caused by: org.eclipse.jgit.errors.TransportException:
https://github.com/bondr007/test-cas-service-registry.git: Authentication is
required but no CredentialsProvider has been registered
at
org.eclipse.jgit.transport.TransportHttp.connect(TransportHttp.java:564)
~[org.eclipse.jgit-5.5.0.201909110433-r.jar!/:5.5.0.201909110433-r]
at
org.eclipse.jgit.transport.TransportHttp.openFetch(TransportHttp.java:392)
~[org.eclipse.jgit-5.5.0.201909110433-r.jar!/:5.5.0.201909110433-r]
at
org.eclipse.jgit.transport.FetchProcess.executeImp(FetchProcess.java:138)
~[org.eclipse.jgit-5.5.0.201909110433-r.jar!/:5.5.0.201909110433-r]
at
org.eclipse.jgit.transport.FetchProcess.execute(FetchProcess.java:124)
~[org.eclipse.jgit-5.5.0.201909110433-r.jar!/:5.5.0.201909110433-r]
at org.eclipse.jgit.transport.Transport.fetch(Transport.java:1292)
~[org.eclipse.jgit-5.5.0.201909110433-r.jar!/:5.5.0.201909110433-r]
at org.eclipse.jgit.api.FetchCommand.call(FetchCommand.java:244)
~[org.eclipse.jgit-5.5.0.201909110433-r.jar!/:5.5.0.201909110433-r]
at org.eclipse.jgit.api.PullCommand.call(PullCommand.java:296)
~[org.eclipse.jgit-5.5.0.201909110433-r.jar!/:5.5.0.201909110433-r]
at org.apereo.cas.git.GitRepository.pull(GitRepository.java:169)
~[cas-server-support-git-service-registry-6.1.0-RC6.jar!/:6.1.0-RC6]
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
~[?:?]
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
~[?:?]
at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
Source) ~[?:?]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:?]
at
org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:279)
~[spring-core-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.cloud.context.scope.GenericScope$LockedScopedProxyFactoryBean.invoke(GenericScope.java:499)
~[spring-cloud-context-2.2.0.M3.jar!/:2.2.0.M3]
at
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:747)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.apereo.cas.git.GitRepository$$EnhancerBySpringCGLIB$$8b097ccf.pull(<generated>)
~[cas-server-support-git-service-registry-6.1.0-RC6.jar!/:6.1.0-RC6]
at
org.apereo.cas.services.GitServiceRegistry.load(GitServiceRegistry.java:107)
~[cas-server-support-git-service-registry-6.1.0-RC6.jar!/:6.1.0-RC6]
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
~[?:?]
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
~[?:?]
at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
Source) ~[?:?]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:?]
at
org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:279)
~[spring-core-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.cloud.context.scope.GenericScope$LockedScopedProxyFactoryBean.invoke(GenericScope.java:499)
~[spring-cloud-context-2.2.0.M3.jar!/:2.2.0.M3]
at
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at com.sun.proxy.$Proxy196.load(Unknown Source) ~[?:?]
at java.util.stream.ReferencePipeline$3$1.accept(Unknown Source) ~[?:?]
at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(Unknown
Source) ~[?:?]
at java.util.stream.AbstractPipeline.copyInto(Unknown Source) ~[?:?]
at java.util.stream.AbstractPipeline.wrapAndCopyInto(Unknown Source)
~[?:?]
at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(Unknown
Source) ~[?:?]
at java.util.stream.AbstractPipeline.evaluate(Unknown Source) ~[?:?]
at java.util.stream.ReferencePipeline.collect(Unknown Source) ~[?:?]
at
org.apereo.cas.services.ChainingServiceRegistry.load(ChainingServiceRegistry.java:74)
~[cas-server-core-services-registry-6.1.0-RC6.jar!/:6.1.0-RC6]
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
~[?:?]
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
~[?:?]
at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
Source) ~[?:?]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:?]
at
org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:279)
~[spring-core-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.cloud.context.scope.GenericScope$LockedScopedProxyFactoryBean.invoke(GenericScope.java:499)
~[spring-cloud-context-2.2.0.M3.jar!/:2.2.0.M3]
at
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at com.sun.proxy.$Proxy196.load(Unknown Source) ~[?:?]
at
org.apereo.cas.services.AbstractServicesManager.load(AbstractServicesManager.java:182)
~[cas-server-core-services-registry-6.1.0-RC6.jar!/:6.1.0-RC6]
at
org.apereo.cas.services.AbstractServicesManager$$FastClassBySpringCGLIB$$fbf64054.invoke(<generated>)
~[cas-server-core-services-registry-6.1.0-RC6.jar!/:6.1.0-RC6]
at
org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
~[spring-core-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:769)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:747)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:747)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.apereo.cas.services.DefaultServicesManager$$EnhancerBySpringCGLIB$$16c4a308.load(<generated>)
~[cas-server-core-services-registry-6.1.0-RC6.jar!/:6.1.0-RC6]
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
~[?:?]
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
~[?:?]
at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
Source) ~[?:?]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:?]
at
org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:279)
~[spring-core-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.cloud.context.scope.GenericScope$LockedScopedProxyFactoryBean.invoke(GenericScope.java:499)
~[spring-cloud-context-2.2.0.M3.jar!/:2.2.0.M3]
at
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
... 12 more
2019-10-11 20:03:44,605 ERROR
[org.springframework.scheduling.support.TaskUtils$LoggingErrorHandler] -
<Unexpected error occurred in scheduled task>
org.eclipse.jgit.api.errors.TransportException:
https://github.com/bondr007/test-cas-service-registry.git: Authentication is
required but no CredentialsProvider has been registered
at org.eclipse.jgit.api.FetchCommand.call(FetchCommand.java:255)
~[org.eclipse.jgit-5.5.0.201909110433-r.jar!/:5.5.0.201909110433-r]
at org.eclipse.jgit.api.PullCommand.call(PullCommand.java:296)
~[org.eclipse.jgit-5.5.0.201909110433-r.jar!/:5.5.0.201909110433-r]
at org.apereo.cas.git.GitRepository.pull(GitRepository.java:169)
~[cas-server-support-git-service-registry-6.1.0-RC6.jar!/:6.1.0-RC6]
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
~[?:?]
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
~[?:?]
at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
Source) ~[?:?]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:?]
at
org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:279)
~[spring-core-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.cloud.context.scope.GenericScope$LockedScopedProxyFactoryBean.invoke(GenericScope.java:499)
~[spring-cloud-context-2.2.0.M3.jar!/:2.2.0.M3]
at
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:747)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.apereo.cas.git.GitRepository$$EnhancerBySpringCGLIB$$8b097ccf.pull(<generated>)
~[cas-server-support-git-service-registry-6.1.0-RC6.jar!/:6.1.0-RC6]
at
org.apereo.cas.services.GitServiceRegistry.load(GitServiceRegistry.java:107)
~[cas-server-support-git-service-registry-6.1.0-RC6.jar!/:6.1.0-RC6]
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
~[?:?]
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
~[?:?]
at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
Source) ~[?:?]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:?]
at
org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:279)
~[spring-core-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.cloud.context.scope.GenericScope$LockedScopedProxyFactoryBean.invoke(GenericScope.java:499)
~[spring-cloud-context-2.2.0.M3.jar!/:2.2.0.M3]
at
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at com.sun.proxy.$Proxy196.load(Unknown Source) ~[?:?]
at java.util.stream.ReferencePipeline$3$1.accept(Unknown Source) ~[?:?]
at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(Unknown
Source) ~[?:?]
at java.util.stream.AbstractPipeline.copyInto(Unknown Source) ~[?:?]
at java.util.stream.AbstractPipeline.wrapAndCopyInto(Unknown Source)
~[?:?]
at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(Unknown
Source) ~[?:?]
at java.util.stream.AbstractPipeline.evaluate(Unknown Source) ~[?:?]
at java.util.stream.ReferencePipeline.collect(Unknown Source) ~[?:?]
at
org.apereo.cas.services.ChainingServiceRegistry.load(ChainingServiceRegistry.java:74)
~[cas-server-core-services-registry-6.1.0-RC6.jar!/:6.1.0-RC6]
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
~[?:?]
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
~[?:?]
at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
Source) ~[?:?]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:?]
at
org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:279)
~[spring-core-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.cloud.context.scope.GenericScope$LockedScopedProxyFactoryBean.invoke(GenericScope.java:499)
~[spring-cloud-context-2.2.0.M3.jar!/:2.2.0.M3]
at
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at com.sun.proxy.$Proxy196.load(Unknown Source) ~[?:?]
at
org.apereo.cas.services.AbstractServicesManager.load(AbstractServicesManager.java:182)
~[cas-server-core-services-registry-6.1.0-RC6.jar!/:6.1.0-RC6]
at
org.apereo.cas.services.AbstractServicesManager$$FastClassBySpringCGLIB$$fbf64054.invoke(<generated>)
~[cas-server-core-services-registry-6.1.0-RC6.jar!/:6.1.0-RC6]
at
org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
~[spring-core-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:769)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:747)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:747)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.apereo.cas.services.DefaultServicesManager$$EnhancerBySpringCGLIB$$16c4a308.load(<generated>)
~[cas-server-core-services-registry-6.1.0-RC6.jar!/:6.1.0-RC6]
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
~[?:?]
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
~[?:?]
at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
Source) ~[?:?]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:?]
at
org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:279)
~[spring-core-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.cloud.context.scope.GenericScope$LockedScopedProxyFactoryBean.invoke(GenericScope.java:499)
~[spring-cloud-context-2.2.0.M3.jar!/:2.2.0.M3]
at
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at com.sun.proxy.$Proxy146.load(Unknown Source) ~[?:?]
at
org.apereo.cas.services.ServicesManagerScheduledLoader.run(ServicesManagerScheduledLoader.java:34)
~[cas-server-core-services-registry-6.1.0-RC6.jar!/:6.1.0-RC6]
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
~[?:?]
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
~[?:?]
at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
Source) ~[?:?]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:?]
at
org.springframework.scheduling.support.ScheduledMethodRunnable.run(ScheduledMethodRunnable.java:84)
~[spring-context-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54)
~[spring-context-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
~[?:?]
at java.util.concurrent.FutureTask.runAndReset(Unknown Source) ~[?:?]
at
java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(Unknown
Source) ~[?:?]
at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
~[?:?]
at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
~[?:?]
at java.lang.Thread.run(Unknown Source) [?:?]
Caused by: org.eclipse.jgit.errors.TransportException:
https://github.com/bondr007/test-cas-service-registry.git: Authentication is
required but no CredentialsProvider has been registered
at
org.eclipse.jgit.transport.TransportHttp.connect(TransportHttp.java:564)
~[org.eclipse.jgit-5.5.0.201909110433-r.jar!/:5.5.0.201909110433-r]
at
org.eclipse.jgit.transport.TransportHttp.openFetch(TransportHttp.java:392)
~[org.eclipse.jgit-5.5.0.201909110433-r.jar!/:5.5.0.201909110433-r]
at
org.eclipse.jgit.transport.FetchProcess.executeImp(FetchProcess.java:138)
~[org.eclipse.jgit-5.5.0.201909110433-r.jar!/:5.5.0.201909110433-r]
at
org.eclipse.jgit.transport.FetchProcess.execute(FetchProcess.java:124)
~[org.eclipse.jgit-5.5.0.201909110433-r.jar!/:5.5.0.201909110433-r]
at org.eclipse.jgit.transport.Transport.fetch(Transport.java:1292)
~[org.eclipse.jgit-5.5.0.201909110433-r.jar!/:5.5.0.201909110433-r]
at org.eclipse.jgit.api.FetchCommand.call(FetchCommand.java:244)
~[org.eclipse.jgit-5.5.0.201909110433-r.jar!/:5.5.0.201909110433-r]
... 72 more
^[
2019-10-11 20:04:44,742 ERROR
[org.springframework.scheduling.support.TaskUtils$LoggingErrorHandler] -
<Unexpected error occurred in scheduled task>
org.eclipse.jgit.api.errors.TransportException:
https://github.com/bondr007/test-cas-service-registry.git: Authentication is
required but no CredentialsProvider has been registered
at org.eclipse.jgit.api.FetchCommand.call(FetchCommand.java:255)
~[org.eclipse.jgit-5.5.0.201909110433-r.jar!/:5.5.0.201909110433-r]
at org.eclipse.jgit.api.PullCommand.call(PullCommand.java:296)
~[org.eclipse.jgit-5.5.0.201909110433-r.jar!/:5.5.0.201909110433-r]
at org.apereo.cas.git.GitRepository.pull(GitRepository.java:169)
~[cas-server-support-git-service-registry-6.1.0-RC6.jar!/:6.1.0-RC6]
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
~[?:?]
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
~[?:?]
at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
Source) ~[?:?]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:?]
at
org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:279)
~[spring-core-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.cloud.context.scope.GenericScope$LockedScopedProxyFactoryBean.invoke(GenericScope.java:499)
~[spring-cloud-context-2.2.0.M3.jar!/:2.2.0.M3]
at
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:747)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.apereo.cas.git.GitRepository$$EnhancerBySpringCGLIB$$8b097ccf.pull(<generated>)
~[cas-server-support-git-service-registry-6.1.0-RC6.jar!/:6.1.0-RC6]
at
org.apereo.cas.services.GitServiceRegistry.load(GitServiceRegistry.java:107)
~[cas-server-support-git-service-registry-6.1.0-RC6.jar!/:6.1.0-RC6]
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
~[?:?]
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
~[?:?]
at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
Source) ~[?:?]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:?]
at
org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:279)
~[spring-core-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.cloud.context.scope.GenericScope$LockedScopedProxyFactoryBean.invoke(GenericScope.java:499)
~[spring-cloud-context-2.2.0.M3.jar!/:2.2.0.M3]
at
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at com.sun.proxy.$Proxy196.load(Unknown Source) ~[?:?]
at java.util.stream.ReferencePipeline$3$1.accept(Unknown Source) ~[?:?]
at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(Unknown
Source) ~[?:?]
at java.util.stream.AbstractPipeline.copyInto(Unknown Source) ~[?:?]
at java.util.stream.AbstractPipeline.wrapAndCopyInto(Unknown Source)
~[?:?]
at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(Unknown
Source) ~[?:?]
at java.util.stream.AbstractPipeline.evaluate(Unknown Source) ~[?:?]
at java.util.stream.ReferencePipeline.collect(Unknown Source) ~[?:?]
at
org.apereo.cas.services.ChainingServiceRegistry.load(ChainingServiceRegistry.java:74)
~[cas-server-core-services-registry-6.1.0-RC6.jar!/:6.1.0-RC6]
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
~[?:?]
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
~[?:?]
at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
Source) ~[?:?]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:?]
at
org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:279)
~[spring-core-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.cloud.context.scope.GenericScope$LockedScopedProxyFactoryBean.invoke(GenericScope.java:499)
~[spring-cloud-context-2.2.0.M3.jar!/:2.2.0.M3]
at
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at com.sun.proxy.$Proxy196.load(Unknown Source) ~[?:?]
at
org.apereo.cas.services.AbstractServicesManager.load(AbstractServicesManager.java:182)
~[cas-server-core-services-registry-6.1.0-RC6.jar!/:6.1.0-RC6]
at
org.apereo.cas.services.AbstractServicesManager$$FastClassBySpringCGLIB$$fbf64054.invoke(<generated>)
~[cas-server-core-services-registry-6.1.0-RC6.jar!/:6.1.0-RC6]
at
org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
~[spring-core-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:769)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:747)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:747)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.apereo.cas.services.DefaultServicesManager$$EnhancerBySpringCGLIB$$16c4a308.load(<generated>)
~[cas-server-core-services-registry-6.1.0-RC6.jar!/:6.1.0-RC6]
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
~[?:?]
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
~[?:?]
at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
Source) ~[?:?]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:?]
at
org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:279)
~[spring-core-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.cloud.context.scope.GenericScope$LockedScopedProxyFactoryBean.invoke(GenericScope.java:499)
~[spring-cloud-context-2.2.0.M3.jar!/:2.2.0.M3]
at
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212)
~[spring-aop-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at com.sun.proxy.$Proxy146.load(Unknown Source) ~[?:?]
at
org.apereo.cas.services.ServicesManagerScheduledLoader.run(ServicesManagerScheduledLoader.java:34)
~[cas-server-core-services-registry-6.1.0-RC6.jar!/:6.1.0-RC6]
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
~[?:?]
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
~[?:?]
at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
Source) ~[?:?]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:?]
at
org.springframework.scheduling.support.ScheduledMethodRunnable.run(ScheduledMethodRunnable.java:84)
~[spring-context-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at
org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54)
~[spring-context-5.2.0.RELEASE.jar!/:5.2.0.RELEASE]
at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
~[?:?]
at java.util.concurrent.FutureTask.runAndReset(Unknown Source) ~[?:?]
at
java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(Unknown
Source) ~[?:?]
at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
~[?:?]
at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
~[?:?]
at java.lang.Thread.run(Unknown Source) [?:?]
Caused by: org.eclipse.jgit.errors.TransportException:
https://github.com/bondr007/test-cas-service-registry.git: Authentication is
required but no CredentialsProvider has been registered
at
org.eclipse.jgit.transport.TransportHttp.connect(TransportHttp.java:564)
~[org.eclipse.jgit-5.5.0.201909110433-r.jar!/:5.5.0.201909110433-r]
at
org.eclipse.jgit.transport.TransportHttp.openFetch(TransportHttp.java:392)
~[org.eclipse.jgit-5.5.0.201909110433-r.jar!/:5.5.0.201909110433-r]
at
org.eclipse.jgit.transport.FetchProcess.executeImp(FetchProcess.java:138)
~[org.eclipse.jgit-5.5.0.201909110433-r.jar!/:5.5.0.201909110433-r]
at
org.eclipse.jgit.transport.FetchProcess.execute(FetchProcess.java:124)
~[org.eclipse.jgit-5.5.0.201909110433-r.jar!/:5.5.0.201909110433-r]
at org.eclipse.jgit.transport.Transport.fetch(Transport.java:1292)
~[org.eclipse.jgit-5.5.0.201909110433-r.jar!/:5.5.0.201909110433-r]
at org.eclipse.jgit.api.FetchCommand.call(FetchCommand.java:244)
~[org.eclipse.jgit-5.5.0.201909110433-r.jar!/:5.5.0.201909110433-r]
... 72 more