File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/main/scala/com/ing/wbaa/rokku/proxy/queue Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 5
5
- master
6
6
jobs:
7
7
it-test:
8
- runs-on: ubuntu-latest
8
+ runs-on: ubuntu-18.04
9
9
steps:
10
10
- name: Checkout
11
11
uses: actions/checkout@v1
18
18
- name: "Starting dependent containers for testing"
19
19
run: docker-compose up -d keycloak ceph postgres-server mariadb ranger-admin rokku-sts cassandra
20
20
- name: "Install aws cli"
21
- run: pip install --user awscli
21
+ run: pip install --user awscli==1.18.222
22
22
- name: "Compile the project while containers are starting up"
23
23
run: sbt clean compile
24
24
- name: "Wait for containers to be up and running"
Original file line number Diff line number Diff line change @@ -82,6 +82,6 @@ trait MemoryUserRequestQueue extends UserRequestQueue {
82
82
}
83
83
84
84
private def metricName(user: User): String = {
85
- MetricsFactory.REQUEST_QUEUE_OCCUPIED_BY_USER.replace(MetricsFactory.REQUEST_USER, s"${ user.userName.value.head.toString}.." )
85
+ MetricsFactory.REQUEST_QUEUE_OCCUPIED_BY_USER.replace(MetricsFactory.REQUEST_USER, user.userName.value)
86
86
}
87
87
}
You can’t perform that action at this time.
0 commit comments