• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

emqx / emqx / 13500664723

24 Feb 2025 02:42PM UTC coverage: 83.315%. First build
13500664723

Pull #14765

github

web-flow
Merge 74cfe4e65 into 79ac357c9
Pull Request #14765: fix(sqlserver): try to infer connected instance name

47 of 55 new or added lines in 1 file covered. (85.45%)

61236 of 73499 relevant lines covered (83.32%)

16157.46 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/apps/emqx_auth/src/emqx_authz/emqx_authz_app.erl
1
%%--------------------------------------------------------------------
2
%% Copyright (c) 2020-2025 EMQ Technologies Co., Ltd. All Rights Reserved.
3
%%
4
%% Licensed under the Apache License, Version 2.0 (the "License");
5
%% you may not use this file except in compliance with the License.
6
%% You may obtain a copy of the License at
7
%%
8
%%     http://www.apache.org/licenses/LICENSE-2.0
9
%%
10
%% Unless required by applicable law or agreed to in writing, software
11
%% distributed under the License is distributed on an "AS IS" BASIS,
12
%% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
%% See the License for the specific language governing permissions and
14
%% limitations under the License.
15
%%--------------------------------------------------------------------
16

17
%%%-------------------------------------------------------------------
18
%% @doc emqx_authz public API
19
%% @end
20
%%%-------------------------------------------------------------------
21

22
%% TODO: delete this module
23

24
-module(emqx_authz_app).
25

26
-behaviour(application).
27

28
-export([start/2, stop/1]).
29

30
start(_StartType, _StartArgs) ->
31
    ok = emqx_authz_mnesia:init_tables(),
×
32
    {ok, Sup} = emqx_authz_sup:start_link(),
×
33
    ok = emqx_authz:init(),
×
34
    {ok, Sup}.
×
35

36
stop(_State) ->
37
    ok = emqx_authz:deinit(),
×
38
    ok.
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc