Details
-
Bug
-
Status: Resolved
-
Critical
-
Resolution: Fixed
-
0.4
-
None
-
None
Description
I think I introduced this in FALCON-85. I was testing with relative URLs in feed and process definitions and it started failing with malformed URI.
Workflow failed, error message[IOException: E0902: Exception occured: [Incomplete HDFS URI, no host: hdfs://venkatesh-secure-falcon-1.cs1cloud.internal:8020falcon/demo/apps/ingest/fs
This is a simple line change:
return storageUrl + new Path(locationForType.getPath());
to
return new Path(storageUrl + "/" + locationForType.getPath()).toString();