Skip to content

Commit

Permalink
Fix CHC configuration case when no entry points are given
Browse files Browse the repository at this point in the history
  • Loading branch information
davidjwbbc committed Apr 27, 2023
1 parent aaf3a7f commit 23fcf03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/python3/lib/rt_m1_client/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ async def createNewDownlinkPullStream(self, ingesturl: str, app_id: ApplicationI
},
'distributionConfigurations': []
}
if entrypoints is None:
if entrypoints is None or len(entrypoints) == 0:
entrypoints = [None]
for ep in entrypoints:
if ssl and cert is not None:
Expand Down

0 comments on commit 23fcf03

Please sign in to comment.