Skip to content

Commit

Permalink
Fix log link
Browse files Browse the repository at this point in the history
  • Loading branch information
ggodlewski committed Sep 24, 2023
1 parent 460c9e7 commit f091b75
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/containers/job/JobManagerContainer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ export class JobManagerContainer extends Container {
type: 'upload:failed',
err: err.message,
links: {
'#drive_logs': 'View logs'
['#drive_logs:' + currentJob.id]: 'View logs'
},
});
}
Expand All @@ -372,7 +372,7 @@ export class JobManagerContainer extends Container {
type: 'git_reset:failed',
err: err.message,
links: {
'#drive_logs': 'View logs'
['#drive_logs:' + currentJob.id]: 'View logs'
},
});
}
Expand All @@ -383,7 +383,7 @@ export class JobManagerContainer extends Container {
type: 'git_commit:failed',
err: err.message,
links: {
'#drive_logs': 'View logs'
['#drive_logs:' + currentJob.id]: 'View logs'
},
});
}
Expand All @@ -394,7 +394,7 @@ export class JobManagerContainer extends Container {
type: 'git_push:failed',
err: err.message,
links: {
'#drive_logs': 'View logs'
['#drive_logs:' + currentJob.id]: 'View logs'
},
});
}
Expand All @@ -406,7 +406,7 @@ export class JobManagerContainer extends Container {
type: 'sync:failed',
err: err.message,
links: {
'#drive_logs': 'View logs'
['#drive_logs:' + currentJob.id]: 'View logs'
},
payload: 'all'
});
Expand Down Expand Up @@ -802,7 +802,7 @@ export class JobManagerContainer extends Container {
type: 'transform:failed',
err: err.message,
links: {
'#drive_logs': 'View logs'
['#drive_logs:' + currentJob.id]: 'View logs'
},
payload: currentJob.payload || 'all'
});
Expand All @@ -824,7 +824,7 @@ export class JobManagerContainer extends Container {
type: 'run_action:failed',
err: err.message,
links: {
'#drive_logs': 'View logs'
['#drive_logs:' + currentJob.id]: 'View logs'
}
});
throw err;
Expand Down Expand Up @@ -857,7 +857,7 @@ export class JobManagerContainer extends Container {
type: 'git_pull:failed',
err: err.message,
links: {
'#drive_logs': 'View logs'
['#drive_logs:' + currentJob.id]: 'View logs'
},
});
throw err;
Expand Down

0 comments on commit f091b75

Please sign in to comment.