Replace get_auth_ks_name(qp) with db::system_keyspace::NAME directly. The function always returned the constant "system" and its qp parameter was unused.
26 lines
448 B
C++
26 lines
448 B
C++
/*
|
|
* Copyright 2019-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
#include "utils/loading_cache.hh"
|
|
#include "auth/service.hh"
|
|
|
|
namespace service {
|
|
class storage_proxy;
|
|
}
|
|
|
|
namespace alternator {
|
|
|
|
using key_cache = utils::loading_cache<std::string, std::string, 1>;
|
|
|
|
future<std::string> get_key_from_roles(service::storage_proxy& proxy, std::string username);
|
|
|
|
}
|