Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/feature/invoke-lambda-instrument…
Browse files Browse the repository at this point in the history
…ation' into feature/aws-account-id-parsing
  • Loading branch information
tippmar-nr committed Dec 5, 2024
2 parents 7b1b5a3 + d107619 commit c356b29
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public void InvokeLambdaSync(string function, string payload)
{
var response = client.Invoke(request);
}
catch (ResourceNotFoundException)
catch
{
}
#else
Expand Down Expand Up @@ -61,7 +61,7 @@ public async Task<string> InvokeLambdaAsync(string function, string payload)
string returnValue = System.Text.Encoding.UTF8.GetString(stream.ToArray());
return returnValue;
}
catch (ResourceNotFoundException)
catch
{
}
return null;
Expand All @@ -88,7 +88,7 @@ public async Task<string> InvokeLambdaAsyncWithQualifier(string function, string
string returnValue = System.Text.Encoding.UTF8.GetString(stream.ToArray());
return returnValue;
}
catch (ResourceNotFoundException)
catch
{
}
return null;
Expand Down

0 comments on commit c356b29

Please sign in to comment.