Skip to content

Commit

Permalink
small stuttering name fix
Browse files Browse the repository at this point in the history
  • Loading branch information
conorbros committed Mar 7, 2023
1 parent c83fe0d commit 6f59ec8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion shotover-proxy/src/config/topology.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ mod topology_tests {
use crate::config::topology::{Topology, TopologyConfig};
use crate::transforms::coalesce::CoalesceConfig;
use crate::{
sources::{redis_source::RedisConfig, Sources, SourcesConfig},
sources::{redis::RedisConfig, Sources, SourcesConfig},
transforms::{
distributed::consistent_scatter::ConsistentScatterConfig,
parallel_map::ParallelMapConfig, redis::cache::RedisConfig as RedisCacheConfig,
Expand Down
File renamed without changes.
8 changes: 4 additions & 4 deletions shotover-proxy/src/sources/mod.rs
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
use crate::sources::cassandra_source::{CassandraConfig, CassandraSource};
use crate::sources::cassandra::{CassandraConfig, CassandraSource};
use crate::sources::kafka::{KafkaConfig, KafkaSource};
use crate::sources::redis_source::{RedisConfig, RedisSource};
use crate::sources::redis::{RedisConfig, RedisSource};
use crate::transforms::chain::TransformChainBuilder;
use anyhow::Result;
use serde::Deserialize;
use tokio::sync::watch;
use tokio::task::JoinHandle;

pub mod cassandra_source;
pub mod cassandra;
pub mod kafka;
pub mod redis_source;
pub mod redis;

#[derive(Debug)]
pub enum Sources {
Expand Down
File renamed without changes.

0 comments on commit 6f59ec8

Please sign in to comment.