mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-24 18:40:38 +00:00
utils, db: qualify seastar::coroutine:: to avoid shadowing by utils::coroutine class
Inside namespace utils, unqualified coroutine:: resolves to the utils::coroutine class (utils/coroutine.hh) rather than the seastar::coroutine namespace. This causes build failures when replica/database.hh is added to the precompiled header, because utils/coroutine.hh becomes transitively visible in all TUs. Qualify all coroutine:: references with seastar:: in affected files under utils/ and db/.
This commit is contained in:
@@ -2002,7 +2002,7 @@ future<gms::inet_address> resolve(const config_file::named_value<sstring>& addre
|
||||
}
|
||||
}
|
||||
|
||||
co_return coroutine::exception(std::move(ex));
|
||||
co_return seastar::coroutine::exception(std::move(ex));
|
||||
}
|
||||
|
||||
static std::vector<seastar::metrics::relabel_config> get_relable_from_yaml(const YAML::Node& yaml, const std::string& name) {
|
||||
|
||||
Reference in New Issue
Block a user