This message was deleted.
# aws
s
This message was deleted.
l
Unsarcastically: the most common reason for naming mistakes is: people.
r
the tl;dr is that it was a human error that is really hard to fix after the fact
d
Heh sorry to give such a hard time
But could there be an alias?
BucketObjectV2 = BucketObjectv2
r
I think the problem is rooted in case sensitivity issues across platforms. For what you're suggesting, both files need to exist
BucketObjectV2
and
BucketObjectv2
and that just doesn't work on some platforms. (We had the same conversation internally and concluded that this is something we'd only be able to fix on a major version change because both of those files cannot simultaneously exist)
d
files?
m
Are there some linters which can catch these issues?
s
@dry-journalist-60579 Each resource goes in its own file in the various SDKs. Windows is case-insensitive, so: 1. We can't alias the resource because that won't work on Windows (can't have 2 files whose names only vary by casing). 2. We can't change the name of the resource, because that's a breaking change in a very widely used resource in our most widely used provider.
d
ah that’s a shame
womp womp đŸ™‚
thank you!