Skip to content
Snippets Groups Projects
Commit cd25e7e7 authored by Brian Christiansen's avatar Brian Christiansen
Browse files

Send empty fed list to signal clusters of removal from fed

parent 9377946e
No related branches found
No related tags found
No related merge requests found
...@@ -693,12 +693,16 @@ extern List as_mysql_remove_federations(mysql_conn_t *mysql_conn, uint32_t uid, ...@@ -693,12 +693,16 @@ extern List as_mysql_remove_federations(mysql_conn_t *mysql_conn, uint32_t uid,
extern int as_mysql_add_feds_to_update_list(mysql_conn_t *mysql_conn) extern int as_mysql_add_feds_to_update_list(mysql_conn_t *mysql_conn)
{ {
int rc = SLURM_SUCCESS; int rc = SLURM_ERROR;
List feds = as_mysql_get_federations(mysql_conn, 0, NULL); List feds = as_mysql_get_federations(mysql_conn, 0, NULL);
if (feds && list_count(feds)) {
if ((rc = addto_update_list(mysql_conn->update_list, /* Even if there are no feds, need to send an empty list for the case
SLURMDB_UPDATE_FEDS, feds)) * that all feds were removed. The controller needs to know that it was
!= SLURM_SUCCESS) * removed from a federation. */
if (feds &&
((rc = addto_update_list(mysql_conn->update_list,
SLURMDB_UPDATE_FEDS, feds))
!= SLURM_SUCCESS)) {
FREE_NULL_LIST(feds); FREE_NULL_LIST(feds);
} }
return rc; return rc;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment