Mayuki Sawatari

Results 88 comments of Mayuki Sawatari

This is not because of the numbers. The error is due to the option name is case-sensitive.

At present there is no such extension point, so you can only trust your own CA. However, we understand that there is a need for certificate pinning in the game...

6000.0.23f1 で確認してみましたが単純なプロジェクトですとコンパイルエラーになることはありませんでした。 ただし、 Asssembly Definitinon (.asmdef) で切っている場合には、その Assembly Definition の Assembly Definition Reference に MagicOnion.Client がない場合に同様のエラーが発生したのでそれが原因でしょうか?

追加情報ありがとうございます。ちなみに Test.Shared ではなく `MagicOnionGeneratedClientInitializer` クラスの場所が .asmdef 配下になってませんでしょうか? その場合ですと MagicOnionGeneratedClientInitializer が含まれる .asmdef に MagicOnion.Client への参照を追加する必要があります。

手元では再現できていないのですが - サーバーを起動していない状態で接続しようとしたらどうなるか - ”Project Settings/Player" の "Scripting Define Symbols" で `YAHA_ENABLE_DEBUG_TRACING` シンボルを設定したらログが出るかどうか をご確認いただけますでしょうか。

GrpcChannelx の代わりに GrpcChannel を呼び出して使用した場合はどうなるでしょうか? ```csharp var channel = GrpcChannel.ForAddress("http://localhost:8080", new GrpcChannelOptions() { HttpHandler = new YetAnotherHttpHandler() { Http2Only = true, }, DisposeHttpClient = true, }); ```

What source code does the error occur in? In the code you wrote or in the code generated by the Source Generator?

The source generator is intended to be used in combination with MessagePack's `mpc` (code generator). Are you using `mpc` in your project?

We set up the environment and were able to reproduce the issue. It appears that the server processing is taking a long time, but actually, the time is being consumed...

gRPC message deserialization is processed within the ASP.NET Core middleware pipeline, so it appears to be taking time when reading occurs there. For example, you should be able to get...