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'm sharing some code between several lambda functions. Instead of creating a module and installing it in each _src directory I am finding it easier to symlink to the common code like so:
I'm sharing some code between several lambda functions. Instead of creating a module and installing it in each
_src
directory I am finding it easier to symlink to the common code like so:In order to make this work for the zipfile creation I need to change
os.walk(lambda_dir)
toos.walk(lambda_dir, followlinks=True)
infunction.py
.Would you be open to a PR to make this configurable or is there a better way to share code between lambda functions?
The text was updated successfully, but these errors were encountered: