I'm attempting to modify parameters used to configure a HDP extension. How do I clear the stored values and configuration that I've previously created? I'm trying the following, but it seems as if the values are persisting. For example, If I change the 10th parameter from string to boolean, I get an exception due to the prior type being a string for the same parameter index.
Parameters.Clear();
Configuration = Parameters.Persist();
Ideally, I would like to clear all prior saved parameters and parameter values so that I can redefine them. Is that possible?
Parameters.Clear();
Configuration = Parameters.Persist();
Ideally, I would like to clear all prior saved parameters and parameter values so that I can redefine them. Is that possible?
Rename
You can search for the entry in the Settings.txt file in the WL User Data Folder and delete that line. That's where the Provider settings are persisted.
Perfect. Thank you.
Your Response
Post
Edit Post
Login is required