[mythtv] cannot view livetv in svn 15461

Shane gnome42 at gmail.com
Thu Jan 17 01:20:13 UTC 2008


On Jan 16, 2008 6:09 PM, Simon Kenyon <simon at koala.ie> wrote:
> i updated to svn 15461 on all my myth boxes.
> i now find that i cannot enter livetv
> i generated two logs, one for the frontend and one for the backend
> (attached)
>
> the line from the backend log which concerns me is:
>
> MythSocket(2aaab400df90:-1): writeStringList: Error, socket went
> unconnected.
>
> which is coupled with the line from the frontend log:
>
> MythSocket(833e128:20): readStringList: Error, timeout (quick).
>
> what should i do next?

Could try increasing the quick timeout value a little. Something
like this patch.

Index: libs/libmyth/mythsocket.cpp
===================================================================
--- libs/libmyth/mythsocket.cpp (revision 15438)
+++ libs/libmyth/mythsocket.cpp (working copy)
@@ -419,7 +419,7 @@
             }
             return false;
         }
-        else if (quickTimeout && elapsed >= 7000)
+        else if (quickTimeout && elapsed >= 10000)
         {
             VERBOSE(VB_GENERAL, LOC +
                     "readStringList: Error, timeout (quick).");

Shane


More information about the mythtv-dev mailing list