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).
		
			
				
	
	
		
			13 lines
		
	
	
		
			266 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			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)
 | 
						|
});
 |