Hi,

I don't have time to read in full details but I suspect a common mistake here.

On Thu, Jan 27, 2011 at 11:20 PM,  <[email protected]> wrote:
> I assumed that since each show ID had
> already been verified as infallible (through 'single' and 'playlist.safe')
> I would not encounter any load errors.

When you write foo = ... in one place of a script and foo = ... in
another place, that's two definitions that are totally independent.
You could rename one of them bar, it means the same. For example: foo
= 1 ; foo = 2 ; print(foo) is the same as foo = 1 ; bar = 2 ;
print(bar).

So, it would be wrong for liquidsoap to assume that anything named
icmp3 is infallible as long as one thing named that way is infallible.
And indeed, it does not proceed that way.

To deal with fallibility, you have the standard recipes, notably
mksafe or fallback using a failsafe single.

Good luck,
-- 
David

------------------------------------------------------------------------------
Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)!
Finally, a world-class log management solution at an even better price-free!
Download using promo code Free_Logger_4_Dev2Dev. Offer expires 
February 28th, so secure your free ArcSight Logger TODAY! 
http://p.sf.net/sfu/arcsight-sfd2d
_______________________________________________
Savonet-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/savonet-users

Reply via email to