Commit fc9f8f669c20149ae311ffee67ac48a43d443de9
1 parent
f4b16f40
Merged in from DEV trunk...
SUP-946 "Scheduler in windows server 2003 fails" Fixed. Removed the code logging errors to the windows event viewer. Committed By: Conrad Vermeulen Reviewed By: Megan Watson git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/STABLE/trunk@8859 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
0 additions
and
2 deletions
bin/win32/schedulerService.php
| ... | ... | @@ -86,7 +86,6 @@ while(!$bTableExists){ |
| 86 | 86 | $bTableExists = true; |
| 87 | 87 | continue; |
| 88 | 88 | default: |
| 89 | - win32_set_service_status(WIN32_ERROR_CALL_NOT_IMPLEMENTED); // Add more cases to handle other service calls | |
| 90 | 89 | } |
| 91 | 90 | |
| 92 | 91 | $default->log->info("Scheduler Service: Checking if the scheduler_tasks table exists."); |
| ... | ... | @@ -126,7 +125,6 @@ while ($loop) |
| 126 | 125 | $loop = false; // Terminate script |
| 127 | 126 | continue; |
| 128 | 127 | default: |
| 129 | - win32_set_service_status(WIN32_ERROR_CALL_NOT_IMPLEMENTED); // Add more cases to handle other service calls | |
| 130 | 128 | } |
| 131 | 129 | // Run the scheduler script |
| 132 | 130 | $cmd = "\"$phpPath\" \"$dir/scheduler.php\""; | ... | ... |