diff --git a/config/sys.config b/config/sys.config index fdeddae..d7e53d9 100644 --- a/config/sys.config +++ b/config/sys.config @@ -30,7 +30,8 @@ party_management => <<"http://hellgate:8022/v1/processing/partymgmt">>, customer_management => <<"http://hellgate:8022/v1/processing/customer_management">>, % TODO make more consistent - recurrent_paytool => <<"http://hellgate:8022/v1/processing/recpaytool">> + recurrent_paytool => <<"http://hellgate:8022/v1/processing/recpaytool">>, + sequences => <<"http://sequences:8022/v1/sequences">> }}, {proxy_opts, #{ transport_opts => #{ diff --git a/docker-compose.sh b/docker-compose.sh index 209f026..ee66a55 100755 --- a/docker-compose.sh +++ b/docker-compose.sh @@ -17,12 +17,19 @@ services: condition: service_healthy dominant: - image: dr.rbkmoney.com/rbkmoney/dominant:5356cc29e2e526316dd7d57a9c854b0e49bc2848 + image: dr.rbkmoney.com/rbkmoney/dominant:007326a22c31b15a32beb72ce4f134fec39d0026 command: /opt/dominant/bin/dominant foreground depends_on: machinegun: condition: service_healthy + sequences: + image: dr.rbkmoney.com/rbkmoney/sequences:727c81115f861dc3d9b80c0e06e64d27728d447f + command: /opt/sequences/bin/sequences foreground + depends_on: + machinegun: + condition: service_healthy + machinegun: image: dr.rbkmoney.com/rbkmoney/machinegun:1844dff663c24acdcd32f30ae3ea208f5d05a008 command: /opt/machinegun/bin/machinegun foreground diff --git a/rebar.config b/rebar.config index 66005d0..41d48a7 100644 --- a/rebar.config +++ b/rebar.config @@ -39,9 +39,10 @@ {branch, "master"} } }, - {dmsl , {git, "git@github.com:rbkmoney/damsel.git" , {branch, "release/erlang/master"}}}, + {dmsl , {git, "git@github.com:rbkmoney/damsel.git", {branch, "release/erlang/master"}}}, {payproc_errors, {git, "git@github.com:rbkmoney/payproc-errors-erlang.git", {branch, "master"}}}, {mg_proto , {git, "git@github.com:rbkmoney/machinegun_proto.git" , {branch, "master"}}}, + {seq_proto , {git, "git@github.com:rbkmoney/sequences-proto.git" , {branch, "master"}}}, {dmt_client , {git, "git@github.com:rbkmoney/dmt_client.git" , {branch, "master"}}}, {scoper , {git, "git@github.com:rbkmoney/scoper.git" , {branch, "master"}}} ]}. @@ -77,7 +78,7 @@ unknown ]}, {plt_apps, all_deps}, - {plt_extra_apps, [mg_proto]} + {plt_extra_apps, [mg_proto, seq_proto]} ]}. {profiles, [ diff --git a/rebar.lock b/rebar.lock index 1de72e3..ca3bcdb 100644 --- a/rebar.lock +++ b/rebar.lock @@ -4,7 +4,7 @@ {<<"cowlib">>,{pkg,<<"cowlib">>,<<"1.0.2">>},2}, {<<"dmsl">>, {git,"git@github.com:rbkmoney/damsel.git", - {ref,"b4efb07eb23d94c464ce6e45ae0f85c5a53b929f"}}, + {ref,"349d26ca59852106e223d95e4f60e7dac7d4ec5d"}}, 0}, {<<"dmt_client">>, {git,"git@github.com:rbkmoney/dmt_client.git", @@ -42,7 +42,11 @@ {<<"rfc3339">>,{pkg,<<"rfc3339">>,<<"0.9.0">>},0}, {<<"scoper">>, {git,"git@github.com:rbkmoney/scoper.git", - {ref,"802057089bac258f45e35263eb2223961618468d"}}, + {ref,"cbe3abc4a66ca1f9121083f2bea603c44dcf1984"}}, + 0}, + {<<"seq_proto">>, + {git,"git@github.com:rbkmoney/sequences-proto.git", + {ref,"f307d38438f80fd1ef3528432b8e55a9f0ff2b6d"}}, 0}, {<<"snowflake">>, {git,"https://github.com/rbkmoney/snowflake.git", diff --git a/test/machinegun/config.yaml b/test/machinegun/config.yaml index 1597724..dcae905 100644 --- a/test/machinegun/config.yaml +++ b/test/machinegun/config.yaml @@ -22,5 +22,8 @@ namespaces: domain-config: processor: url: http://dominant:8022/v1/stateproc + sequences: + processor: + url: http://sequences:8022/v1/stateproc storage: type: memory