public async Task Run([ServiceBusTrigger("pendingqueue", Connection = "ServiceBusConnection")] string myQueueItem, ILogger log)
        {
            log.LogDebug($"Processing item for ID - {myQueueItem}");
            var message = await _commentDataStoreService.GetMessage(Guid.Parse(myQueueItem), true);

            if (message == null)
            {
                throw new Exception($"Item not found in store {myQueueItem}");
            }

            var watsonResponse = await _watsonClient.GetResponse(message.Message);

            await _commentDataStoreService.UpdateWithResults(message, watsonResponse);
        }