Hi, is there some kind of problem with <repo.grail...
# questions
j
Hi, is there some kind of problem with repo.grails.org I’m getting frequent 520 (looks like from cloudflare) Started today couple of hours ago. e.g.
Copy code
~ curl -I <https://repo.grails.org/grails/restricted/org/springframework/spring-framework-bom/6.2.16/spring-framework-bom-6.2.16.module>
HTTP/2 520
date: Tue, 17 Mar 2026 17:39:41 GMT
content-type: text/plain; charset=UTF-8
content-length: 15
...

~   curl -I <https://repo.grails.org/grails/restricted/org/springframework/spring-framework-bom/6.2.16/spring-framework-bom-6.2.16.module>
HTTP/2 200
date: Tue, 17 Mar 2026 17:39:43 GMT
content-type: application/octet-stream
content-length: 8445
x-jfrog-version: Artifactory/7.137.0 83700900
...
those are HEAD requests and gradle uses them and aborts immediately when it gets a 520, retry doesn’t work to well
s
I see the same issue. About 1/10 of my calls returns a
520
the rest a
200
j
yes and gradle disables the whole repo after a single 520 and some of the dependencies are only there 😕
s
but you should be able to fetch
spring-framework-bom
from
mavenCentral
and probably the rest of your artifacts as well. Try adding
mavenCentral()
to your
repositories
j
unfortunately some legacy dependencies don’t exist in mavenCentral. e.g
org.grails.plugins:postgresql-extensions:7.0.0
https://repo.grails.org/ui/packages/gav:%2F%2Forg.grails.plugins:postgresql-extensions/7.0.0 😕 ok maybe I can upgrade to 8.0
s
https://github.com/gpc/grails-postgresql-extensions it has changed coordinates to io.github.gpc
j
I have few other like this, ok this is a wake up call then btw, any idea how to raise the problem with repo.grails.org?
s
I will suggest to post an issue at https://github.com/apache/grails-core/issues
🙏 1