Julien Debache

Results 38 comments of Julien Debache

Agreeing with previous comments : this feature would be a great way of creating interactive demos for library code.

Maybe I can expand a bit on what I was expecting when using an `IEncodedConnection` with `Rx`: I would have expected to have a straight forward way of getting an...

@scottf Thanks for coming back to me on this. I don't think the test addresses my issue. I know I can receive the decoded messages, what I am missing is...

The `Rx` stuff is actually okay, the issue is this: https://github.com/nats-io/nats.net/blob/e51e0c940f785ac9105dcb15cf27196f73af3b9d/src/NATS.Client/AsyncSub.cs#L37 What is missing is a subscription with and `EncodedMessageEventArgs` instead of `MsgHandlerEventArgs`. Which part of the code are you...

I am noticing a further discrepancy between the functionality supported by `IConnection` and `IEncodedConnection`, in that `IEncodedConnection` doesn't support `CreateJetStreamContext`. I think I will have to somehow make due with...

Same issue here. Throws this even without specifying any arguments. Throws the same exception with arguments, even with a modest 12mb file.

I have a similar, maybe related issue. I have native dependencies such as MKL. I run the following: ``` dotnet restore dotnet build --configuration Release --no-restore dotnet publish MyProject.csproj --no-build...

Here is how I do it: you need to download a version of buildifier inside the WSL. You can do it in your home directory for example: ``` cd ~...

Old bug report, but in case someone ends up here googling this exception like I did, here is my experience. I had the same issue, and in my case, I...

Would it be an option for you to define your `query` command line arguments in your `.bazelrc` file like so: ``` query --package_path=... ``` What would be cool though, I...