Skip to content

Commit

Permalink
remove console.log and add toUpperCase on streamName to match always …
Browse files Browse the repository at this point in the history
…uppercase asset name
  • Loading branch information
mmcallister-cll committed Sep 28, 2024
1 parent 4e11e3f commit 56fb9b2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/sources/tp/src/endpoint/price.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,8 @@ export const priceEndpoint = new PriceEndpoint({
// use query param streamName as replacement due to combination
const rq = req.query as QueryParams
if (rq.streamName) {
req.requestContext.data.streamName = rq.streamName
req.requestContext.data.streamName = rq.streamName.toUpperCase()
}
console.log(req.requestContext)
},
],
})

0 comments on commit 56fb9b2

Please sign in to comment.