Function not updating on Parse.com

74 Views Asked by At

I have this function, working normally, on Parse.com:

Parse.Cloud.job
 ("myBGFunction", function(request, status)
 {
 console.log("Entering myBGFunction.");
 });

But as strange as it may seem, if I update it (saving and using parse deploy) as usual with the following:

Parse.Cloud.job
 ("myBGFunction", function(request, status)
 {
 console.log("Entering myBGFunction (AAAA).");
 });

The next time I try to execute, the old function is executed (in the log), as if the update did go through, though I got no error message after running:

parse deploy

Has anyone seen this before?

One more tiny question: Is there a way to clear the old logs (on Parse)? That would be a basic useful feature.

Looking a bit more into details at what happens to my classes, it seems like "all is fine" except that what I can see in the log is outdated. That is as I wrote earlier, logs from previous versions. It makes it extremely difficult to debug a function, because all trace-log becomes impossible.

1

There are 1 best solutions below

3
On

Please go to the "CloudCode" section, and check if the code is the same as you expected.

enter image description here