I got a question wrt. datahub-frontend (The docker...
# ui
c
I got a question wrt. datahub-frontend (The docker.) If I first pull:
Copy code
docker pull linkedin/datahub-frontend
and then run:
Copy code
docker run -it --env DATAHUB_SECRET=test --env DATAHUB_PLAY_MEM_BUFFER_SIZE=10mb --env DATAHUB_APP_VERSION=1.0 <http://docker.io/linkedin/datahub-frontend:latest|docker.io/linkedin/datahub-frontend:latest>
I’m getting the following error:
Copy code
4) Error injecting constructor, java.lang.NumberFormatException: null
  at controllers.api.v1.Dataset.<init>(Dataset.java:19)
  while locating controllers.api.v1.Dataset
...
Caused by: java.lang.NumberFormatException: null
Is this normal? (Due to the fact that I haven’t set up the GMS connection yet?) Just to be sure that I’m not debugging this for nothing 🙂
s
The Exception is thrown due to the reason that you did not set a number for GMS port; please inlcude -e "DATAHUB_GMS_HOST=datahub-gms" -e "DATAHUB_GMS_PORT=8080" when you docker run, so that it can find GMS when you actually have GMS running
👍 1
c
Cool, thanks! 🙂