diff options
| author | Matthias Radestock <matthias@rabbitmq.com> | 2014-04-22 19:09:19 +0100 |
|---|---|---|
| committer | Matthias Radestock <matthias@rabbitmq.com> | 2014-04-22 19:09:19 +0100 |
| commit | bbf2de0254c8db4236845e8a6d4e2cb651cdd88e (patch) | |
| tree | 5f1784895eb94da3698b6defd2012fe9eaf139e6 | |
| parent | fab78c5b71de4c44a52819d33da43a98217e7b9f (diff) | |
| download | rabbitmq-server-git-bbf2de0254c8db4236845e8a6d4e2cb651cdd88e.tar.gz | |
maintain gm ?GROUP_TABLE abstraction
in yet another place
| -rw-r--r-- | src/gm.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gm.erl b/src/gm.erl index 30f33e636d..5e9ed460fa 100644 --- a/src/gm.erl +++ b/src/gm.erl @@ -509,9 +509,9 @@ create_tables([]) -> ok; create_tables([{Table, Attributes} | Tables]) -> case mnesia:create_table(Table, Attributes) of - {atomic, ok} -> create_tables(Tables); - {aborted, {already_exists, gm_group}} -> create_tables(Tables); - Err -> Err + {atomic, ok} -> create_tables(Tables); + {aborted, {already_exists, Table}} -> create_tables(Tables); + Err -> Err end. table_definitions() -> |
