mirror of
https://github.com/valitydev/party-management.git
synced 2024-11-06 01:05:21 +00:00
HG-339: Introduce partial refunds (#187)
* HG-339: Introduce partial refunds (#176) * HG-339: Enrich refund with payment cash for old events (#177) * HG-341: Introduce provision and service terms for partial refunds (#180) * HG-348: Make refund id using sequences service (#186) * HG-348: Make refund id using sequences service * HG-348: Bump to rbkmoney/scoper@cbe3abc * HG-339: rebar.config fixed * HG-339: seq_proto -> hg_proto.app.src (#188) * HG-339: Cant start simultaneous partial refunds (#189) * HG-339: Bump rbkmoney/damsel@349d26c, Bump rbkmoney/dominant@007326a
This commit is contained in:
parent
f0e9a07d63
commit
3268282848
@ -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 => #{
|
||||
|
@ -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
|
||||
|
@ -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, [
|
||||
|
@ -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",
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user