refactor: switch from base64-encoding to base36-encoding of cron task IDs

This allows the IDs to be used as DNS labels, meaning they can be used as is for external scheduler task names.

Closes #4903
This commit is contained in:
Jose Diaz-Gonzalez
2022-11-09 22:22:37 -05:00
parent 14ba1a214f
commit ddae4f71da
4 changed files with 10 additions and 4 deletions

View File

@@ -2,4 +2,5 @@
## Changes
The output of `run:detached` now uses the container name - eg. `node-js-app.run.1` - vs the container id.
- The output of `run:detached` now uses the container name - eg. `node-js-app.run.1` - vs the container id.
- The ID of `cron` tasks is now base36-encoded instead of base64-encoded.