Hello,
I am working with the following setup:
Ubuntu 10.04 Server with Tomcat6 and Apache2
Grails 1.3.3
I have the following job defined:
The issue is this: the job is not running at all. Is there some configuration that I am missing?
I am working with the following setup:
Ubuntu 10.04 Server with Tomcat6 and Apache2
Grails 1.3.3
I have the following job defined:
Code:
class ImportUsersJob {
def userDataService
static triggers = {
cron name: 'myTrigger', cronExpression: "45 6 * * * ?"
}
def execute() {
println("Job executed")
userDataService.updateUsers()
}
}
The issue is this: the job is not running at all. Is there some configuration that I am missing?