You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
731 B
31 lines
731 B
3 years ago
|
/**
|
||
|
* Copyright (c) 2013 Yahoo! Inc. All rights reserved.
|
||
|
*
|
||
|
* Copyrights licensed under the MIT License. See the accompanying LICENSE file
|
||
|
* for terms.
|
||
|
*/
|
||
|
|
||
|
var zookeeper = require('../index.js');
|
||
|
|
||
|
var client = zookeeper.createClient(process.argv[2], { retries : 2 });
|
||
|
var path = process.argv[3];
|
||
|
|
||
|
client.on('connected', function (state) {
|
||
|
console.log('Connected to the server.');
|
||
|
client.remove(path, function (error) {
|
||
|
if (error) {
|
||
|
console.log(
|
||
|
'Failed to delete node: %s due to: %s.',
|
||
|
path,
|
||
|
error
|
||
|
);
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
console.log('Node: %s is deleted.', path);
|
||
|
client.close();
|
||
|
});
|
||
|
});
|
||
|
|
||
|
client.connect();
|