toasty
MModular
•Created by Jack Clayton on 5/11/2024 in #community-showcase
Lightbug HTTP: Mojo web framework
@a2svior Looks like the recipe needs to be updated: https://github.com/Lightbug-HQ/lightbug_http/blob/main/recipes/recipe.yaml#L22
467 replies
MModular
•Created by Jack Clayton on 5/11/2024 in #community-showcase
Lightbug HTTP: Mojo web framework
Nope that’s right! I changed the versioning scheme
467 replies
MModular
•Created by Jack Clayton on 5/11/2024 in #community-showcase
Lightbug HTTP: Mojo web framework
Yeah, your installation for some reason is pulling a version of small_time that’s old. I’m assuming it’s still 0.1.6, which is from mojo 24.6. If you create a new project and add in lightbug, do you get the same behavior?
467 replies
MModular
•Created by Jack Clayton on 5/11/2024 in #community-showcase
Lightbug HTTP: Mojo web framework
@a2svior I pushed a new version with a looser version pin
467 replies
MModular
•Created by Jack Clayton on 5/11/2024 in #community-showcase
Lightbug HTTP: Mojo web framework
I will update it to a version range between >25.1.0,<25.2.0 later. In the meantime you should be good if you use 25.1.0?
467 replies
MModular
•Created by Jack Clayton on 5/11/2024 in #community-showcase
Lightbug HTTP: Mojo web framework
Ah, max version 25.1.1? And small-time’s latest version is 0.1.8. I pinned it to 25.1.0 only, so that’s why you’re seeing an issue
467 replies
MModular
•Created by Jack Clayton on 5/11/2024 in #community-showcase
Lightbug HTTP: Mojo web framework
I have not yet, but if you run magic list what version of lightbug, max, and smalltime are present in your env?
467 replies
MModular
•Created by Jack Clayton on 5/11/2024 in #community-showcase
Lightbug HTTP: Mojo web framework
We should check if content-length > 0 before trying to read the body, and we should also skip any leading \r\n before reading the body. There was a leading \r\n that consumed 2 bytes that was expected in the body itself, so that's why you saw
go
truncated off the end.467 replies
MModular
•Created by Jack Clayton on 5/11/2024 in #community-showcase
Lightbug HTTP: Mojo web framework
I think I fixed the bug, I will open a PR for it
467 replies
MModular
•Created by Jack Clayton on 5/11/2024 in #community-showcase
Lightbug HTTP: Mojo web framework
I was mistaken, HTTPrequest does not implement repr at the moment, but I'm trying to run
print(repr(req.get_body()))
to check on the newlines present. I ran it with no body and it looks fine, I see 2 CRLF (\r\n\r\n) which is correct, but I need to test it with a request that has a body. I don't think we have an unit tests for request parsing that includes a body yet.467 replies
MModular
•Created by Jack Clayton on 5/11/2024 in #community-showcase
Lightbug HTTP: Mojo web framework
If you repr the request, are there 3 \r\n before the request body?
467 replies
MModular
•Created by Jack Clayton on 5/11/2024 in #community-showcase
Lightbug HTTP: Mojo web framework
Usually if I want to print bytes I’ll make it a stringslice
467 replies
MModular
•Created by Jack Clayton on 5/11/2024 in #community-showcase
Lightbug HTTP: Mojo web framework
The last one is truncated because body_raw is a list of bytes that are not null terminated. So you lose the last character
467 replies
MModular
•Created by Jack Clayton on 5/11/2024 in #community-showcase
Lightbug HTTP: Mojo web framework
At most I have 3 servers I use for my k8s cluster haha. Definitely not in the distributed DB realm outside of work stuff
467 replies
MModular
•Created by Jack Clayton on 5/11/2024 in #community-showcase
Lightbug HTTP: Mojo web framework
@Owen Hilyard If you're open to sending out invites, I'd love to see what you're working on!
467 replies
MModular
•Created by Jack Clayton on 5/11/2024 in #community-showcase
Lightbug HTTP: Mojo web framework
In my experience it was like every 1-3 nightly versions. So, trying to maintain a nightly version of any lib is quite time consuming.
467 replies
MModular
•Created by Jack Clayton on 5/11/2024 in #community-showcase
Lightbug HTTP: Mojo web framework
Mojo versions become incompatible fairly quickly
467 replies
MModular
•Created by duck_tape on 12/10/2024 in #community-showcase
ExtraMojo
That’s kind of what stopped me from poking at it myself. Wasn’t sure if the general direction was to make the default buffered r/w or to separate that out
83 replies
MModular
•Created by duck_tape on 12/10/2024 in #community-showcase
ExtraMojo
Have you considered adding your buffered read logic to the FileHandle struct in the stdlib? Would be nice to get readline and iteration over lines added to it!
83 replies
MModular
•Created by Jack Clayton on 5/11/2024 in #community-showcase
Lightbug HTTP: Mojo web framework
Alternatively,
Headers
is also writable, so you can print req.headers
as well467 replies