cloud code - Function not updating on Parse.com -


i have function, working normally, on parse.com:

parse.cloud.job  ("mybgfunction", function(request, status)  {  console.log("entering mybgfunction.");  }); 

but strange may seem, if update (saving , using parse deploy) usual following:

parse.cloud.job  ("mybgfunction", function(request, status)  {  console.log("entering mybgfunction (aaaa).");  }); 

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

parse deploy 

has seen before?

one more tiny question: there way clear old logs (on parse)? basic useful feature.

looking bit more details @ happens classes, seems "all fine" except can see in log outdated. wrote earlier, logs previous versions. makes extremely difficult debug function, because trace-log becomes impossible.

please go "cloudcode" section, , check if code same expected.

enter image description here


Comments

Popular posts from this blog

PHP DOM loadHTML() method unusual warning -

python - How to create jsonb index using GIN on SQLAlchemy? -

c# - TransactionScope not rolling back although no complete() is called -