Fixup create_volume_service action tag (#398)

This commit is contained in:
Ana Hobden 2023-04-03 09:19:28 -07:00 committed by GitHub
parent a10261e882
commit 5ec1d0e9b9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -78,7 +78,7 @@ impl CreateVolumeService {
#[typetag::serde(name = "create_volume_service")] #[typetag::serde(name = "create_volume_service")]
impl Action for CreateVolumeService { impl Action for CreateVolumeService {
fn action_tag() -> ActionTag { fn action_tag() -> ActionTag {
ActionTag("setup_volume_daemon") ActionTag("create_volume_service")
} }
fn tracing_synopsis(&self) -> String { fn tracing_synopsis(&self) -> String {
format!( format!(
@ -90,7 +90,7 @@ impl Action for CreateVolumeService {
fn tracing_span(&self) -> Span { fn tracing_span(&self) -> Span {
let span = span!( let span = span!(
tracing::Level::DEBUG, tracing::Level::DEBUG,
"setup_volume_daemon", "create_volume_service",
path = tracing::field::display(self.path.display()), path = tracing::field::display(self.path.display()),
buf = tracing::field::Empty, buf = tracing::field::Empty,
); );