Skip to content

Commit

Permalink
Replace to_string() with to_owned() for empty string default in Catal…
Browse files Browse the repository at this point in the history
…ogController

Signed-off-by: Shanicky Chen <[email protected]>
  • Loading branch information
shanicky committed Dec 16, 2024
1 parent 8587d96 commit 8a1b0d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/meta/src/controller/scale.rs
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ impl CatalogController {
related_job_definitions
.get(&job_id)
.cloned()
.unwrap_or("".to_string()),
.unwrap_or("".to_owned()),
),
)
})
Expand Down

0 comments on commit 8a1b0d5

Please sign in to comment.