Skip to content

Commit ca8736a

Browse files
committed
Debugging...add a left handler,
and run only the team assignment.
1 parent 54c3644 commit ca8736a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.ci/Jenkinsfile_coverage

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ kibanaPipeline(timeoutMinutes: 240) {
1212
]) {
1313
workers.base(name: 'coverage-worker', size: 'l', ramDisk: false, bootstrapped: false) {
1414
catchError {
15-
kibanaCoverage.runTests()
15+
// kibanaCoverage.runTests()
1616
kibanaTeamAssign.load('team_assignment', "### Upload Team Assignment JSON")
17-
handleIngestion(TIME_STAMP)
17+
// handleIngestion(TIME_STAMP)
1818
}
1919
handleFail()
2020
}

src/dev/code_coverage/ingest_coverage/team_assignment/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
import { run } from '@kbn/dev-utils';
2121
import { TEAM_ASSIGNMENT_PIPELINE_NAME } from '../constants';
2222
import { fetch } from './get_data';
23-
import { noop } from '../utils';
23+
// import { noop } from '../utils';
2424
import { update } from './update_ingest_pipeline';
2525

2626
export const uploadTeamAssignmentJson = () => run(execute, { description });
@@ -30,7 +30,7 @@ const updatePipeline = update(TEAM_ASSIGNMENT_PIPELINE_NAME);
3030
function execute({ flags, log }) {
3131
if (flags.verbose) log.verbose(`### Verbose logging enabled`);
3232

33-
fetch().fold(noop, updatePipeline(log));
33+
fetch().fold((leftX) => log.error(`\n### Left: ${leftX}`), updatePipeline(log));
3434
}
3535

3636
function description() {

0 commit comments

Comments
 (0)