I'm a new convert to BlissFlixx, its great!
But I sometimes get a problem when I boot my system (maybe 1 in 5 times) where the Pi reports the following:-
...and this message continues in a similar way referencing lines 1, 129, 71 & so on.
I just cold-boot again and its usually fine.
I've configured my Pi as per this post on my blog: http://captainbodgit.blogspot.co.uk/2016/01/blissflixx-on-raspberrypi.html
Any ideas or suggestions would be appreciated.
Looks like adding a delay to blissflixx.py may be a work-around...
I'll live with it/tune it for a while and see what happens.
But I sometimes get a problem when I boot my system (maybe 1 in 5 times) where the Pi reports the following:-
Code:
{date/time} BLISSFLIXX Starting...
Traceback (most recent call last):
File "/home/pi/blissflixx/blissflixx.py", line 47 in <module>
import api, pwd, grp
I just cold-boot again and its usually fine.
I've configured my Pi as per this post on my blog: http://captainbodgit.blogspot.co.uk/2016/01/blissflixx-on-raspberrypi.html
Any ideas or suggestions would be appreciated.
Looks like adding a delay to blissflixx.py may be a work-around...
Code:
#!/usr/bin/python
from os import path
import sys, os
LIB_PATH = path.join(path.abspath(path.dirname(__file__)), "lib")
sys.path.append(LIB_PATH)
import locations, gitutils, cherrypy
import time
print ".............enforce a 10 second delay....."
time.sleep(10)
# Do not allow running as root
I'll live with it/tune it for a while and see what happens.