mirror of https://github.com/linkerd/linkerd2.git
Fix missing comma in gRPC status code labels (#670)
Fixes the issue caught by @olix0r in https://github.com/runconduit/conduit/pull/661#issuecomment-378431155
This commit is contained in:
parent
d1a39ea6bf
commit
01628bfa43
|
@ -605,7 +605,7 @@ impl fmt::Display for ResponseLabels {
|
|||
self.status_code
|
||||
)?;
|
||||
if let Some(ref status) = self.grpc_status_code {
|
||||
write!(f, "grpc_status_code=\"{}\"", status)?;
|
||||
write!(f, ",grpc_status_code=\"{}\"", status)?;
|
||||
}
|
||||
|
||||
Ok(())
|
||||
|
|
Loading…
Reference in New Issue