UI does not escape dataset name in GET request
See original GitHub issueI got:
Something went wrong while fetching dataset runs
Seems like this request:
http://localhost:3000/api/v1/namespaces/default/datasets/file:/Users/foo/projects/spline-spark-agent/examples/data/output/batch/job1_results/versions?limit=100&offset=0
should be escaped like this:
localhost:3000/api/v1/namespaces/default/datasets/file%3A%2FUsers%2Ffoo%2Fprojects%2Fspline-spark-agent%2Fexamples%2Fdata%2Foutput%2Fbatch%2Fjob1_results/versions?limit=100&offset=0
This happens in job graph when I click on dataset node.
Issue Analytics
- State:
- Created 2 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
GET request works in browser but not in POSTMAN or SOAPUI
It is working from my browser exactly when I provide the user name and password in the prompt window. I resolved it by...
Read more >Using URL encoding to handle special characters in a ...
The <space> character needs to be encoded because it is not a valid URL ... properly - for example, the associated GET request...
Read more >Copy and transform data from and to a REST endpoint - Azure ...
Learn how to use Copy Activity to copy data and use Data Flow to transform data from a cloud or on-premises REST source...
Read more >Working with SoapUI | Preferences
Learn how to set up SoapUI just the way you need it with our preference guide. Read more now!
Read more >Sending HTTP Requests | Using Internet Utility Classes
ProxyServer specifies the host name of the proxy server to use. If this property is not null, the HTTP request is directed to...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

@phixMe, looks like we may have missed escaping some calls in the UI?
I was running Marquez using
./docker/up.shin that version (I don’t know which one is it by default) the bug is present.Using
./docker/up.sh --buildin the current main branch the bug is fixed.So it seems to be fixed in the main branch and this ticket can be probably closed.