Skip to content

Commit 386ae27

Browse files
authored
Merge pull request #1 from SAP/master
Update
2 parents a62253f + a26203a commit 386ae27

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/dashboard-client/src/models/Job.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -359,14 +359,13 @@ export default class Job {
359359
} else {
360360
name += '1'
361361
}
362-
363362
router.push({
364363
name: 'JobDetail',
365364
params: {
366365
projectName: encodeURIComponent(this.project.name),
367366
buildNumber: this.build.number,
368367
buildRestartCounter: this.build.restartCounter,
369-
jobName: encodeURIComponent(name)
368+
jobName: name
370369
}
371370
})
372371
})

src/services/aks/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,9 @@ ENV PATH $PATH:/usr/local/bin
1717

1818
RUN \
1919
apk update && \
20-
apk add bash py-pip && \
20+
apk add bash py-pip libssl1.0 && \
2121
apk add --virtual=build linux-headers gcc libffi-dev musl-dev openssl-dev python-dev make && \
22+
pip install -U pip && \
2223
pip install azure-cli && \
2324
apk del --purge build && \
2425
az aks install-cli

0 commit comments

Comments
 (0)