Not sure if this is progress.

The issues about putty stopping logging message - I have duplicated this
and it is not a putty issue.  On Radio to conserve log message space it
cycle log file, after about 10 mins messages gets rename to messages.0
and a new messages is opened.  The "tail -f" is still tied to messages.0
and so no new messages are added.

I have had a sort of "frozen" event - it looks like Radio has somehow
reverted from MYSB.com to local LMS - however after repeated pressing of
preset - station was played via mysb.com so not quite the same as yoru
"frozen".

The error - "cannot allocate memory"  does not occur on my Radio so I
hope this is indicator of something.  The Radio source routine which
produces the error is below - it is a request to find the MAC address of
the LMS or maybe MYSB.com. arp request is supposed to be run as a
process so the "cannot allocate memory" could be either from the failure
to create a new process or the failure of the arp command.


Code:
--------------------
    
  -- comet has connected to SC
  function notify_cometConnected(self, comet)
        if self.comet ~= comet then
                return
        end
  
        log:info("connected ", self.name)
  
        self.netstate = 'connected'
        self.jnt:notify('serverConnected', self)
  
        self.authFailureCount = 0
  
        -- auto discovery SqueezeCenter's mac address
        self.jnt:arp(self.ip, function(chunk, err)
                if err then
                        log:debug("arp: " .. err)
                else
                        log:info('self.mac being set to---->', self.mac)
                        self.mac = chunk
                end
        end)
  end
  
  
--------------------


------------------------------------------------------------------------
bpa's Profile: http://forums.slimdevices.com/member.php?userid=1806
View this thread: http://forums.slimdevices.com/showthread.php?t=108422

_______________________________________________
Radio mailing list
Radio@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/radio

Reply via email to