diff options
| author | Mthulisi Nxumalo <mnxumalo@gmail.com> | 2020-08-13 15:38:40 +0200 |
|---|---|---|
| committer | Mthulisi Nxumalo <mnxumalo@gmail.com> | 2020-08-13 15:38:40 +0200 |
| commit | 5d538afc6ca768a2a8610464de3bc99b6ea99a89 (patch) | |
| tree | 6ce1286ccde7abaad9312ca0aa8471b45845a1f8 | |
| parent | ddd40d8a04ec52fd82f30109c1bc9f91f0df0ddc (diff) | |
| download | rabbitmq-server-git-5d538afc6ca768a2a8610464de3bc99b6ea99a89.tar.gz | |
Fix bug in get_metadata function in vhost.erl module.
| -rw-r--r-- | src/vhost.erl | 2 |
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) -> |
