Says “مع السلامة” just before crashing which translates to “bye”. I’m working on this for over a year and this is the first time it happens.
Says “مع السلامة” just before crashing which translates to “bye”. I’m working on this for over a year and this is the first time it happens.
Oh wow, I would have assumed it was reading memory outside of its scope.
If you can identify which package is pushing that error you may be able to search that string in their code.
Looks like it’s coming from a sanic feature that randomly chooses a goodbye message: https://github.com/sanic-org/sanic/blob/acb29c9dc4d6ba3a453a18e30f0664ba6772a9b4/sanic/server/goodbye.py#L20
it’s python and I’d guess it’s embedded somewhere in the package. I’ll run a grep on its source to see whether I can find it.
Now I’m curious if grep supports right to left Unicode. Let me know your findings :)
I’d use qerg for that…
haha good point. I use ripgrep though.
I assume it does, internally it’s still just characters
Oh that just characters thing is super complicated and computers have been messing it up for generations though. For example python didn’t have decent support for Unicode until version 3 and it came out after Unicode was already a thing.