fix(interop) fix failing interop test with go client (#442)

* fix failing interop test

* do not run go client when --use_tls is set
This commit is contained in:
Juan Alvarez
2020-08-31 10:23:12 -05:00
committed by GitHub
parent 26ce9d12bf
commit ca8e597e95
2 changed files with 14 additions and 4 deletions
+5 -4
View File
@@ -215,11 +215,12 @@ where
if let Some(echo_header) = echo_header {
res.headers_mut()
.insert("x-grpc-test-echo-initial", echo_header);
Ok(res
.map(|b| MergeTrailers::new(b, echo_trailer))
.map(BoxBody::new))
} else {
Ok(res)
}
Ok(res
.map(|b| MergeTrailers::new(b, echo_trailer))
.map(BoxBody::new))
})
}
}