We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aae7679 commit 3b4ab44Copy full SHA for 3b4ab44
momento/src/commands/functions/function_cli.rs
@@ -50,7 +50,7 @@ pub async fn invoke_function(
50
data: Option<String>,
51
) -> Result<(), CliError> {
52
let data = data.unwrap_or_default();
53
- let function_info = "Name: {name}, Cache Namespace: {cache_name}";
+ let function_info = format!("Name: {name}, Cache Namespace: {cache_name}");
54
if data.is_empty() {
55
console_data!("Invoking function. {function_info}");
56
} else {
0 commit comments