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:

  1. The easiest way is to replace line 894 of mythdb.cpp by:

params.wolRetry = settings.GetNumSetting?("WOLsqlConnectRetry",5);

  1. 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

defaultDBsettingFix.diff (2.2 KB) - added by xavier.hervy@… 15 months ago.

Change History

Changed 15 months ago by xavier.hervy@…

comment:1 Changed 15 months ago by danielk

  • Status changed from new to accepted
  • Milestone changed from 0.25 to 0.26

comment:2 Changed 13 months ago by Daniel Kristjansson <danielk@…>

  • Status changed from accepted to closed
  • Resolution set to fixed

In 986a5869911ca56d32ed3d6c0325f9e825e628c4/mythtv:

Fixes #10341. Use default SQLConnectRetry if not specified in the config.xml.

Reported by xavier.hervy@….

View

Add a comment

Modify Ticket

Action
as closed
The resolution will be deleted. Next status will be 'new'
Author


E-mail address and user name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.