-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FOGL-8507 : Taken care of quotes and slash in asset name #1432
base: develop
Are you sure you want to change the base?
Conversation
Signed-off-by: nandan <[email protected]>
Signed-off-by: nandan <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What tests have been run against this branch?
I executed system tests, lab scripts using CI Jobs and did some manual testing. Please refer following sheet for detailed report https://docs.google.com/spreadsheets/d/1brHU_U5kCGqKkUxm5igvvu_SPYjmtuDHRDpIQxy3ZE8/edit?usp=sharing |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We have a proliferation of escape routines, it woudl be good to consolidate them or at least make use of one already written.
C/common/string_utils.cpp
Outdated
* @param StringReplicate substitution string | ||
* | ||
*/ | ||
void replicate(std::string& StringToManage, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Replicate is a bad name for this. Probably replaceAll us better
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here function is replicating a single character to double character. Also StringReplaceAll function is already there but will not work in this scenario. That's why I created new function. I will rename the function as StringReplaceAllEx to make it more intuitive.
Signed-off-by: nandan <[email protected]>
No description provided.