|
9 | 9 | %%%
|
10 | 10 | %%% MIT License
|
11 | 11 | %%%
|
12 |
| -%%% Copyright (c) 2012-2018 Michael Truog <mjtruog at protonmail dot com> |
| 12 | +%%% Copyright (c) 2012-2019 Michael Truog <mjtruog at protonmail dot com> |
13 | 13 | %%%
|
14 | 14 | %%% Permission is hereby granted, free of charge, to any person obtaining a
|
15 | 15 | %%% copy of this software and associated documentation files (the "Software"),
|
|
30 | 30 | %%% DEALINGS IN THE SOFTWARE.
|
31 | 31 | %%%
|
32 | 32 | %%% @author Michael Truog <mjtruog at protonmail dot com>
|
33 |
| -%%% @copyright 2012-2018 Michael Truog |
34 |
| -%%% @version 1.7.5 {@date} {@time} |
| 33 | +%%% @copyright 2012-2019 Michael Truog |
| 34 | +%%% @version 1.8.0 {@date} {@time} |
35 | 35 | %%%------------------------------------------------------------------------
|
36 | 36 |
|
37 | 37 | -module(cloudi_service_http_cowboy1).
|
|
44 | 44 |
|
45 | 45 | %% cloudi_service callbacks
|
46 | 46 | -export([cloudi_service_init/4,
|
47 |
| - cloudi_service_handle_request/11, |
48 | 47 | cloudi_service_handle_info/3,
|
49 | 48 | cloudi_service_terminate/3]).
|
50 | 49 |
|
@@ -505,11 +504,6 @@ cloudi_service_init(Args, Prefix, _Timeout, Dispatcher) ->
|
505 | 504 | service = Service,
|
506 | 505 | handler_state = HandlerState}}.
|
507 | 506 |
|
508 |
| -cloudi_service_handle_request(_Type, _Name, _Pattern, _RequestInfo, _Request, |
509 |
| - _Timeout, _Priority, _TransId, _Pid, |
510 |
| - State, _Dispatcher) -> |
511 |
| - {reply, <<>>, State}. |
512 |
| - |
513 | 507 | cloudi_service_handle_info({update, UpdateDelaySeconds},
|
514 | 508 | #state{service = Service,
|
515 | 509 | handler_state = HandlerState} = State,
|
|
0 commit comments