admin.taskserverGetDebugAllow

admin.taskserverGetDebugAllow(
   config as element(configuration),
   group-id as (Number|String)
) as Boolean

Summary

This function returns the value for the debug-allow setting configured on the task server for the specified group.

Parameters
config A configuration specification, typically as returned from one of the Admin module functions.
group-id The ID of the group to which the App Server belongs. Typically, this is the result of an admin:group-get-id call.

Example

  
  const admin = require('/MarkLogic/admin.xqy');
  const config = admin.getConfiguration()
  const groupId = admin.groupGetId(config, "Default")
  admin.taskserverGetDebugAllow(config, groupId)

   //returns the debugAllow setting configured on the task server 
  
Powered by MarkLogic Server | Terms of Use | Privacy Policy