Skip to content

Commit 041a664

Browse files
committed
Smaller fixes.
1 parent 3a759e7 commit 041a664

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

pages/docs/command_queue.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,9 @@ When reporting an error, the error data is represented as JSON:
7979
```json
8080
{
8181
"containerId": "container reporting the error",
82-
"errorType": "IRI of the error type (optional)",
83-
"label": "A string that can be used as short label of an error (optional, the error type label will be used as default)"
84-
"description": "A string that can be used as a short description of an error (optional, the error type description will be used as default)"
82+
"errorType": "IRI of the error type",
83+
"label": "A string that can be used as short label of an error"
84+
"description": "A string that can be used as a short description of an error"
8585
}
8686
```
8787
The [org.hobbit.core.data.ErrorData](https://github.com/hobbit-project/core/blob/master/src/main/java/org/hobbit/core/data/ErrorData.java) class can be used to represent this data as Java object.

pages/docs/system_integration_api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ There is one main container that will represent the complete system (from the pl
2222

2323
A benchmarked system might comprise more than one container. However, it needs to have exactly __one main container__. This container will be created by the platform controller including the following environmental variables:
2424

25-
|- Variable name -|- Meaning -|
25+
| Variable name | Meaning |
2626
|---|---|
2727
| `HOBBIT_RABBIT_HOST` | The DNS name of the RabbitMQ instance which is used for communicating to the platform controller, e.g, via the [command queue](command_queue). |
2828
| `HOBBIT_SESSION_ID` | The ID of the current experiment. It is necessary for the usage of the [command queue](command_queue). |
29-
| `SYSTEM_PARAMETERS_MODEL_KEY` | The system instance model from the meta data file serialized as `JSON-LD` string. |
29+
| `SYSTEM_PARAMETERS_MODEL` | The system instance model from the meta data file serialized as `JSON-LD` string. |
3030

3131
After the container started, the platform assumes that it will connect itself to the command queue.
3232

0 commit comments

Comments
 (0)