This message was deleted.
# community-support
s
This message was deleted.
c
Is that the actual failure? HEAD requests are used to check for existence; often they are informational messages. What does the full failure output look like?
j
we are using an internal proxy that returns 401 in this case, but the proxy gets a 404 from central
would gradlew handle the 404 differently from the 401?
c
Yes. Those are very different errors - 404 is not found, which may be expected for a HEAD request. 401 is an unauthorized error. Suggest checking whether your proxy requires authentication and if Gradle is configured to provide that.
j
That’s a good point, Thanks 👍