File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
vizier/services/agent/shared/manager Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -126,7 +126,8 @@ class GRPCRouter final : public carnotpb::ResultSinkService::Service {
126126 */
127127 struct QueryTracker {
128128 QueryTracker () : create_time(std::chrono::steady_clock::now()) {}
129- absl::node_hash_map<int64_t , SourceNodeTracker> source_node_trackers ABSL_GUARDED_BY (query_lock);
129+ absl::node_hash_map<int64_t , SourceNodeTracker> source_node_trackers
130+ ABSL_GUARDED_BY (query_lock);
130131 const std::chrono::steady_clock::time_point create_time ABSL_GUARDED_BY (query_lock);
131132 std::function<void ()> restart_execution_func_ ABSL_GUARDED_BY (query_lock);
132133 // The set of agents we've seen for the query.
Original file line number Diff line number Diff line change @@ -65,7 +65,8 @@ class RelationInfoManager {
6565 private:
6666 mutable std::atomic<bool > has_updates_ = false ;
6767 mutable absl::base_internal::SpinLock relation_info_map_lock_;
68- absl::btree_map<std::string, RelationInfo> relation_info_map_ ABSL_GUARDED_BY (relation_info_map_lock_);
68+ absl::btree_map<std::string, RelationInfo> relation_info_map_
69+ ABSL_GUARDED_BY (relation_info_map_lock_);
6970};
7071
7172} // namespace agent
You can’t perform that action at this time.
0 commit comments