Subversion Repositories SmartDukaan

Rev

Rev 24005 | Rev 24086 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 24005 Rev 24006
Line 90... Line 90...
90
	private ScheduledTasks scheduledTasks;
90
	private ScheduledTasks scheduledTasks;
91
	@Override
91
	@Override
92
	public void run(ApplicationArguments args) throws Exception {
92
	public void run(ApplicationArguments args) throws Exception {
93
		LOGGER.info("Called run method");
93
		LOGGER.info("Called run method");
94
		if(args.containsOption("once")) {
94
		if(args.containsOption("once")) {
95
			runOnceTasks.dropCorrection();
95
			//runOnceTasks.dropCorrection();
96
			System.exit(0);
96
			System.exit(0);
97
		}
97
		}
98
		
98
		
99
	}
99
	}
100
 
100