We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43b85aa commit 9e45797Copy full SHA for 9e45797
1 file changed
packages/microservices/utils/msvc.util.ts
@@ -30,7 +30,7 @@ export class MsvcUtil {
30
31
// Creates the array of Pattern params from sorted keys and their corresponding values
32
const sortedPatternParams = sortedKeys.map((key) =>
33
- `${key}:${pattern[key]}`);
+ `${key}:${MsvcUtil.transformPatternToRoute(pattern[key])}`);
34
35
// Creates and returns the Route
36
const sortedPattern = sortedPatternParams.join('/');
0 commit comments