1
0
mirror of https://github.com/haiwen/seafile-server.git synced 2025-09-24 20:48:01 +00:00

add seaf_mq_manager_ prefix

This commit is contained in:
Xiangyue Cai
2019-08-05 16:41:31 +08:00
parent 5d555a8d24
commit efeac4bb99
5 changed files with 9 additions and 9 deletions

View File

@@ -245,7 +245,7 @@ seafile_publish_event(const char *channel, const char *content, GError **error)
return -1;
}
ret = publish_event (seaf->mq_mgr, channel, content);
ret = seaf_mq_manager_publish_event (seaf->mq_mgr, channel, content);
return ret;
}
@@ -257,7 +257,7 @@ seafile_pop_event(const char *channel, GError **error)
g_set_error (error, SEAFILE_DOMAIN, SEAF_ERR_BAD_ARGS, "Argument should not be null");
return NULL;
}
return pop_event (seaf->mq_mgr, channel);
return seaf_mq_manager_pop_event (seaf->mq_mgr, channel);
}
#endif