Hi,
All of a sudden debugging/executing of custom business logic doesn’t work anymore. Coderunner is running fine:
$ ./CodeRunner.sh
CodeRunner(tm) Backendless Debugging Utility
Copyright(C) 2016 Backendless Corp. All rights reserved.
Version: 3.0.0
[INFO] CodeRunner session is running for 2 hour and will be terminated on: 10:31:42 ( for you timezone: 'Europe/Zurich ')
[INFO] Registering runner on: https://api.backendless.com with secretKey: xxxxxx
[INFO] Runner successfully registered.
[INFO] Parsing event model...
[INFO] Build successfully: EventModel{ timers=0, eventHandlers=2 }
[INFO] Deploying model to server, and starting debug...
[INFO] Model successfully deployed...
[INFO] Waiting for events...
But it doesn’t receive any events.
I have no clue why it doesn’t currently work anymore.
Even this simple test code doesn’t run (probably because I never receive an event:
class BLProjectObjectTableEventHandler extends BasePersistenceEventHandler
{
public function afterCreate( $runner_context, $blProjectObject, $execution_result ) {
echo "\n";
echo "Create 'Create' action for ";
echo "ProjectObject - ". $blProjectObject->getName() ." Created";
echo "\n";
}
}