Skip to content

Commit

Permalink
fix(deadline); add usage-based licensing ports for new Cinema4d versi…
Browse files Browse the repository at this point in the history
…ons. (#1142)
  • Loading branch information
leongdl committed Nov 22, 2023
1 parent 333aec0 commit 213605d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ export class UsageBasedLicense {
public static forCinema4D(limit?: number): UsageBasedLicense {
return new UsageBasedLicense({
licenseName: 'cinema4d',
ports: [Port.tcp(5057), Port.tcp(7057)],
ports: [Port.tcp(5057), Port.tcp(5058), Port.tcp(7057), Port.tcp(7058)],
limit,
});
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ describe('UsageBasedLicensing', () => {
test.each([
['3dsMax', UsageBasedLicense.for3dsMax(10), [27002]],
['Arnold', UsageBasedLicense.forArnold(10), [5056, 7056]],
['Cinema4D', UsageBasedLicense.forCinema4D(10), [5057, 7057]],
['Cinema4D', UsageBasedLicense.forCinema4D(10), [5057, 5058, 7057, 7058]],
['Clarisse', UsageBasedLicense.forClarisse(10), [40500]],
['Houdini', UsageBasedLicense.forHoudini(10), [1715]],
['Katana', UsageBasedLicense.forKatana(10), [4151, 6101]],
Expand Down

0 comments on commit 213605d

Please sign in to comment.