diff --git a/shotover-proxy/tests/runner/observability_int_tests.rs b/shotover-proxy/tests/runner/observability_int_tests.rs index dab8f7591..f510f1323 100644 --- a/shotover-proxy/tests/runner/observability_int_tests.rs +++ b/shotover-proxy/tests/runner/observability_int_tests.rs @@ -129,19 +129,19 @@ shotover_chain_latency_seconds{chain="redis",client_details="127.0.0.1",quantile shotover_chain_latency_seconds{chain="redis",client_details="127.0.0.1",quantile="0.99"} shotover_chain_latency_seconds{chain="redis",client_details="127.0.0.1",quantile="0.999"} shotover_chain_latency_seconds{chain="redis",client_details="127.0.0.1",quantile="1"} -shotover_query_count{name="redis-chain",query="CLIENT",type="redis"} -shotover_query_count{name="redis-chain",query="GET",type="redis"} -shotover_query_count{name="redis-chain",query="SET",type="redis"} +shotover_query_count{name="redis-chain",query="CLIENT",type="valkey"} +shotover_query_count{name="redis-chain",query="GET",type="valkey"} +shotover_query_count{name="redis-chain",query="SET",type="valkey"} "#; assert_metrics_has_keys(expected, expected_new).await; assert_metrics_key_value( - r#"shotover_query_count{name="redis-chain",query="GET",type="redis"}"#, + r#"shotover_query_count{name="redis-chain",query="GET",type="valkey"}"#, "1", ) .await; assert_metrics_key_value( - r#"shotover_query_count{name="redis-chain",query="SET",type="redis"}"#, + r#"shotover_query_count{name="redis-chain",query="SET",type="valkey"}"#, "2", ) .await; diff --git a/shotover-proxy/tests/runner/runner_int_tests.rs b/shotover-proxy/tests/runner/runner_int_tests.rs index 97a0b206a..5400c79ce 100644 --- a/shotover-proxy/tests/runner/runner_int_tests.rs +++ b/shotover-proxy/tests/runner/runner_int_tests.rs @@ -123,7 +123,7 @@ async fn test_shotover_shutdown_when_protocol_mismatch() { Caused by: Topology errors - Transform RedisSinkSingle requires upchain protocol to be one of [Redis] but was Cassandra + Transform RedisSinkSingle requires upchain protocol to be one of [Valkey] but was Cassandra "#, )]) .await; diff --git a/shotover-proxy/tests/test-configs/log-to-file/topology.yaml b/shotover-proxy/tests/test-configs/log-to-file/topology.yaml index 39ec9672e..06451cc70 100644 --- a/shotover-proxy/tests/test-configs/log-to-file/topology.yaml +++ b/shotover-proxy/tests/test-configs/log-to-file/topology.yaml @@ -1,6 +1,6 @@ --- sources: - - Redis: + - Valkey: name: "redis" listen_addr: "127.0.0.1:6379" chain: diff --git a/shotover-proxy/tests/test-configs/null-redis/topology.yaml b/shotover-proxy/tests/test-configs/null-redis/topology.yaml index 988519216..fb11e49ae 100644 --- a/shotover-proxy/tests/test-configs/null-redis/topology.yaml +++ b/shotover-proxy/tests/test-configs/null-redis/topology.yaml @@ -1,6 +1,6 @@ --- sources: - - Redis: + - Valkey: name: "redis" listen_addr: "127.0.0.1:6379" chain: diff --git a/shotover-proxy/tests/test-configs/query_type_filter/simple.yaml b/shotover-proxy/tests/test-configs/query_type_filter/simple.yaml index 39131b4bb..7ff4dc357 100644 --- a/shotover-proxy/tests/test-configs/query_type_filter/simple.yaml +++ b/shotover-proxy/tests/test-configs/query_type_filter/simple.yaml @@ -1,6 +1,6 @@ --- sources: - - Redis: + - Valkey: name: "redis1" listen_addr: "127.0.0.1:6379" connection_limit: 3000000 @@ -8,8 +8,8 @@ sources: - QueryTypeFilter: DenyList: [Write] - DebugReturner: - Redis: "42" - - Redis: + Valkey: "42" + - Valkey: name: "redis2" listen_addr: "127.0.0.1:6380" connection_limit: 3000000 @@ -17,4 +17,4 @@ sources: - QueryTypeFilter: AllowList: [Read] - DebugReturner: - Redis: "42" + Valkey: "42"