send response on shutdown request (#1037)
This commit is contained in:
		
							parent
							
								
									1fb7bfc63f
								
							
						
					
					
						commit
						421a05ae5f
					
				@ -1979,7 +1979,7 @@ fn initializedHandler(server: *Server, notification: types.InitializedParams) Er
 | 
				
			|||||||
        try server.requestConfiguration();
 | 
					        try server.requestConfiguration();
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
fn shutdownHandler(server: *Server, _: void) Error!void {
 | 
					fn shutdownHandler(server: *Server, _: void) Error!?void {
 | 
				
			||||||
    defer server.status = .shutdown;
 | 
					    defer server.status = .shutdown;
 | 
				
			||||||
    if (server.status != .initialized) return error.InvalidRequest; // received a shutdown request but the server is not initialized!
 | 
					    if (server.status != .initialized) return error.InvalidRequest; // received a shutdown request but the server is not initialized!
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user