Jun Zhu

Results 11 comments of Jun Zhu

Thanks, have tied it locally. It seems [`AsyncLocalRpcOperation.InnerInvokeAsync`](https://github.com/Code-Sharp/WampSharp/blob/master/src/netstandard/WampSharp/WAMP2/V2/Rpc/Callee/AsyncLocalRpcOperation.cs#L61) is awaiting the task to finish internally and doing the cleanup when `CallResult` is called. However at that stage, in the outer...

After some try, I have got something like this on [my fork branch](https://github.com/ZapTechnology/WampSharp/tree/jun/WampCalleeCancellationLeak). You can try run the `LeakTestOnCancellableCalls` and use dotMemory to see the leak is stopped now. Please...

Thanks @darkl and sorry for not replying for quite some time. I have checked the change, it seems it would harder to leak now with the `IsInvocationCompleted` check. However, because...

You mean swallow it like in MethodInfoSubscriber.InnerEvent? > On 2 Mar 2017, at 5:28 pm, Elad Zelingher wrote: > > Actually all connections need to terminate upon a serialization error...

I can confirm we have already hit issues with those step templates because cinst has been removed from the new major release. Hope this can be fixed soon.

Thanks @pauby. I found that why our deployments failed was due to using older version of the step templates. I updated the templates to latest version and 2.0.0 Chocolatey is...

Seems that the w3wp process is still having EtwClrProfiler.dll loaded after HeapDump quits.

It is not attached at process startup. It is attached when HeapDump runs and detached after it finishes. It succeeds for a few times, and then start to fail to...

looked into the log of the EtwClrProfiler.dll. Seems it is getting error when trying to detach the profiler: ``` Creating new CorProfilerInstance ClrProfiler Initializing Registering the ETW provider Initialize() returns...

From my understanding, Typescript doesn't generic React component markup very well https://github.com/Microsoft/TypeScript/issues/3960. I use it this way: ``` class TextFieldContainer extends Field { }; export class MyForm extends Component {...