Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -1168,7 +1168,7 @@ fi
private = true
category = "RiseDev - Check"
description = "Run cargo typos-cli check"
install_crate = { min_version = "1.30.2", crate_name = "typos-cli", binary = "typos", test_arg = [
install_crate = { min_version = "1.39.0", crate_name = "typos-cli", binary = "typos", test_arg = [
"--help",
], install_command = "binstall" }
script = """
Expand Down
4 changes: 2 additions & 2 deletions src/connector/src/sink/encoder/template.rs
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ impl TemplateEncoderOutput {
"RedisGeoKey can't convert to string".to_owned(),
)),
TemplateEncoderOutput::RedisGeoValue(_) => Err(SinkError::Encode(
"RedisGeoVelue can't convert to string".to_owned(),
"RedisGeoValue can't convert to string".to_owned(),
)),
TemplateEncoderOutput::RedisPubSubStreamKey(s) => Ok(s),
TemplateEncoderOutput::RedisStreamValue((_, _)) => Err(SinkError::Encode(
Expand All @@ -451,7 +451,7 @@ impl SerTo<String> for TemplateEncoderOutput {
"RedisGeoKey can't convert to string".to_owned(),
)),
TemplateEncoderOutput::RedisGeoValue(_) => Err(SinkError::Encode(
"RedisGeoVelue can't convert to string".to_owned(),
"RedisGeoValue can't convert to string".to_owned(),
)),
TemplateEncoderOutput::RedisPubSubStreamKey(s) => Ok(s),
TemplateEncoderOutput::RedisStreamValue((_, _)) => Err(SinkError::Encode(
Expand Down
Loading