You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
HI, I am using redisStore for Quartz.
I see that if I pass data using JobDetail.JobDataMap.put("key","value") I can access it when my job fires doing context.getJobDetail().getJObDataMap()
But if i try to pass JobDataMap via the trigger that i used to trigger the job, trigger1.getJobDataMap().put("key","value"), then i cannot access the value when my job fires bu doing context.getTrigger().getJobDataMap().getString("key");
the above works if i use RAMStore instead of RedisStore.
Please help resolve this issue. it is urgent.
Please let me know if i am missing something here.
Thanks.
The text was updated successfully, but these errors were encountered:
HI Futher update, I was reading the RedisJobStore.java and I see that storeTigger and retriveTrigger functions NOWHERE have any reference to the JobDataMap which may have been associated with the trigger while it was created.
storeJob and retreiveJob methods in the same class, DO HAVE reference to the jobDataMap associated with Job.
I am not Sure if i Am looking at the right place, but just wanted to put my observations here, Just if they may help.
HI, I am using redisStore for Quartz.
I see that if I pass data using JobDetail.JobDataMap.put("key","value") I can access it when my job fires doing context.getJobDetail().getJObDataMap()
But if i try to pass JobDataMap via the trigger that i used to trigger the job, trigger1.getJobDataMap().put("key","value"), then i cannot access the value when my job fires bu doing context.getTrigger().getJobDataMap().getString("key");
the above works if i use RAMStore instead of RedisStore.
Please help resolve this issue. it is urgent.
Please let me know if i am missing something here.
Thanks.
The text was updated successfully, but these errors were encountered: