Beispiel #1
0
        public async Task <string> EsHealthV2()
        {
            try
            {
                var res = await _indexingService.Health();

                return(await Task.Run(() => res));
            }
            catch (Exception ex)
            {
                return($"{ex.Message}, inner:{ex.InnerException} stk:{ex.StackTrace}");
            }
        }