Commit b8096882 authored by Sebastien Merle's avatar Sebastien Merle
Browse files

te: Fix dependencies

parent 8bcedb8d
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -35,6 +35,7 @@ FROM alpine
# Install some libs
RUN apk add --no-cache libgcc libstdc++ && \
    apk add --no-cache openssl && \
    apk add --no-cache libcrypto1.1 && \
    apk add --no-cache ncurses-libs

# Install the released application
+2 −1
Original line number Diff line number Diff line
@@ -234,7 +234,8 @@ compute_path(From, To) ->
            logger:debug("Route from ~p to ~p: ~p", [From, To, Labels]),
            {ok, Labels};
        {error, Reason} ->
            logger:warning("Failed to find a route from ~p to ~p", [From, To]),
            logger:warning("Failed to find a route from ~p to ~p: ~p",
                           [From, To, Reason]),
            {error, route_not_found}
    end.

+1 −1
Original line number Diff line number Diff line
@@ -57,7 +57,7 @@ add_services([{Name, EndpointsSpecs, GrpcOpts} | Rest]) ->
            end
    catch
        throw:{Name, Reason, Extra} ->
            ?LOG_WARNING("Failed to resolve ~s service configuration: ~s ~p ~p",
            ?LOG_WARNING("Failed to resolve ~s service configuration: ~s ~p",
                         [Name, Reason, Extra])
    end,
    add_services(Rest).
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@

{deps, [
    grpcbox,
    {pcep_server, {git, "git@github.com:stritzinger/pcep_server.git", {branch, "master"}}}
    {pcep_server, {git, "https://github.com/stritzinger/pcep_server.git", {branch, "master"}}}
]}.

{shell, [
+5 −5
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
[{<<"acceptor_pool">>,{pkg,<<"acceptor_pool">>,<<"1.0.0">>},1},
 {<<"chatterbox">>,{pkg,<<"ts_chatterbox">>,<<"0.12.0">>},1},
 {<<"codec_sequencer">>,
  {git,"git@github.com:stritzinger/codec_sequencer.git",
  {git,"https://github.com/stritzinger/codec_sequencer.git",
       {ref,"fc8760894f7962ef1497bf6ce4247eb75db9d5ca"}},
  2},
 {<<"ctx">>,{pkg,<<"ctx">>,<<"0.6.0">>},1},
@@ -10,12 +10,12 @@
 {<<"grpcbox">>,{pkg,<<"grpcbox">>,<<"0.15.0">>},0},
 {<<"hpack">>,{pkg,<<"hpack_erl">>,<<"0.2.3">>},2},
 {<<"pcep_codec">>,
  {git,"git@github.com:stritzinger/pcep_codec.git",
       {ref,"84dcc430b2aa427984c100cc19dd35d946b22ff9"}},
  {git,"https://github.com/stritzinger/pcep_codec.git",
       {ref,"ca5eb0822d9971ec4bcfb427a49b2e516081a126"}},
  1},
 {<<"pcep_server">>,
  {git,"git@github.com:stritzinger/pcep_server.git",
       {ref,"3910bf5546879cb91a3483008b6aed11753deaa6"}},
  {git,"https://github.com/stritzinger/pcep_server.git",
       {ref,"ea751fa807f4c1f5635f781431fe384610166b0a"}},
  0},
 {<<"ranch">>,{pkg,<<"ranch">>,<<"2.0.0">>},1}]}.
[
Loading