Kyle J Strand

Results 209 comments of Kyle J Strand

I haven't. I don't see anything in the 6.5 release notes indicating any changes that might affect this, but I'll see if I can upgrade anyway.

It doesn't look like I'll be able to upgrade any time soon.

I think this is correct, too, though I believe you don't even need DE. Just create a line perpendicular to AB going through its center; this line is HI.

I'm not sure why I'm not covered under the CLA. When I click the "not covered" button and go through the process, it says I'm ready to go (as a...

I haven't confirmed whether or not this is resolved, but this PR isn't mergeable anyway.

My suggested workaround is to change this function: https://github.com/open-telemetry/opentelemetry-python-contrib/blob/main/instrumentation/opentelemetry-instrumentation-grpc/src/opentelemetry/instrumentation/grpc/_aio_client.py#L58 I believe it should construct `mutable_metadata` this way: ```python mutable_metadata = OrderedDict() if metadata: # Constructing `OrderedDict` directly from `Metadata` fails...

...actually, `aio.Metadata` is *already* mutable. So this should probably just be: ```python if not metadata: mutable_metadata = OrderedDict() elif isinstance(metadata, tuple): mutable_metadata = OrderedDict(metadata) else: mutable_metadata = metadata ``` ...and...

I've written a proposed implementation of `delete_collection` here: #191

+1. I've asked about this before (http://vi.stackexchange.com/q/2220/1060 has links to both a SuperUser.com question and a Gundo feature request). I may switch to undotree from Gundo anyway, but if this...

Where is the wrapper? It doesn't look like it's part of this project.