Index: /branches/amp_3_7_2/src/webui/webui/htdocs/new/src/client/app/docs/AMP_User_Guide_3.7.pdf
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/pdf
Index: /branches/amp_3_7_2/src/webui/webui/htdocs/new/src/cm/lib/task_scheduler.py
===================================================================
--- /branches/amp_3_7_2/src/webui/webui/htdocs/new/src/cm/lib/task_scheduler.py	(revision 2928)
+++ /branches/amp_3_7_2/src/webui/webui/htdocs/new/src/cm/lib/task_scheduler.py	(working copy)
@@ -2033,7 +2033,13 @@
                 time.sleep(2)
         else:
             try:
-                new_url = '/rest/apv/system/SystemInfo/version'
+                # Use modify_url to generate device-specific URL based on device type
+                generic_url = '/rest/device_type/system/SystemInfo/version'
+                new_url = modify_url(generic_url, data['type'])
+                if not new_url:
+                    # Fallback to apv if modify_url returns None (shouldn't happen for valid device types)
+                    logger.warning('Device<%s>(%s) type "%s" not recognized, falling back to APV URL' % (data['name'], data['ip'], data['type']))
+                    new_url = '/rest/apv/system/SystemInfo/version'
                 rest_response_data = send_https_rest_request('GET', new_url, '', data['ip'], data['restapi_port'], data['restapi_username'], data['restapi_password'], lock=False)
             except Exception, e:
                 failed_time -= 1
