Files
MaxScale/maxctrl/test/reload.js
Markus Mäkelä d9fdf3adc1 MXS-3013: Add reload service MaxCtrl command
The command currently reloads the users of a service but it can be used to
reload other parts of it as well (e.g. encryption keys).
2020-06-01 12:26:29 +03:00

13 lines
266 B
JavaScript

require('../test_utils.js')()
describe("Reload Commands", function() {
before(startMaxScale)
it('reload service', function() {
return doCommand('reload service RW-Split-Router')
.should.be.fulfilled
});
after(stopMaxScale)
});