Emmanuel T Odeke
Emmanuel T Odeke
If we examine in this section https://github.com/lu4p/ToRat/blob/5f90a79d273f24dfaab267612603880372c16bb8/torat_server/crypto/crypto.go#L25-L28 we can see this  But that's because that code incorrectly assumed that err would be returned after pem.Decode.
fmt.*printf's "%s" verb converts values to strings in a performant way so no need to cast and unnecessarily allocate byteslice->string conversions. Noticed from our benchmarking per https://dashboard.github.orijtech.com/benchmark/3245b8e4bbbd44a597480319aaa4b9fe that avoiding this...
Noticed from Orijtech's continuous benchmarking product "Bencher" per https://dashboard.github.orijtech.com/benchmark/3245b8e4bbbd44a597480319aaa4b9fe that there is a bunch of code in the wild that invokes: fmt.Sprintf("%s", string([]byte(...))) yet the "%s" format specifier in fmt...
Please provide the following information along with a description of the issue that you're experiencing: 1. What service is experiencing the issue? (M3Coordinator, M3DB, M3Aggregator, etc) m3DB 2. What is...
We need the ability to translate a span's LinkType to a jaeger RefType. It currently is https://github.com/census-instrumentation/opencensus-go/blob/94fd1d08391b28f9c9f721b2a67fcf57bfd0a70e/exporter/jaeger/jaeger.go#L214-L220 But needs to translate *SpanData.Links[].Type i.e. ```go for _, link := range data.Links...
Please answer these questions before submitting a bug report. ### What version of OpenCensus are you using? Irrelevant ### What version of Go are you using? Irrelevant ### What did...
Issue to implement HTTP tag propagation as its lack of came up in the interop testing.
Currently the Java implementation sets a trace's status code as 0 for success unconditionally if there is a message or not. However, the Go implementation doesn't set it and has...
Just seen on https://travis-ci.org/census-instrumentation/opencensus-go/builds/416994981?utm_source=github_status&utm_medium=notification ```shell --- FAIL: TestEndToEnd_Single (0.02s) end_to_end_test.go:202: Failed to find row with keys [{{grpc_server_method} testpb.Foo/Single} {{grpc_server_status} UNKNOWN}] among: [[{{grpc_server_method} testpb.Foo/Single} {{grpc_server_status} OK}]] --- PASS: TestEndToEnd_Single/view=grpc.io/client/sent_messages_per_rpc (0.00s) ---...
Please answer these questions before submitting a bug report. ### What version of OpenCensus are you using? 0.15.0 The old style APM agnosticity for many drivers is to provide an...