Skip to content

Commit

Permalink
or string
Browse files Browse the repository at this point in the history
Signed-off-by: Tyler Smalley <tyler.smalley@elastic.co>
  • Loading branch information
Tyler Smalley committed Oct 21, 2020
1 parent 55be048 commit af7f0bd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/kbn-apm-config-loader/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,10 +148,10 @@ export class ApmConfiguration {

return {
globalLabels: {
branchName: process.env.BRANCH_NAME,
targetBranch: process.env.ghprbTargetBranch,
ciJobName: process.env.JOB_NAME,
ciBuildNumber: process.env.BUILD_NUMBER,
branchName: process.env.BRANCH_NAME || '',
targetBranch: process.env.ghprbTargetBranch || '',
ciJobName: process.env.JOB_NAME || '',
ciBuildNumber: process.env.BUILD_NUMBER || '',
},
};
}
Expand Down

0 comments on commit af7f0bd

Please sign in to comment.