Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
wilyle committed Feb 20, 2024
1 parent 69759c9 commit dca253c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cloud_connectors/azure/mqtt_connector/src/mqtt_connector.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ use freyja_common::retry_utils::execute_with_retry;

use crate::mqtt_connector_config::Config;

const MODEL_ID_METADATA_KEY: &'static str = "model_id";
const INSTANCE_ID_METADATA_KEY: &'static str = "instance_id";
const INSTANCE_PROPERTY_PATH_METADATA_KEY: &'static str = "instance_property_path";
const MODEL_ID_METADATA_KEY: &str = "model_id";
const INSTANCE_ID_METADATA_KEY: &str = "instance_id";
const INSTANCE_PROPERTY_PATH_METADATA_KEY: &str = "instance_property_path";

/// Implementation of the MQTTConnector gRPC trait
pub struct MQTTConnector {
Expand Down

0 comments on commit dca253c

Please sign in to comment.