You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I recently tried upgrading the client.extensions package from 1.2.0 -> 1.2.1 and suddenly started getting argument null exceptions during dependency injection of the aws service when UseLocalStack is false. It looks like this exception was added in the latest release, but I cannot tell what the reasoning for this breaking change was.
Our code does not make use of the AWS config section in our code and instead relies on the credential chain to either load local profiles or iam roles when deployed. As such we do not pass in AWSOptions with calls to AddAWSServiceLocalStack
I recently tried upgrading the client.extensions package from 1.2.0 -> 1.2.1 and suddenly started getting argument null exceptions during dependency injection of the aws service when UseLocalStack is false. It looks like this exception was added in the latest release, but I cannot tell what the reasoning for this breaking change was.
Our code does not make use of the
AWS
config section in our code and instead relies on the credential chain to either load local profiles or iam roles when deployed. As such we do not pass inAWSOptions
with calls toAddAWSServiceLocalStack
diff link
Expected Behavior
The requested aws service should be returned if the aws options object is null.
Actual Behavior
ArgumentNullException is thrown.
Steps to Reproduce the Problem
AddServiceLocalStack<T>
without explicitly passing in AWSOptionsSpecifications
The text was updated successfully, but these errors were encountered: