274
Lemmy (lemmy.world)
top 50 comments
sorted by: hot top controversial new old
[-] rimorso@feddit.it 80 points 1 year ago

Lemmy is written in rust, that's a java error so the issue lies with the app you're using not Lemmy itself (maybe)

[-] Atemu@lemmy.ml 60 points 1 year ago

The cause is a 502 from lemmy.

Jerboa's handling of that error is also terrible but that's another issue.

[-] 4am@lemmy.world 6 points 1 year ago

Memmy doesn’t do well with it either.

Of course it doesn’t bode well for the instance itself that it’s throwing so many…but it’s unclear if that’s an operator problem or a code base problem.

[-] T156@lemmy.world 6 points 1 year ago

It could also just be a server load issue.

Lemmy.world, the community the instance is hosted on, has been having a few issues between the 0.18.1 update, and the amount of users on the platform.

[-] Marxine@lemmy.world 7 points 1 year ago

Mostly the user count at this point, although things have become more stable the last few hours

load more comments (1 replies)
[-] Binderfullofpizza@lemmy.world 2 points 1 year ago

Is there a good Lenny app because so far wefwef hasn’t been great for me.

[-] LeylaaLovee@lemmy.fmhy.ml 8 points 1 year ago

Liftoff is the best I've found so far. Waiting for Sync to come though

[-] kras@lemmy.world 5 points 1 year ago

Same. RIP sync, long live sync!

load more comments (1 replies)
[-] yads@lemmy.world 7 points 1 year ago

Jerboa or just in the browser. Honestly though most people's issues are likely to be because they joined a huge instance which is falling over due to load. Consider making a new account on a smaller instance.

[-] balls_expert@lemmy.blahaj.zone 3 points 1 year ago

Thunder but features aren't all there

[-] Sylocule@lemmy.one 3 points 1 year ago

I am using Memmy at the moment and it’s well decent

https://github.com/Memmy-App/memmy

[-] foxrumor@lemmy.world 2 points 1 year ago

Wefwef has been the best for me so far. I'm a previous Boost for Reddit user, so I'm still waiting for their official Lemmy release and then I'll switch.

load more comments (11 replies)
[-] csm10495@sh.itjust.works 30 points 1 year ago* (last edited 1 year ago)

You know at least it printed an error. I hate when things silently swallow errors.

I'm looking at you, Python programmers:

try:
   <100 lines of nonsense>
except:
   pass
[-] rimorso@feddit.it 20 points 1 year ago

We are not savages now we use

with suppress(Exception):
    > 100 lines nonsense
[-] csm10495@sh.itjust.works 23 points 1 year ago* (last edited 1 year ago)
[-] shrugal@lemmy.world 28 points 1 year ago* (last edited 1 year ago)

Afaik this is not an error from Lemmy but from nginx, which is not able to relay the request to Lemmy and therefore returns a 502 bad gateway response. Imo this just means the servers are over capacity, so most likely a scaling/infrastructure issue.

I had a quick read of the code and it looks pretty solid to me. Not the most "enterprise" code imaginable, but definitely no code smell or quick hacking job.

load more comments (1 replies)
[-] Severopol@lemmy.world 28 points 1 year ago

I've seen this more times than my own family

[-] ggnoredo@lemm.ee 18 points 1 year ago

that's Jerboa issue but probably because It received something from the server that it shouldn't

[-] Atemu@lemmy.ml 15 points 1 year ago

No, the server gave a 502 instead of a JSON and Jerboa doesn't handle that gracefully.

[-] ggnoredo@lemm.ee 2 points 1 year ago

Actually i was trying to say similar issue

load more comments (3 replies)
load more comments (1 replies)
[-] Exatron@lemmy.world 10 points 1 year ago

Value of type java.lang.String cannot be converted to JSONObject

[-] Achyu@lemmy.sdf.org 8 points 1 year ago

Is it a lemmy issue or a jerboa issue?

[-] buda@lemmy.ml 23 points 1 year ago

Serious Answer: This is a Jerboa issue. Lemmy is written in Rust. The error message is a Java error which is what native Android apps use.

[-] Serinus@lemmy.ml 13 points 1 year ago

I think it's both, actually. Lemmy is often giving html where json is expected, and Jerboa isn't handling the error well.

[-] usernotfound@lemmy.ml 15 points 1 year ago

🤔 The server spits out html when it cannot reach the backend. So one could argue it's a configuration issue because the admin didn't provide enough capacity / didn't set up a proper generic json error for backend failures.

FWIW, Liftoff doesn't handle these super gracefully either.

At any rate I think it's kinda awesome that we get to witness these kinds of infancy problems.

[-] nseguin@lemmy.ml 3 points 1 year ago

Well, what should Jerboa do? Pretend it received content?

[-] Atemu@lemmy.ml 15 points 1 year ago

Take it as an error, tell the user about it and then retry with exponential back-off.

[-] entropicdrift@lemmy.sdf.org 11 points 1 year ago

It should display a human-readable error message instead of the raw one.

[-] MysteriousSophon21@lemmy.ca 5 points 1 year ago

No, it's probably when the app is expecting a json but the server returns an html, which usually happens in case of 502 errors.

[-] nothacking@discuss.tchncs.de 1 points 1 year ago

No, this is a lemmy issue. The API specification specifies a JSON response, and the server randomly provides HTML, this is a bug in the server. I agree that Jebora should retry in the case of a network failure (timeout, 4xx staus codes...) but it should not have to retry in a case of a server that is not folowing the standard.

load more comments (1 replies)
[-] weird_nugget@lemmy.world 3 points 1 year ago

I would say Lemmy issue. This is probably a default 502 internal sever error response (which I've been getting repeatedly from lemmy.world). Jerboa (I don't use it btw) is only trying to parse the expected json response. Yes the app could handle the error more gracefully but if Lemmy didn't respond with an error jerboa wouldn't need to.

[-] bappity@lemmy.world 6 points 1 year ago

personally I'd say it's a Jerboa thing. the app should retry loading because sometimes I refresh after this happening and it immediately loads the proper content.

with all the different instances this sort of thing has to be kept in mind

[-] angrymouse@lemmy.world 5 points 1 year ago

Just retry is usually a bad ideia, specially that this problem is probably an overload, just adding retries can makes the problem.even worse with the app ddosing the server

[-] bappity@lemmy.world 1 points 1 year ago
[-] lemann@lemmy.one 1 points 1 year ago

just adding retries can makes the problem.even worse with the app ddosing the server

Twitter has some experience with that

load more comments (2 replies)
[-] skullgiver@popplesburger.hilciferous.nl 1 points 1 year ago* (last edited 7 months ago)

[This comment has been deleted by an automated system]

load more comments (1 replies)
[-] nothacking@discuss.tchncs.de 1 points 1 year ago

Lemmy realy should not randomly emit errors for no reason, there should be no need for retries in this case. If the specification specifies a JSON response, and the server randomly provides HTML, that is a bug in the server.

[-] SuperIce@lemmy.world 3 points 1 year ago

The error is not being emitted by Lemmy though. The 502 error message is returned to the client by nginx when the Lemmy server doesn't respond within the a certain time.

[-] MrScottyTay@sh.itjust.works 3 points 1 year ago

Definitely jerboa

[-] victron@lemmy.world 1 points 1 year ago

I'm having similar errors using liftoff

[-] victron@lemmy.world 1 points 1 year ago

I'm having similar errors using liftoff

[-] davidgro@lemmy.world 1 points 1 year ago
[-] Gruntyfish@lemmy.world 1 points 1 year ago

Lmao I got a 504 when trying to open this post

[-] WolfhoundRO@lemmy.world 1 points 1 year ago

I've seen this on both Jerboa and Connect. And even just now

load more comments
view more: next ›
this post was submitted on 04 Jul 2023
274 points (98.2% liked)

Programmer Humor

31215 readers
513 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 4 years ago
MODERATORS