
admin.foreignClusterGetHostTimeout( config as element(configuration), cluster-id as (Number|String) ) as Number
This function returns the timeout period (in seconds) for communication between domestic hosts and hosts in the specified foreign cluster.
| Parameters | |
|---|---|
| config | A configuration specification, typically as returned from one of the Admin module functions. | 
| cluster-id | The ID of the foreign cluster. | 
  
  const admin = require('/MarkLogic/admin.xqy');
  const cfg = admin.getConfiguration()
  const fcl = admin.clusterGetForeignClusterId(cfg, "ClusterA")
  admin.foreignClusterGetHostTimeout(cfg, fcl)
   //Returns the host timeout period set in the foreign cluster.