Skip to content

Commit

Permalink
Fix broken doc links
Browse files Browse the repository at this point in the history
  • Loading branch information
dejanb committed Jun 25, 2020
1 parent 5c455da commit 466a5e7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion site/documentation/content/api/tenant/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ determine if devices belonging to the tenant are allowed to connect to a certain
<!--more-->

This document *describes* the Tenant API's operations and the payload data format used by them.
Please refer to [Multi Tenancy]({{< relref "/concepts/tenancy.md" >}}) for details regarding the way Hono supports multiple tenants.
Please refer to [Multi Tenancy]({{< relref "/concepts/tenancy/index.md" >}}) for details regarding the way Hono supports multiple tenants.

The Tenant API is defined by means of AMQP 1.0 message exchanges, i.e. a client needs to connect to Hono using an AMQP 1.0 client in order to invoke operations of the API as described in the following sections.

Expand Down
4 changes: 2 additions & 2 deletions site/documentation/content/dev-guide/java_client_consumer.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ for devices belonging to the default tenant.

It also includes support for Command and Control:

if indicated by a received downstream message that contains a `ttd` value (refer to [Device notifications]({{< relref "concepts/device-notifications.md" >}}) for details) it tries to send a command to the device.
if indicated by a received downstream message that contains a `ttd` value (refer to [Device notifications]({{< relref "concepts/device-notifications/index.md" >}}) for details) it tries to send a command to the device.
If the value of `ttd` indicates that the device stays connected for an unlimited time (`ttd == -1`), the application will periodically repeat to send a command until
notified the device is disconnected again (`ttd == 0`).

Expand Down Expand Up @@ -67,7 +67,7 @@ Please note that consumers do not connect with Hono directly, but rather with an
### Command and Control

By using a helper class provided by Hono, a callback in the application code is invoked when a downstream message was received
that signals the device will stay connected to the protocol adapter for some time (see [Device notifications]({{< relref "concepts/device-notifications.md" >}}) for details).
that signals the device will stay connected to the protocol adapter for some time (see [Device notifications]({{< relref "concepts/device-notifications/index.md" >}}) for details).

Inside this callback an arbitrary simple command is sent down to the device (once or periodically) and the response is logged to the console.

Expand Down
2 changes: 1 addition & 1 deletion site/documentation/content/user-guide/coap-adapter.md
Original file line number Diff line number Diff line change
Expand Up @@ -700,4 +700,4 @@ The following properties are (currently) supported:
| Name | Type | Default Value | Description |
| :----------------- | :--------- | :------------ | :-------------------------------------------------------------- |
| *enabled* | *boolean* | `true` | If set to `false` the adapter will reject all data from devices belonging to the tenant. |
| *max-ttd* | *integer* | `60` | Defines a tenant specific upper limit for the *time until disconnect* property that devices may include in requests for uploading telemetry data or events. Please refer to the [Command & Control concept page]({{< relref "/concepts/command-and-control.md" >}}) for a discussion of this parameter's purpose and usage.<br>This property can be set for the `hono-coap` adapter type as an *extension* property in the adapter section of the tenant configuration.<br>If it is not set, then the default value of `60` seconds is used.|
| *max-ttd* | *integer* | `60` | Defines a tenant specific upper limit for the *time until disconnect* property that devices may include in requests for uploading telemetry data or events. Please refer to the [Command & Control concept page]({{< relref "/concepts/command-and-control/index.md" >}}) for a discussion of this parameter's purpose and usage.<br>This property can be set for the `hono-coap` adapter type as an *extension* property in the adapter section of the tenant configuration.<br>If it is not set, then the default value of `60` seconds is used.|
2 changes: 1 addition & 1 deletion site/documentation/content/user-guide/http-adapter.md
Original file line number Diff line number Diff line change
Expand Up @@ -619,4 +619,4 @@ The following properties are (currently) supported:
| Name | Type | Default Value | Description |
| :----------------- | :--------- | :------------ | :-------------------------------------------------------------- |
| *enabled* | *boolean* | `true` | If set to `false` the adapter will reject all data from devices belonging to the tenant. |
| *max-ttd* | *integer* | `60` | Defines a tenant specific upper limit for the *time until disconnect* property that devices may include in requests for uploading telemetry data or events. Please refer to the [Command & Control concept page]({{< relref "/concepts/command-and-control.md" >}}) for a discussion of this parameter's purpose and usage.<br>This property can be set for the `hono-http` adapter type as an *extension* property in the adapter section of the tenant configuration.<br>If it is not set, then the default value of `60` seconds is used.|
| *max-ttd* | *integer* | `60` | Defines a tenant specific upper limit for the *time until disconnect* property that devices may include in requests for uploading telemetry data or events. Please refer to the [Command & Control concept page]({{< relref "/concepts/command-and-control/index.md" >}}) for a discussion of this parameter's purpose and usage.<br>This property can be set for the `hono-http` adapter type as an *extension* property in the adapter section of the tenant configuration.<br>If it is not set, then the default value of `60` seconds is used.|

0 comments on commit 466a5e7

Please sign in to comment.