Description of problem: API documentation for systemgroup.scheduleApplyErrataToActive (variant without date) says it returns 1 on success, but it returns array of action IDs. Version-Release number of selected component (if applicable): spacewalk-java-2.0.2-39.el6sat.noarch How reproducible: always Steps to Reproduce: 1. Check documentation: Method: scheduleApplyErrataToActive Description: Schedules an action to apply errata updates to active systems from a group. [...] Returns: int - 1 on success, exception thrown otherwise. 2. $ python Python 2.7.5 (default, Aug 22 2013, 09:31:58) [GCC 4.8.1 20130603 (Red Hat 4.8.1-1)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> SERVER="https://<fqdn>/rpc/api" >>> USER='<username>' >>> PASS='<password>' >>> import xmlrpclib >>> client = xmlrpclib.Server(SERVER, verbose=0) >>> key = client.auth.login(USER, PASS) >>> client.systemgroup.scheduleApplyErrataToActive(key, 'jhutar-APIcheck', [2025]) [39] Actual results: Documentation and API calls are not in sync. Expected results: Either documentation or API call should be changed. Additional info: IMO not a blocker for 560 release.