These incidents have to hurt Azure's brand value. It's a monster task to run something as big as GitHub, if they ever get it stable it will lend a lot of credibility to Microsoft's cloud skills.
Incident with GitHub Actions, API requests, Codespaces, Git operations, Issues
41–50 of 123 posts
Re: Incident with GitHub Actions, API requests, Codespaces, Git operations, Issues
#42These incidents have to hurt Azure's brand value. It's a monster task to run something as big as GitHub, if they ever get it stable it will lend a lot of credibility to Microsoft's cloud skills.
Re: Incident with GitHub Actions, API requests, Codespaces, Git operations, Issues
#43It's intermittent, I was able to get a push through eventually, and am now hung trying to convert a draft PR to ready for review. It took many tries to get to draft. I'm probably not helping by repeatedly trying, but I don't want to forget this PR. Yay it finally went through.
Re: Incident with GitHub Actions, API requests, Codespaces, Git operations, Issues
#44I'm finding that pushes do go through eventually, this is probably grossly irresponsible, so I don't recommend its use, but I remembered I had this old alias to "push harder" in my ~/.gitconfig: [alias] thrust = "!f() { until git push $@; do sleep 0.5; done; }; f" I've done a few pushes so far, and found that it's going through in <10 tries or so.
Re: Incident with GitHub Actions, API requests, Codespaces, Git operations, Issues
#45Whew, glad I decided to scroll HN right now. I've been puzzling over why I'm getting "! [remote rejected] master -> master (Internal Server Error)" as well while trying to push and decided to take a break.
Re: Incident with GitHub Actions, API requests, Codespaces, Git operations, Issues
#46Earlier quoted context omitted.
It's been like that for at least 6 hours, randomly appearing. I would take a pause and try again and then it would work, but now it's definitely much more persistent. Guess it's time to go play some video games.... https://xkcd.com/303/
Here you go: $ while ! git push my; do sleep 1; done Works for me eventually, although commits do not appear in web interface (they do in the actual repository).
Re: Incident with GitHub Actions, API requests, Codespaces, Git operations, Issues
#47Re: Incident with GitHub Actions, API requests, Codespaces, Git operations, Issues
#48Re: Incident with GitHub Actions, API requests, Codespaces, Git operations, Issues
#49Earlier quoted context omitted.
It's been like that for at least 6 hours, randomly appearing. I would take a pause and try again and then it would work, but now it's definitely much more persistent. Guess it's time to go play some video games.... https://xkcd.com/303/
Here you go: $ while ! git push my; do sleep 1; done Works for me eventually, although commits do not appear in web interface (they do in the actual repository).
Re: Incident with GitHub Actions, API requests, Codespaces, Git operations, Issues
#50Earlier quoted context omitted.
Here you go: $ while ! git push my; do sleep 1; done Works for me eventually, although commits do not appear in web interface (they do in the actual repository).
-f does not sound like a good idea to me in a script like that.