Skip to content

Commit

Permalink
Trigger readthedocs preview
Browse files Browse the repository at this point in the history
  • Loading branch information
unkcpz committed Nov 13, 2024
1 parent bccf165 commit 2a91bc6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
8 changes: 5 additions & 3 deletions 010_replace_rabbitmq/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -254,9 +254,11 @@ pub enum XMessage {
// dummy type for fallback general unknown type messages
BulkMessage(String),

// The Uuid is the task uuid
// coordinator -> worker
TaskLaunch(Uuid),
// The Uuid is the task uuid, record_id is for task pool
TaskLaunch {
task_id: Uuid,
record_id: String,
},

// hand shake message when the msg content is a string
// <-> between server and clients
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Accepted AEPs can be easily browsed and read on the [online documentation](https
| 007 | implemented | [Abstract and improve the file repository](007_improved_file_repository/readme.md) |
| 008 | implemented | [Allow `CalcJob`s to be actively monitored and interrupted](008_calcjob_monitors/readme.md) |
| 009 | implemented | [Improved Docker images](009_improved_docker_images/readme.md) |
| 010 | draft | [Replace RabbitMQ](010_replace_rabbitmq/readme.md) |

## Submitting an AEP

Expand Down
1 change: 1 addition & 0 deletions _toc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ subtrees:
- file: 007_improved_file_repository/readme.md
- file: 008_calcjob_monitors/readme.md
- file: 009_improved_docker_images/readme.md
- file: 010_replace_rabbitmq/readme.md

0 comments on commit 2a91bc6

Please sign in to comment.