-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(hot upgrade): fix bad hot upgrade script
- Loading branch information
zhouzb
committed
Dec 23, 2020
1 parent
690a6e6
commit 5e37f2c
Showing
1 changed file
with
4 additions
and
24 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,25 @@ | ||
%%-*-: erlang -*- | ||
{VSN, | ||
[ | ||
{<<".*">>, []}, | ||
{"4.2.3", [ | ||
{load_module, emqx_auth_mongo, brutal_purge, soft_purge, []} | ||
]}, | ||
{"4.2.2", [ | ||
{<<"4.2.[0-2]">>, [ | ||
{load_module, emqx_auth_mongo_app, brutal_purge, soft_purge, []}, | ||
{load_module, emqx_auth_mongo, brutal_purge, soft_purge, []}, | ||
{load_module, emqx_acl_mongo, brutal_purge, soft_purge, [emqx_auth_mongo]} | ||
]}, | ||
{"4.2.1", [ | ||
{load_module, emqx_auth_mongo_app, brutal_purge, soft_purge, []}, | ||
{load_module, emqx_auth_mongo, brutal_purge, soft_purge, []}, | ||
{load_module, emqx_acl_mongo, brutal_purge, soft_purge, [emqx_auth_mongo]} | ||
]}, | ||
{"4.2.0", [ | ||
{load_module, emqx_auth_mongo_app, brutal_purge, soft_purge, []}, | ||
{load_module, emqx_auth_mongo, brutal_purge, soft_purge, []}, | ||
{load_module, emqx_acl_mongo, brutal_purge, soft_purge, [emqx_auth_mongo]} | ||
]} | ||
{<<".*">>, []} | ||
], | ||
[ | ||
{<<".*">>, []}, | ||
{"4.2.3", [ | ||
{load_module, emqx_auth_mongo, brutal_purge, soft_purge, []} | ||
]}, | ||
{"4.2.2", [ | ||
{<<"4.2.[0-2]">>, [ | ||
{load_module, emqx_auth_mongo_app, brutal_purge, soft_purge, []}, | ||
{load_module, emqx_auth_mongo, brutal_purge, soft_purge, []}, | ||
{load_module, emqx_acl_mongo, brutal_purge, soft_purge, [emqx_auth_mongo]} | ||
]}, | ||
{"4.2.1", [ | ||
{load_module, emqx_auth_mongo_app, brutal_purge, soft_purge, []}, | ||
{load_module, emqx_auth_mongo, brutal_purge, soft_purge, []}, | ||
{load_module, emqx_acl_mongo, brutal_purge, soft_purge, [emqx_auth_mongo]} | ||
]}, | ||
{"4.2.0", [ | ||
{load_module, emqx_auth_mongo_app, brutal_purge, soft_purge, []}, | ||
{load_module, emqx_auth_mongo, brutal_purge, soft_purge, []}, | ||
{load_module, emqx_acl_mongo, brutal_purge, soft_purge, [emqx_auth_mongo]} | ||
]} | ||
{<<".*">>, []} | ||
] | ||
}. |