Open
Conversation
Adds wasm_http_url field to StartRequest. When set, the proplet fetches the wasm binary directly via HTTP instead of MQTT chunking or OCI registry. Enforces a 100MB streaming size limit and validates the URL scheme.
e66dc6a to
eb9509c
Compare
rodneyosodo
requested changes
Mar 24, 2026
| "name": t.Name, | ||
| "state": t.State, | ||
| "image_url": t.ImageURL, | ||
| "wasm_http_url": t.WasmHTTPURL, |
Contributor
There was a problem hiding this comment.
Based on the image_url, can we identify if the wasm module is in a registry or not?
For example:
docker.io/rodneydav/addition.wasm-> registryhttps://propeller.absmach.eu/examples/addition.wasm-> Blob
…separate field Remove the wasm_http_url field from Task and StartRequest. Proplets now detect plain HTTP delivery by checking if image_url starts with http:// or https://, falling through to registry fetch otherwise. Drops the DB migration and storage columns added for wasm_http_url.
JeffMboya
added a commit
to JeffMboya/propeller
that referenced
this pull request
Mar 26, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What type of PR is this?
This is a feature - adds wasm HTTP URL delivery
What does this do?
Proplets can now fetch wasm binaries via plain
HTTP URL. Addswasm_http_urlfield to tasks, with a 100MB streaming size limit and URL scheme validationWhich issue(s) does this PR fix/relate to?
Have you included tests for your changes?
Yes - unit tests for fetch logic and SQLite round-trips
Did you document any new/modified features?
Documented at absmach/propeller-website#30
Notes