@scrypted/server 0.7.41 → 0.7.42
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of @scrypted/server might be problematic. Click here for more details.
- package/package.json +1 -1
- package/python/plugin_remote.py +3 -4
package/package.json
CHANGED
package/python/plugin_remote.py
CHANGED
@@ -384,10 +384,9 @@ class PluginRemote:
|
|
384
384
|
if platform.machine() == 'aarch64' and platform.architecture()[0] == '32bit':
|
385
385
|
print('=============================================')
|
386
386
|
print('Python machine vs architecture mismatch detected. Plugin installation may fail.')
|
387
|
-
print('
|
388
|
-
print('
|
389
|
-
print('
|
390
|
-
print('The host architecture can be checked with: "uname -m"')
|
387
|
+
print('This issue occurs if a 32bit system was upgraded to a 64bit kernel.')
|
388
|
+
print('Reverting to the 32bit kernel (or reflashing as native 64 bit is recommended.')
|
389
|
+
print('https://github.com/koush/scrypted/issues/678')
|
391
390
|
print('=============================================')
|
392
391
|
|
393
392
|
python_version = 'python%s' % str(
|