You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem: the set_status RPC defined in resource_match.cpp takes only a single vertex path. The flux-coral2 project sometimes needs to send bulk updates. Since there are only two states, UP and DOWN, I propose changing the RPC payloads from
Problem: the
set_status
RPC defined inresource_match.cpp
takes only a single vertex path. The flux-coral2 project sometimes needs to send bulk updates. Since there are only two states,UP
andDOWN
, I propose changing the RPC payloads from{"resource_path": PATH, "status": "up"/"down"}
to{"up": [PATH, PATH, ...], "down": [PATH, PATH, ...]}
.The text was updated successfully, but these errors were encountered: