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:
Eliza Weisman 2018-04-04 10:41:21 -07:00 committed by GitHub
parent d1a39ea6bf
commit 01628bfa43
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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(())