aws lambda functions not refreshing between PC and laptop2019 Community Moderator ElectionWhat's the difference between dependencies, devDependencies and peerDependencies in npm package.json file?What's the difference between tilde(~) and caret(^) in package.json?Can an AWS Lambda function call anotherGetting error: Missing Authentication Token after AWS API requestHow to optimize AWS Lambda?How do I debug AWS Api Gateway & Lambda's “AWS/ApiGateway 5XXError”Problems with AWS Lambda function invocation policy with permission via SDKAWS serverless reset cache using lambda or s3 or api gatewayAWS Lambda No Space Left on Device errorNot able to send updated response from callback function in AWS Lambda to API Gateway
If I receive a SOS signal, what is the proper response?
What Happens when Passenger Refuses to Fly Boeing 737 Max?
Marriage green card at end of current visa with 2 Year residency requirement waiver in-process, question
Is there a difference between equilibrium and steady state?
Shifting between bemols (flats) and diesis (sharps)in the key signature
Why the color red for the Republican Party
Signed and unsigned numbers
How many characters using PHB rules does it take to be able to have access to any PHB spell at the start of an adventuring day?
Has a sovereign Communist government ever run, and conceded loss, on a fair election?
Is this Paypal Github SDK reference really a dangerous site?
How can I ensure my trip to the UK will not have to be cancelled because of Brexit?
How to build and install Python 3.7.x from source on Debian 9.8
Whose blood did Carol Danvers receive, Mar-vell's or Yon-Rogg's in the movie?
Latex does not go to next line
What is Earthy controling in the ISS cupola?
Accepted offer letter, position changed
Are babies of evil humanoid species inherently evil?
Conservation of Mass and Energy
Rewrite the power sum in terms of convolution
List elements digit difference sort
How can I get players to focus on the story aspect of D&D?
Do I really need to have a scientific explanation for my premise?
How strictly should I take "Candidates must be local"?
Should I tell my boss the work he did was worthless
aws lambda functions not refreshing between PC and laptop
2019 Community Moderator ElectionWhat's the difference between dependencies, devDependencies and peerDependencies in npm package.json file?What's the difference between tilde(~) and caret(^) in package.json?Can an AWS Lambda function call anotherGetting error: Missing Authentication Token after AWS API requestHow to optimize AWS Lambda?How do I debug AWS Api Gateway & Lambda's “AWS/ApiGateway 5XXError”Problems with AWS Lambda function invocation policy with permission via SDKAWS serverless reset cache using lambda or s3 or api gatewayAWS Lambda No Space Left on Device errorNot able to send updated response from callback function in AWS Lambda to API Gateway
I wrote an update to a lambda function using the editor on the AWS console (the webpage, not my IDE) using my desktop PC then closed and shutdown everything.
The next day I accessed my account via my laptop and logged into the AWS console again and opened the lambda function again.
Although my API gateway was using the new updated function written on my desktop PC, the function shown on my laptop was the old lambda function...
I accidently clicked "save" and it overwrote the lambda function my API gateway was using and suddenly my web app wasn't working anymore because it was running the old lambda code.
So I had to recode the whole new function again because there was no backup of it.
Has anyone else had this problem or know why this happened?
Note:
I had no versioning set, everything was $LATEST
I had saved the update and the API gateway was using the update effectively
My solution after this happened again was to open the lmabda function, close it and open it again on whichever device I wanted to use and the second time it seems to pull up the updated function.
Regards
node.js amazon-web-services aws-lambda
add a comment |
I wrote an update to a lambda function using the editor on the AWS console (the webpage, not my IDE) using my desktop PC then closed and shutdown everything.
The next day I accessed my account via my laptop and logged into the AWS console again and opened the lambda function again.
Although my API gateway was using the new updated function written on my desktop PC, the function shown on my laptop was the old lambda function...
I accidently clicked "save" and it overwrote the lambda function my API gateway was using and suddenly my web app wasn't working anymore because it was running the old lambda code.
So I had to recode the whole new function again because there was no backup of it.
Has anyone else had this problem or know why this happened?
Note:
I had no versioning set, everything was $LATEST
I had saved the update and the API gateway was using the update effectively
My solution after this happened again was to open the lmabda function, close it and open it again on whichever device I wanted to use and the second time it seems to pull up the updated function.
Regards
node.js amazon-web-services aws-lambda
1
Sounds like a bug in the AWS Lambda web console, and you should file a ticket with AWS.
– Mark B
Mar 6 at 15:14
1
I actually had this issue as well, it is definitely a bug. I noticed that if I downloaded the function code it was the updated version, but the console IDE was outdated.
– Deiv
Mar 6 at 15:16
Thanks, at least I know then it's not something I don't understand or am doing incorrectly...
– Bernhard.Smuts
Mar 8 at 11:50
add a comment |
I wrote an update to a lambda function using the editor on the AWS console (the webpage, not my IDE) using my desktop PC then closed and shutdown everything.
The next day I accessed my account via my laptop and logged into the AWS console again and opened the lambda function again.
Although my API gateway was using the new updated function written on my desktop PC, the function shown on my laptop was the old lambda function...
I accidently clicked "save" and it overwrote the lambda function my API gateway was using and suddenly my web app wasn't working anymore because it was running the old lambda code.
So I had to recode the whole new function again because there was no backup of it.
Has anyone else had this problem or know why this happened?
Note:
I had no versioning set, everything was $LATEST
I had saved the update and the API gateway was using the update effectively
My solution after this happened again was to open the lmabda function, close it and open it again on whichever device I wanted to use and the second time it seems to pull up the updated function.
Regards
node.js amazon-web-services aws-lambda
I wrote an update to a lambda function using the editor on the AWS console (the webpage, not my IDE) using my desktop PC then closed and shutdown everything.
The next day I accessed my account via my laptop and logged into the AWS console again and opened the lambda function again.
Although my API gateway was using the new updated function written on my desktop PC, the function shown on my laptop was the old lambda function...
I accidently clicked "save" and it overwrote the lambda function my API gateway was using and suddenly my web app wasn't working anymore because it was running the old lambda code.
So I had to recode the whole new function again because there was no backup of it.
Has anyone else had this problem or know why this happened?
Note:
I had no versioning set, everything was $LATEST
I had saved the update and the API gateway was using the update effectively
My solution after this happened again was to open the lmabda function, close it and open it again on whichever device I wanted to use and the second time it seems to pull up the updated function.
Regards
node.js amazon-web-services aws-lambda
node.js amazon-web-services aws-lambda
edited Mar 6 at 15:13
Mark B
103k16163177
103k16163177
asked Mar 6 at 14:59
Bernhard.SmutsBernhard.Smuts
558
558
1
Sounds like a bug in the AWS Lambda web console, and you should file a ticket with AWS.
– Mark B
Mar 6 at 15:14
1
I actually had this issue as well, it is definitely a bug. I noticed that if I downloaded the function code it was the updated version, but the console IDE was outdated.
– Deiv
Mar 6 at 15:16
Thanks, at least I know then it's not something I don't understand or am doing incorrectly...
– Bernhard.Smuts
Mar 8 at 11:50
add a comment |
1
Sounds like a bug in the AWS Lambda web console, and you should file a ticket with AWS.
– Mark B
Mar 6 at 15:14
1
I actually had this issue as well, it is definitely a bug. I noticed that if I downloaded the function code it was the updated version, but the console IDE was outdated.
– Deiv
Mar 6 at 15:16
Thanks, at least I know then it's not something I don't understand or am doing incorrectly...
– Bernhard.Smuts
Mar 8 at 11:50
1
1
Sounds like a bug in the AWS Lambda web console, and you should file a ticket with AWS.
– Mark B
Mar 6 at 15:14
Sounds like a bug in the AWS Lambda web console, and you should file a ticket with AWS.
– Mark B
Mar 6 at 15:14
1
1
I actually had this issue as well, it is definitely a bug. I noticed that if I downloaded the function code it was the updated version, but the console IDE was outdated.
– Deiv
Mar 6 at 15:16
I actually had this issue as well, it is definitely a bug. I noticed that if I downloaded the function code it was the updated version, but the console IDE was outdated.
– Deiv
Mar 6 at 15:16
Thanks, at least I know then it's not something I don't understand or am doing incorrectly...
– Bernhard.Smuts
Mar 8 at 11:50
Thanks, at least I know then it's not something I don't understand or am doing incorrectly...
– Bernhard.Smuts
Mar 8 at 11:50
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55026078%2faws-lambda-functions-not-refreshing-between-pc-and-laptop%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55026078%2faws-lambda-functions-not-refreshing-between-pc-and-laptop%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Sounds like a bug in the AWS Lambda web console, and you should file a ticket with AWS.
– Mark B
Mar 6 at 15:14
1
I actually had this issue as well, it is definitely a bug. I noticed that if I downloaded the function code it was the updated version, but the console IDE was outdated.
– Deiv
Mar 6 at 15:16
Thanks, at least I know then it's not something I don't understand or am doing incorrectly...
– Bernhard.Smuts
Mar 8 at 11:50