Hello experts.
I typically work locally and push to glitch. The pattern has always worked correctly, but after some changes to the project, I started getting this error when pushing:
error: RPC failed; HTTP 503 curl 22 The requested URL returned error: 503
send-pack: unexpected disconnect while reading sideband packet
Writing objects: 100% (43/43), 2.71 MiB | 23.00 KiB/s, done.
Total 43 (delta 15), reused 0 (delta 0), pack-reused 0
fatal: the remote end hung up unexpectedly
I thought it could be a project size quota, but that is not the case. Does anyone have any suggestions on how to investigate further?
Thanks
the error: RPC failed; HTTP 503
you’re encountering when your pushing it to glitch indicates that the Glitch server might temporarily be unable to process your request, even though the platform itself remains operational for other users. This 503 error, coupled with the unexpected disconnect
message, suggests that the connection between your computer and the Glitch server is being interrupted during the data transfer. While Glitch’s overall stability is great, it’s still possible that the push is too large, your internet connection is unstable, or a firewall/proxy is interfering with the connection, all of which can overwhelm the server’s resources for a request and prematurely terminate the transfer. IT’s also possible that a recent change with Glitch’s node version introduced a configuration issue, or a change in your project introduced a issue that triggered this error specifically for your pushes.