-
Notifications
You must be signed in to change notification settings - Fork 436
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
add code for addressing services with '/' #137
Conversation
ice-pull-requests #60 SUCCESS |
Any feedback? |
ice-pull-requests #76 SUCCESS |
@@ -28,8 +28,10 @@ public int compareTo(Tag t) { | |||
}; | |||
|
|||
public final String name; | |||
public final String s3Name; |
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.
Where is this field used?
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.
Sorry, it has been a long week. Indeed their is some code that I have forgotten. Demuxing my large pull request from last year:-)
-- Update code to use Tag.s3Name for S3 safe names
@vfilanovsky added missing code. Without these changes, "Details with Resource Groups" won't load Products if the user has any line items for AWS Import/Export Service. |
ice-pull-requests #78 SUCCESS |
@@ -37,7 +37,7 @@ | |||
private ReadWriteData data; | |||
|
|||
DataWriter(String name, boolean loadData) throws Exception { | |||
|
|||
name = name.replaceAll("/", "--"); |
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.
Perhaps it's better call Tag.toS3()
method instead
PR #184 has been merged (which is an updated version of this PR) |
addresses Issue #100
This maps '/' (AWS Import/Export) to "--" since when the name is used as the key for an S3 Object, it ends up becoming part of the prefix.