public StatusRequestTests()
		{
			var request = new IndicesStatusRequest()
			{
				Recovery = true,
				Human = true
			};
			var response = this._client.Status(request);
			this._status = response.ConnectionStatus;
		}
示例#2
0
        public StatusRequestTests()
        {
            var request = new IndicesStatusRequest()
            {
                Recovery = true,
                Human    = true
            };
            var response = this._client.Status(request);

            this._status = response.ConnectionStatus;
        }