Page 1 of 1

Upgrading to Indigo 7.2 causes errors

PostPosted: Mon Oct 01, 2018 5:37 pm
by DVDDave
After upgrading to Indigo 7.2, I get constant errors of the sort:

Code: Select all
Traceback (most recent call last):
  File "plugin.py", line 1886, in runConcurrentThread
IOError: (2, 'No such file or directory', u'/Library/Application Support/Perceptive Automation/Indigo 7/Logs/NESTHome1Errors.log')

   NEST Home Error                 plugin runConcurrentThread function returned or failed (will attempt again in 10 seconds)
   NEST Home Error                 Error in plugin execution runConcurrentThread:


The plugin is referring to the Indigo 7 folder, not Indigo 7.2. I fixed it temporally by changing plugin.py like this:

Code: Select all
#myIndigoVersion = indigo.server.version[0]
myIndigoVersion = "7.2"


Maybe indigo.server.version[0] isn't supported anymore?

Thanks.

--Dave

Re: Upgrading to Indigo 7.2 causes errors

PostPosted: Mon Oct 01, 2018 8:01 pm
by matt (support)
I've published a new version of that plugin which should be compatible with 7.2 (and beyond).

Re: Upgrading to Indigo 7.2 causes errors

PostPosted: Mon Oct 01, 2018 8:03 pm
by DVDDave
Cool! Thanks

--Dave