summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMatthew Sackman <matthew@rabbitmq.com>2010-11-24 13:43:35 +0000
committerMatthew Sackman <matthew@rabbitmq.com>2010-11-24 13:43:35 +0000
commit04138572cc89399ffd6331060174535be9ffd9a8 (patch)
tree27303bcf9ccd661ed75e1c6d9615015340e37fee /src
parent0aac12c645368f2c3c0921377c807b68bd33ffee (diff)
downloadrabbitmq-server-git-04138572cc89399ffd6331060174535be9ffd9a8.tar.gz
exit -> throw seeing as bug 23535 is invalid
Diffstat (limited to 'src')
-rw-r--r--src/rabbit_upgrade.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit_upgrade.erl b/src/rabbit_upgrade.erl
index 40af654afd..64d0c25173 100644
--- a/src/rabbit_upgrade.erl
+++ b/src/rabbit_upgrade.erl
@@ -152,7 +152,7 @@ apply_upgrades(Upgrades) ->
%% hence we don't need the lockfile since the real
%% mnesia dir is the good one.
ok = file:delete(LockFile),
- exit({could_not_back_up_mnesia_dir, E})
+ throw({could_not_back_up_mnesia_dir, E})
end;
{error, eexist} ->
throw({error, previous_upgrade_failed});