We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I get this 'str expected, not int' error that gets traced back to :
'str expected, not int'
File "...\aws_lambda\aws_lambda.py", line 217, in invoke os.environ[key] = get_environment_variable_value(value)
This is because i have configured an int variable in my config.yaml, i.e.: repeat: 100
repeat: 100
Would it be good to wrap get_environment_variable_value in str() ?
get_environment_variable_value
str()
The text was updated successfully, but these errors were encountered:
I think It would be good to wrap it in a str() like its done at this point
python-lambda/aws_lambda/aws_lambda.py
Line 662 in aad2dad
Sorry, something went wrong.
cast get_environment_variable_value output to str
11db872
this addresses this issue nficano#168
Here is the PR #270
No branches or pull requests
Hi,
I get this
'str expected, not int'
error that gets traced back to :This is because i have configured an int variable in my config.yaml, i.e.:
repeat: 100
Would it be good to wrap
get_environment_variable_value
instr()
?The text was updated successfully, but these errors were encountered: