Modify ↓
Ticket #10341 (closed Patch - Bug Fix: fixed)
Opened 15 months ago
Last modified 13 months ago
Wrong default value for DB WOL retry
| Reported by: | xavier.hervy@… | Owned by: | danielk |
|---|---|---|---|
| Priority: | minor | Milestone: | 0.26 |
| Component: | MythTV - Mythtv-setup | Version: | Master Head |
| Severity: | medium | Keywords: | |
| Cc: | Ticket locked: | no |
Description
In mysql.txt, it is said that the default value is 5 when not specified but In the UI the default value is 0.
In the UI the number of retry is between 1 and 10 (also I don't know why It could not be 0)
There is few way to fix this:
- The easiest way is to replace line 894 of mythdb.cpp by:
params.wolRetry = settings.GetNumSetting?("WOLsqlConnectRetry",5);
- a better would be to load the default setting first and replace line 894 (and other similar one) by:
params.wolRetry = settings.GetNumSetting?("WOLsqlConnectRetry",params.wolRetry);
This patch implement the later
Attachments
Change History
Note: See
TracTickets for help on using
tickets.
