Skip to content

Commit

Permalink
fix(deadline): Incorrect Usage Based Licensing ports for Katana and M…
Browse files Browse the repository at this point in the history
…axwell.
  • Loading branch information
Daniel Neilson committed Oct 22, 2020
1 parent 90c83a4 commit e648711
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/aws-rfdk/lib/deadline/lib/usage-based-licensing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ export class UsageBasedLicense {
public static forKatana(limit?: number): UsageBasedLicense {
return new UsageBasedLicense({
licenseName: 'katana',
ports: [Port.tcp(4101), Port.tcp(6101)],
ports: [Port.tcp(4151), Port.tcp(6101)],
limit,
});
}
Expand Down Expand Up @@ -229,7 +229,7 @@ export class UsageBasedLicense {
public static forMaxwell(limit?: number): UsageBasedLicense {
return new UsageBasedLicense({
licenseName: 'maxwell',
ports: [Port.tcp(5055), Port.tcp(7055)],
ports: [Port.tcp(5555), Port.tcp(7055)],
limit,
});
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -489,11 +489,11 @@ describe('UsageBasedLicensing', () => {
['Cinema4D', UsageBasedLicense.forCinema4D(10), [5057, 7057]],
['Clarisse', UsageBasedLicense.forClarisse(10), [40500]],
['Houdini', UsageBasedLicense.forHoudini(10), [1715]],
['Katana', UsageBasedLicense.forKatana(10), [4101, 6101]],
['Katana', UsageBasedLicense.forKatana(10), [4151, 6101]],
['KeyShot', UsageBasedLicense.forKeyShot(10), [27003, 2703]],
['Krakatoa', UsageBasedLicense.forKrakatoa(10), [27000, 2700]],
['Mantra', UsageBasedLicense.forMantra(10), [1716]],
['Maxwell', UsageBasedLicense.forMaxwell(10), [5055, 7055]],
['Maxwell', UsageBasedLicense.forMaxwell(10), [5555, 7055]],
['Maya', UsageBasedLicense.forMaya(10), [27002, 2702]],
['Nuke', UsageBasedLicense.forNuke(10), [4101, 6101]],
['RealFlow', UsageBasedLicense.forRealFlow(10), [5055, 7055]],
Expand Down

0 comments on commit e648711

Please sign in to comment.