Skip to content

Commit 6fb175f

Browse files
committed
fix debug
1 parent a2b51a3 commit 6fb175f

File tree

7 files changed

+13
-20
lines changed

7 files changed

+13
-20
lines changed

mrt-services/debug-audit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ services:
99
- published: 8000
1010
target: 8000
1111
environment:
12-
JPDA_ADDRESS: 8000
12+
JPDA_ADDRESS: "*:8000"
1313
JPDA_TRANSPORT: dt_socket
1414
entrypoint: ["catalina.sh", "jpda", "run"]

mrt-services/debug-ingest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ services:
99
- published: 8000
1010
target: 8000
1111
environment:
12-
JPDA_ADDRESS: 8000
12+
JPDA_ADDRESS: "*:8000"
1313
JPDA_TRANSPORT: dt_socket
1414
entrypoint: ["catalina.sh", "jpda", "run"]

mrt-services/debug-inventory.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ services:
99
- published: 8000
1010
target: 8000
1111
environment:
12-
JPDA_ADDRESS: 8000
12+
JPDA_ADDRESS: "*:8000"
1313
JPDA_TRANSPORT: dt_socket
1414
entrypoint: ["catalina.sh", "jpda", "run"]

mrt-services/debug-oai.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

mrt-services/debug-replic.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ services:
99
- published: 8000
1010
target: 8000
1111
environment:
12-
JPDA_ADDRESS: 8000
12+
JPDA_ADDRESS: "*:8000"
1313
JPDA_TRANSPORT: dt_socket
1414
entrypoint: ["catalina.sh", "jpda", "run"]

mrt-services/debug-storage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ services:
99
- published: 8000
1010
target: 8000
1111
environment:
12-
JPDA_ADDRESS: 8000
12+
JPDA_ADDRESS: "*:8000"
1313
JPDA_TRANSPORT: dt_socket
1414
entrypoint: ["catalina.sh", "jpda", "run"]

mrt-services/ingest/Dockerfile

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,14 @@ WORKDIR /build/mrt-ingest
1515

1616
ADD mrt-ingest /build/mrt-ingest
1717

18-
RUN sed -i -e "s/\${ConsumerDaemon}/1/" ingest-war/src/main/webapp/WEB-INF/web.xml
18+
RUN sed -i -e "s/\${BatchConsumerDaemon}/1/" ingest-war/src/main/webapp/WEB-INF/web.xml && \
19+
sed -i -e "s/\${BatchReportConsumerDaemon}/1/" ingest-war/src/main/webapp/WEB-INF/web.xml && \
20+
sed -i -e "s/\${EstimateConsumerDaemon}/1/" ingest-war/src/main/webapp/WEB-INF/web.xml && \
21+
sed -i -e "s/\${ProvisionConsumerDaemon}/1/" ingest-war/src/main/webapp/WEB-INF/web.xml && \
22+
sed -i -e "s/\${DownloadConsumerDaemon}/1/" ingest-war/src/main/webapp/WEB-INF/web.xml && \
23+
sed -i -e "s/\${ProcessConsumerDaemon}/1/" ingest-war/src/main/webapp/WEB-INF/web.xml && \
24+
sed -i -e "s/\${RecordConsumerDaemon}/1/" ingest-war/src/main/webapp/WEB-INF/web.xml && \
25+
sed -i -e "s/\${NotifyConsumerDaemon}/1/" ingest-war/src/main/webapp/WEB-INF/web.xml
1926

2027
RUN mvn -ntp install -Denforcer.skip=true -Dskip.surefire.tests -DskipITs -Ddocker.skip && \
2128
date -r ingest-src/target +'mrt-ingest: %Y-%m-%d:%H:%M:%S' >> /build/static/build.content.txt && \

0 commit comments

Comments
 (0)