Skip to content

Commit

Permalink
Merge pull request #3723 from uselagoon/route-quota-value
Browse files Browse the repository at this point in the history
fix: remove errant quotes in variable value for route quota
  • Loading branch information
tobybellwood committed May 17, 2024
2 parents 89e425a + daaf1b3 commit 085cd83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node-packages/commons/src/tasks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -745,7 +745,7 @@ export const getEnvironmentsRouterPatternAndVariables = async function name(
...projectVars,
{
name: "LAGOON_ROUTE_QUOTA",
value: `"${curOrg.quotaRoute}"`,
value: `${curOrg.quotaRoute}`,
scope: InternalEnvVariableScope.INTERNAL_SYSTEM
}
];
Expand Down

0 comments on commit 085cd83

Please sign in to comment.