flexrep.pullSetUrls( pull as element(flexrep.pull), urls as String[] ) as element(flexrep.pull)
This function sets the URLs for the specified pull configuration.
Parameters | |
---|---|
pull |
The pull replication configuration returned by the
flexrep:pull-get function.
|
urls | THe URLs to set for the pull configuration. |
// Execute against a Replica database. const flexrep = require('/MarkLogic/flexrep'); declareUpdate(); let pullConfig = flexrep.pullGet(13991089731050213376, true); let pullCfg = flexrep.pullSetName(pullConfig, "http://server321:8010/"); flexrep.pullInsert(pullCfg); // Sets the URL for the specified Pull Configuration to "http://server321:8010/".
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.