# File lib/phusion_passenger/message_client.rb, line 79
        def detach(detach_key)
                write("detach", detach_key)
                check_security_response
                result = read
                if result.nil?
                        raise EOFError
                else
                        return result.first == "true"
                end
        end