Nick Schenone

Results 2 comments of Nick Schenone

The following resolves the issue: ```python serving_fn.set_env("MLRUN_DBPATH", "http://host.docker.internal:8080/") serving_fn.spec.volumes = [{'name': 'mlrun-data-mount', 'hostPath': {'path': '/Users/nick/mlrun-data'}}] serving_fn.spec.volume_mounts = [{'name': 'mlrun-data-mount', 'mountPath': '/home/jovyan/data'}] ``` This is assuming running in Jupyter and on...

I ran into the same thing. Looks like the program hits an error and exits without displaying anything. Check the output of `activity.log`. In my case, the issue was that...