File tree Expand file tree Collapse file tree 6 files changed +291
-158
lines changed
Expand file tree Collapse file tree 6 files changed +291
-158
lines changed Original file line number Diff line number Diff line change @@ -35,13 +35,10 @@ jobs:
3535 working-directory : ./microservices/user
3636
3737 env :
38- MINOS_EVENTS_QUEUE_HOST : postgres
39- MINOS_EVENTS_BROKER : kafka
40- MINOS_COMMANDS_QUEUE_HOST : postgres
41- MINOS_COMMANDS_BROKER : kafka
4238 MINOS_REPOSITORY_HOST : postgres
4339 MINOS_SNAPSHOT_HOST : postgres
44- MINOS_SAGA_QUEUE_HOST : postgres
40+ MINOS_BROKER_QUEUE_HOST : postgres
41+ MINOS_BROKER_HOST : kafka
4542
4643 steps :
4744 - name : Check out repository code
Original file line number Diff line number Diff line change 44 command_broker : minos.networks.CommandBroker
55 command_reply_broker : minos.networks.CommandReplyBroker
66 event_broker : minos.networks.EventBroker
7+ reply_pool : minos.networks.ReplyHandlerPool
78 repository : minos.common.PostgreSqlRepository
89 saga_manager : minos.saga.SagaManager
910 snapshot : minos.common.PostgreSqlSnapshot
@@ -21,12 +22,17 @@ service:
2122rest :
2223 host : 0.0.0.0
2324 port : 8086
24- endpoints :
25- - route : /users
26- method : POST
27- controller : src.UserCommandService
28- action : create_user
29- name : " "
25+ broker :
26+ host : localhost
27+ port : 9092
28+ queue :
29+ database : user_db
30+ user : minos
31+ password : min0s
32+ host : localhost
33+ port : 5432
34+ records : 10
35+ retry : 2
3036repository :
3137 database : user_db
3238 user : minos
@@ -40,46 +46,15 @@ snapshot:
4046 host : localhost
4147 port : 5432
4248events :
43- broker : localhost
44- port : 9092
45- queue :
46- database : user_db
47- user : minos
48- password : min0s
49- host : localhost
50- port : 5432
51- records : 10
52- retry : 2
53- items : []
49+ service :
50+ queries :
51+ service :
5452commands :
55- broker : localhost
56- port : 9092
57- items :
58- - name : CreateUser
59- controller : src.UserCommandService
60- action : create_user
61- queue :
62- database : user_db
63- user : minos
64- password : min0s
65- host : localhost
66- port : 5432
67- records : 10
68- retry : 2
53+ service : src.UserCommandService
6954saga :
70- broker : localhost
71- port : 9092
7255 storage :
7356 path : " ./user.lmdb"
7457 items : []
75- queue :
76- database : user_db
77- user : minos
78- password : min0s
79- host : localhost
80- port : 5432
81- records : 10
82- retry : 2
8358discovery :
8459 host : localhost
8560 port : 5567
You can’t perform that action at this time.
0 commit comments