Closed gautampachnanda closed 11 years ago
Sorry I've taking so long to repsond. I didn't notice the issue and for some reasons didn't receive a github notification.
Can you confirm you have the following import statements...
import org.apache.log4j.Logger import org.quartz.impl.triggers.CronTriggerImpl import grails.plugin.quartz2.ClosureJob import uk.co.acuminous.jinkies.util.HttpClientsFactory
I'm afraid I can't look at this today, but I'll add in your config tomorrow and see whether I get the same error
OK. My bad.
new HttpClientsFactory().getHttpBuilder('http://localhost:8080/api/event').post(body: params)
should be
new HttpClientsFactory().getHttpBuilder().post(uri: http://localhost:8080/api/event', body: params)
Hi,
I am trying to setup a custom job at a fixed time. But I am getting a error (see below).
My setup is on a mac with Java 6.
The job config is.
grails.plugin.quartz2.jobSetup.projectXStandup = { quartzScheduler, ctx ->
}
let me know if you need any info.
An error while sounding the Project X standup groovy.lang.MissingMethodException: No signature of method: uk.co.acuminous.jinkies.util.HttpClientsFactory.getHttpBuilder() is applicable for argument types: (java.lang.String) values: [http://localhost:8080/api/event] Possible solutions: getHttpBuilder() at
Thanks