Steve Schoettler
Steve Schoettler
we want a way to manually produce a tarball for a particular arch
updated sample above to add `lattice_id` to host attributes.
If `start | call` is intended to be an expression, it would be easier to parse if it's a list of strings: ``` action = [ "start_provider" ] ``` or...
ok I wasn't sure if the `|` was intended to be a regex-like operator. I think all actions should be a single word with no spaces. If it's one action...
changed field names to be camel case. changed `expiresInMin` to two fields: `expiresAt` (u32 seconds since epoch in UTC) and `expired` (boolean) - expired is needed if an actor is...
for some background info, when a capability provider receives a put-link, it might do processing such as connect to a remote database, etc. Only after that operation complete successfully is...
One potential fix would be to have providers return a pass or fail success code response to the linkdef put message. A host should not send a message to a...
The suggested workaround .. > publish link definitions before you start capability providers in your scripts in order to always deliver link definitions on provider startup .. may not work...
Thanks for the clarification. I was referring to condition 2, not 1.
How do wasm runtimes support WASI api libraries without incurring the memory mangling overhead? Are pipes a standard supported by multiple wasm runtimes?