Skip to content

Commit

Permalink
feat #OBS-I501 user token fix
Browse files Browse the repository at this point in the history
  • Loading branch information
HarishGangula committed Jan 15, 2025
1 parent c51774b commit 3ddf7c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api-service/src/controllers/DatasetReset/DatasetReset.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const datasetReset = async (req: Request, res: Response) => {

const category = _.get(req, ["body", "request", "category"]);
const datasetId = _.get(req, ["params"," dataset_id"]);

const userToken = req.get('authorization') as string;
await validateRequest(req);
if (category == "processing") {
const pipeLineStatus = await getFlinkHealthStatus()
Expand Down

0 comments on commit 3ddf7c7

Please sign in to comment.