I found a few smartmix entries but I don't quite understand what they
mean. Hope they make more sense to you. Do you need anything else?

Yes, they make sense: there's a timeout trying to upload the data to TEN. You could try a few things to work around this. Please edit the Importer.pm or API.pm file (check Settings/Information for the path where it's stored), then re-try a scan:

- Importer.pm: there's a MAX_UPLOAD value at the top. Reduce this value to eg. 500

- API.pm: around line 350 there's the timeout set to 30s for http requests. Double that value.

- API.pm: in _getResponseBody, there's this line:

        $@ && $log->error($@);

Add another one like this:

        $@ && $log->error(Data::Dump::dump($response));

This would either work around the timeout, or give us more information about the failure.


--

Michael
_______________________________________________
plugins mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/plugins

Reply via email to