-
Notifications
You must be signed in to change notification settings - Fork 36
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
Beta 0.5 Progress #19
Conversation
slvnperron
commented
Jan 5, 2015
- Using the builtin Lambda RequestID instead of generating our own
- Renamed sqsHelper to SQSHelper for consistency
- Implemented uploading modules with dependencies
var configsAsStr = JSON.stringify(configs), | ||
identifier = [MODULE_HASH_PREFIX, modulePath, handlerName, deps, configsAsStr].join('_'); | ||
|
||
return md5(identifier); // TODO : add config in hash? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it seems like the todo is done
Great job man ! |
exports.create = function (func, config) { | ||
return _lambdaHelper.getCloudedFunction(func, config); | ||
exports.create = function () { | ||
if(typeof(arguments[0]) === 'function') { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what if my function uses deps ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it can't use deps if the function is inlined atm