This repository has been archived by the owner. It is now read-only.
Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Use gen_server:cast rather than rexi RPCs
Prior to this commit, the global_changes_listener would send updates to the global_changes_server via a rexi RPC which only did a gen_server:call. This is needlessly heavyweight and would cause gen_server:call timeout errors when the global_changes_server was slow (usually due to slow disk IO). This commit removes the rexi RPC and replaces it with a gen_server:cast. Since this causes all global_changes_server handlers to not reply, this commit also removes the format_reply function as it's unnecessary. BugzID: 28242
- Loading branch information
1 parent
c0f0382
commit db52f10059d46e736898a8de45ebc689b7ea4254
Showing
2 changed files
with
25 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters