Hey, I’m using the `callbackFactory` in order to ...
# aws
e
Hey, I’m using the
callbackFactory
in order to define global scope and invocation scope for my Lambda. However, the end code inside the lambda is
exports.handler = __f0();
, which means that I can’t have async code inside my global lambda scope. Is there any way to make Pulumi change the aforementioned statement to:
Copy code
exports.handler = await __f0();