diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/rabbit_guid.erl | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/rabbit_guid.erl b/src/rabbit_guid.erl index d92f58a250..523af7492d 100644 --- a/src/rabbit_guid.erl +++ b/src/rabbit_guid.erl @@ -77,12 +77,9 @@ guid() -> %% slow since it takes a global lock and makes a system call. %% %% A persisted serial number, the node, and a unique reference - %% (per node-incarnation) uniquely identifies a process in space + %% (per node incarnation) uniquely identifies a process in space %% and time. We combine that with a process-local counter to give %% us a GUID. - %% - %% We used to use self/0 here instead of the node and unique - %% reference. But PIDs wrap. G = case get(guid) of undefined -> Serial = gen_server:call(?SERVER, serial, infinity), {{Serial, node(), make_ref()}, 0}; |
