Seungchan Yuk

Results 9 comments of Seungchan Yuk

@1amageek I just said property name.

@1amageek I think it's better to add a feature and I will send PR when I have it done. How is it sound?

simply implement it like this ```python class DynamicMapAttribute(MapAttribute): element_type = None def __init__(self, *args, of=None, **kwargs): if of: if not issubclass(of, MapAttribute): raise ValueError("'of' must be subclass of MapAttribute") self.element_type...

Temporarily ``` from ddtrace import tracer from ddtrace.pin import Pin from ddtrace.vendor.wrapt import wrap_function_wrapper as _w def patch_es8(): def _es_modules(): module_names = ( "elasticsearch", ) for module_name in module_names: try:...

Thanks for the answer. I can't use node-fetch. How can I encode the [ArrayBuffer](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer) of Web API to base64 in the browser? The code I wrote above doesn't work.

In `route_sqs_task` function’s code, it handles only the first message but when Lambda is triggered from SQS, wouldn’t there be multiple messages in Records?