Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 0 additions & 17 deletions apps/webapp/app/routes/api.v1.tasks.$taskId.trigger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,18 +103,6 @@ const { action, loader } = createActionApiRoute(

const oneTimeUseToken = await getOneTimeUseToken(authentication);

logger.debug("Triggering task", {
taskId: params.taskId,
idempotencyKey,
idempotencyKeyTTL,
triggerVersion,
headers,
options: body.options,
isFromWorker,
traceContext,
realtimeStreamsVersion,
});

const idempotencyKeyExpiresAt = resolveIdempotencyKeyTTL(idempotencyKeyTTL);

const result = await service.call(
Expand Down Expand Up @@ -143,11 +131,6 @@ const { action, loader } = createActionApiRoute(

const $responseHeaders = await responseHeaders(result.run, authentication);

logger.debug("responseHeaders authentication", {
authentication,
responseHeaders: $responseHeaders,
});

return json(
{
id: result.run.friendlyId,
Expand Down
2 changes: 0 additions & 2 deletions apps/webapp/app/services/apiAuth.server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -236,8 +236,6 @@ async function authenticateApiKeyWithFailure(
case "PUBLIC_JWT": {
const validationResults = await validatePublicJwtKey(result.apiKey);

logger.debug("validatePublicJwtKey", { validationResults });

if (!validationResults.ok) {
return validationResults;
}
Expand Down
2 changes: 0 additions & 2 deletions apps/webapp/app/services/realtime/jwtAuth.server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,6 @@ export async function validatePublicJwtKey(token: string): Promise<ValidatePubli
environment.parentEnvironment?.apiKey ?? environment.apiKey
);

logger.debug("validateJWT result", { result });

if (!result.ok) {
switch (result.code) {
case "ERR_JWT_EXPIRED": {
Expand Down
Loading