Skip to content

Commit

Permalink
refactor: change port key value
Browse files Browse the repository at this point in the history
  • Loading branch information
abhiyana committed Oct 31, 2023
1 parent 51e21da commit b913566
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions parachain/mangata.star
Original file line number Diff line number Diff line change
@@ -1,17 +1,23 @@
def run_mangata(plan):
exec_command = ["--chain=rococo-local", "--rpc-external", "--rpc-cors=all", "--rpc-methods=unsafe", "--tmp", "--", "--chain=/app/rococo-local.json", "--execution=wasm"]
exec_command = [
"--chain=rococo-local",
"--rpc-external",
"--rpc-cors=all",
"--rpc-methods=unsafe",
"--unsafe-ws-external",
"--tmp",
"--",
"--chain=/app/rococo-local.json",
"--execution=wasm"
]
mangata_service_config = ServiceConfig(
image = "mangatasolutions/mangata-node:ci-e2e-jobs-fix-MGX-785-fast",
files = {
"/app": "configs",
},
ports = {
"9944": PortSpec(9944, transport_protocol = "TCP"),
"9933": PortSpec(9933, transport_protocol = "TCP"),
},
public_ports = {
"9944": PortSpec(9432, transport_protocol = "TCP"),
"9933": PortSpec(9431, transport_protocol = "TCP"),
"ws": PortSpec(9944, transport_protocol = "TCP"),
"tcp": PortSpec(9933, transport_protocol = "TCP"),
},
cmd = exec_command,
)
Expand Down

0 comments on commit b913566

Please sign in to comment.