Skip to content

Commit

Permalink
Fix Lint.
Browse files Browse the repository at this point in the history
  • Loading branch information
turulix committed Oct 10, 2023
1 parent 412378f commit f89f07a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion memphis/src/memphis_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use async_nats::connection::State;
use async_nats::jetstream::Context;
use async_nats::{jetstream, Client, ConnectError, ConnectOptions, Event, Message};
use bytes::Bytes;
use log::{error, info};
use log::info;
use serde::Serialize;
use uuid::Uuid;

Expand Down
7 changes: 2 additions & 5 deletions memphis/src/station/memphis_station.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
use std::io::Cursor;
use std::sync::Arc;

use log::{error, info};
use murmur3::murmur3_32;

use crate::constants::memphis_constants::MemphisSpecialStation;
use crate::helper::memphis_util::get_internal_name;
use crate::memphis_client::MemphisClient;
Expand All @@ -12,8 +8,9 @@ use crate::models::request::{CreateStationRequest, DestroyStationRequest, DlsCon
use crate::schemaverse::schema::SchemaValidator;
use crate::station::memphis_station_options::MemphisStationsOptions;
use crate::RequestError;
use log::{error, info};

static SEED: u32 = 31;
//static SEED: u32 = 31;

#[derive(Clone)]
pub struct MemphisStation {
Expand Down

0 comments on commit f89f07a

Please sign in to comment.