flexrep.configurationTargets( cfg as element(flexrep.configuration) ) as Sequence
This function returns the replication targets for a configuration.
Parameters | |
---|---|
cfg | The replication configuration. |
const flexrep = require('/MarkLogic/flexrep'); // Obtain the domain ID from the database used by the Master to enable CPF. const domain = xdmp.eval( 'const dom = require("/MarkLogic/cpf/domains");' + 'fn.data(dom.get("Default Master").xpath("//dom:domain-id"));', null, { 'database' : xdmp.database('Triggers') }); const cfg = flexrep.configurationGet(domain, true); flexrep.configurationTargets(cfg); // Returns the replication targets configured for the Default Master domain.