Skip to content

Commit

Permalink
Merge branch 'main' into fix/root-params
Browse files Browse the repository at this point in the history
  • Loading branch information
barnabasbusa authored Sep 26, 2024
2 parents 5af10a1 + a7d72da commit 35f2d51
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ jobs:
matrix:
file_name: ${{ fromJson(needs.list-yamls.outputs.matrix) }}
runs-on: ubuntu-latest
continue-on-error: true
steps:
- name: Checkout Repository
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion src/package_io/input_parser.star
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def parse_network_params(plan, input_args):
fail("Network id {0} is duplicated".format(network_id))

participants = []
for i, p in enumerate(chain["participants"]):
for i, p in enumerate(chain.get("participants", [default_participant()])):
participant = default_participant()
participant.update(p)

Expand Down

0 comments on commit 35f2d51

Please sign in to comment.