Skip to content

Commit

Permalink
Merge branch 'distinct-skill'
Browse files Browse the repository at this point in the history
# Conflicts:
#	Text/Distinct/Distinct.cs
  • Loading branch information
bleroy committed Sep 6, 2019
2 parents 1fb537c + c2dfbea commit 6b93e48
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Text/Distinct/Distinct.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,10 @@ public static async Task<IActionResult> RunDistinct(
return new BadRequestObjectResult($"{skillName} - Invalid request record array.");
}

Thesaurus thesaurus = null;
try
{
Thesaurus thesaurus = new Thesaurus(executionContext.FunctionAppDirectory);
thesaurus = new Thesaurus(executionContext.FunctionAppDirectory);
}
catch(Exception e)
{
Expand Down

0 comments on commit 6b93e48

Please sign in to comment.