Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
3.7.0
-
None
-
camel-aws2-s3:3.7.0
-
Unknown
Description
Wrong code on line 119:
```
if (ase.awsErrorDetails().errorCode().equalsIgnoreCase("404"))
{ throw ase; }Correct writing method:
```
if (!ase.awsErrorDetails().errorCode().equalsIgnoreCase("404")) { throw ase; }
There are similar bugs elsewhere