Skip to content
New issue

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

Error in Python get_remaining_time_in_millis #63

Open
subssn21 opened this issue Mar 25, 2025 · 0 comments
Open

Error in Python get_remaining_time_in_millis #63

subssn21 opened this issue Mar 25, 2025 · 0 comments

Comments

@subssn21
Copy link

When you make a call to context.get_remaining_time_in_millis

In the local dev you get the following traceback:
Error: unsupported operand type(s) for -: 'str' and 'int'
File "/Users/dramus/chartflow/node_modules/sst/support/python-runtime/runtime.py", line 101, in
result = handler(event, context)

 File "/Users/dramus/.virtualenvs/chartflow/lib/python3.13/site-packages/datadog_lambda/wrapper.py", line 239, in __call__
"""Executes when the wrapped function gets called"""

 File "/Users/dramus/.virtualenvs/chartflow/lib/python3.13/site-packages/ddtrace/contrib/internal/aws_lambda/patch.py", line 117, in __call__
self._before(args, kwargs)
~~~~~~~~~~~~^^^^^^^^^^^^^^

 File "/Users/dramus/.virtualenvs/chartflow/lib/python3.13/site-packages/ddtrace/contrib/internal/aws_lambda/patch.py", line 145, in _before
self.timeoutChannel._start()
~~~~~~~~~~~~~~~~~~~~~~~~~~^^

 File "/Users/dramus/.virtualenvs/chartflow/lib/python3.13/site-packages/ddtrace/contrib/internal/aws_lambda/patch.py", line 74, in _start
remaining_time_in_millis = self.context.get_remaining_time_in_millis()

 File "/Users/dramus/chartflow/node_modules/sst/support/python-runtime/runtime.py", line 38, in get_remaining_time_in_millis
return int(max(self.deadline_ms - int(round(time() * 1000)), 0))
               ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~

The reason is that the header returns a string and is assigned to self.deadline_ms without being coerced back into an int.

Pull Request #62 fixes this by coercing the header value back into an int that is should already be in

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant