summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Klishin <mklishin@pivotal.io>2020-08-13 17:03:10 +0300
committerGitHub <noreply@github.com>2020-08-13 17:03:10 +0300
commit57d6213545f234ec1553521bcef7a287ccb469e9 (patch)
tree6ce1286ccde7abaad9312ca0aa8471b45845a1f8 /src
parentddd40d8a04ec52fd82f30109c1bc9f91f0df0ddc (diff)
parent5d538afc6ca768a2a8610464de3bc99b6ea99a89 (diff)
downloadrabbitmq-server-git-57d6213545f234ec1553521bcef7a287ccb469e9.tar.gz
Merge pull request #2430 from mnxumalo/fix-getmetadata-function-in-vhost
Fix bug in get_metadata function in vhost.erl module.
Diffstat (limited to 'src')
-rw-r--r--src/vhost.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vhost.erl b/src/vhost.erl
index 31f30f571c..9ca1009e85 100644
--- a/src/vhost.erl
+++ b/src/vhost.erl
@@ -149,7 +149,7 @@ get_limits(VHost) -> vhost_v1:get_limits(VHost).
-spec get_metadata(vhost()) -> metadata().
get_metadata(#vhost{metadata = Value}) -> Value;
-get_metadata(VHost) -> vhost_v1:get_limits(VHost).
+get_metadata(VHost) -> vhost_v1:get_metadata(VHost).
-spec get_description(vhost()) -> binary().
get_description(#vhost{} = VHost) ->