| 7865 | } |
| 7866 | |
| 7867 | static cbm_graph_access_t cbm_tiered_profile_set_access(cbm_tiered_profile_set_t profiles) { |
| 7868 | return !profiles.force_handoff && cbm_graph_dialect_direct_capable(profiles.dialect) |
| 7869 | ? CBM_GRAPH_ACCESS_DIRECT |
| 7870 | : CBM_GRAPH_ACCESS_HANDOFF; |
| 7871 | } |
| 7872 | |
| 7873 | static void install_tiered_agent_profiles(cbm_tiered_profile_set_t profiles, bool dry_run) { |
| 7874 | cbm_graph_access_t access = cbm_tiered_profile_set_access(profiles); |
no test coverage detected