无法使用NEST 1.2.0激活跟踪
本文关键字:激活 跟踪 NEST | 更新日期: 2023-09-27 18:27:28
今天我将我的nest包更新为1.2.0。现在,当我使用时
var connectionSettings = new ConnectionSettings(connectionPool);
connectionSettings.EnableTrace(true); //no problem when trace not enabled
var cli = new ElasticClient(connectionSettings);
cli.IndexExists(i => i.Index(indexName)).Exists; //throw when trace enabled
然后尝试检查是否存在索引,我得到
System.NullReferenceException: Object reference not set to an instance of an object at
Elasticsearch.Net.Connection.RequestState.TransportRequestState`1.Dispose()
in c:'Users'gmarz'code'elasticsearch-net'src'
Elasticsearch.Net'Connection'RequestState'TransportRequestState.cs: line 181
所以我有两个问题:
- 这个新版本有回归吗
- 你打算把nuget包的源代码发布到符号服务器上吗?这样我就可以避免下载所有的源代码了
查看代码后,transportRequestState的dispose方法抛出,因为秒表对象未初始化。(TransportRequestState.ce ln184)。如果我激活了度量,或者有人在登录之前测试了_stopwatch obvject,它就会起作用
这是1.2.0版本中的一个已知错误,最初在此处报告。我们今天早些时候发布的1.2.1中已经修复了它,现在可以通过nuget获得。