Skip to content

Commit

Permalink
fix build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
wilyle committed Sep 29, 2023
1 parent fef3535 commit 10cb2ab
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ This adapter supports the following configuration settings:
- `max_retries`: The maximum number of times to retry failed attempts to send data to the cloud connector.
- `retry_interval_ms`: The duration between retries in milliseconds.

This adapter supports the same [config override method](../../docs/config-overrides.md) as the Freyja mocks. The override filename is `azure_cloud_connector_adapter_config.json`, and the default config is located at `res/azure_cloud_connector_adapter_config.default.json`.
This adapter supports the same [config override method](https://github.com/eclipse-ibeji/freyja/blob/main/docs/config-overrides.md) as the Freyja mocks. The override filename is `azure_cloud_connector_adapter_config.json`, and the default config is located at `res/azure_cloud_connector_adapter_config.default.json`.
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ fn main() {
.join(DEFAULT_CONFIG_FILE);

copy_to_build_out_dir(config_path, DEFAULT_CONFIG_FILE);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use log::debug;
use serde::{Deserialize, Serialize};
use tonic::transport::Channel;

use freyja_common::{retry_utils::execute_with_retry, config_utils, out_dir};
use freyja_common::{config_utils, out_dir, retry_utils::execute_with_retry};
use freyja_contracts::cloud_adapter::{
CloudAdapter, CloudAdapterError, CloudMessageRequest, CloudMessageResponse,
};
Expand Down
2 changes: 1 addition & 1 deletion freyja_adapters/digital_twin/ibeji_adapter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ An example of a configuration file that uses Chariott can be found at `res/ibeji

### Configuration Overrides

This adapter supports the same [config override method](../../docs/config-overrides.md) as the Freyja mocks. The override filename is `ibeji_adapter_config.json`, and the default config is located at `res/ibeji_adapter_config.default.json`.
This adapter supports the same [config override method](https://github.com/eclipse-ibeji/freyja/blob/main/docs/config-overrides.md) as the Freyja mocks. The override filename is `ibeji_adapter_config.json`, and the default config is located at `res/ibeji_adapter_config.default.json`.
2 changes: 1 addition & 1 deletion freyja_adapters/digital_twin/ibeji_adapter/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ fn main() {
.join(DEFAULT_CONFIG_FILE);

copy_to_build_out_dir(config_path, DEFAULT_CONFIG_FILE);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use service_discovery_proto::service_registry::v1::service_registry_client::Serv
use service_discovery_proto::service_registry::v1::DiscoverRequest;
use tonic::{transport::Channel, Request};

use freyja_common::{retry_utils::execute_with_retry, config_utils, out_dir};
use freyja_common::{config_utils, out_dir, retry_utils::execute_with_retry};
use freyja_contracts::{
digital_twin_adapter::{
DigitalTwinAdapter, DigitalTwinAdapterError, GetDigitalTwinProviderRequest,
Expand Down

0 comments on commit 10cb2ab

Please sign in to comment.