Ivan Mikushin
Ivan Mikushin
## Feature Request Make releasing a new version of Dispatch as easy as: 1. Submit a PR for the release (as usual). 2. Add `release` label to the PR (you...
## Bug Report When running the Dispatch CLI commands (like `dispatch create function` or `dispatch delete image`), the **name** of the object must be the first (positional) argument. Other arguments...
A function can be marked as idempotent which means it is safe to replay, e.g. in case of failure. - [ ] Bug - [x] Feature - [ ] Enhancement...
- [ ] Bug - [x] Feature - [x] Enhancement ## Detailed Description Use an event bus (AMQP or Kafka) to route function invocations. ## Context Currently, Dispatch implements function...
It'd be **very** nice to be able to run a function locally for development / debugging with a CLI command like this: ```bash dispatch run ./bingo.js ``` - [ ]...
Uses code from #124, only makes the API friendly to old clients, making the out stream optional.
Allow 0 length log tail. As per Docker documentation (https://docs.docker.com/reference/commandline/logs/).
Looking at all these conversions between `Type`, `SubType`, `StructuralType`, and each structural type variant, it seems like we could have some more `From` implementations to make this less noisy and...
Currently, for funcs the size is just a number of all of func's parameters and returned values + 1, and, for arrays it's just 2. This'll need to change because...
RefType is a a struct that plays a role of a "bit-packed enum". When a RefType value represents a reference to a top- or bottom-level heap type (introduced by the...