Renaming for error code PRIVATE_IP_ADDRESS
timestamp1620630000000
Announcement
Starting June 8, 2021 the error code PRIVATE_IP_ADDRESS
will be renamed to RESERVED_IP_ADDRESS
.
If you are using this error code in your code, we suggest updating as soon as possible your code to check the same behavior is applied whether the old or the new error code is returned.
For instance, if you have something like this:
if ("PRIVATE_IP_ADDRESS".equals(exception.code)) { ... }
You should update your code to something like that:
if ("PRIVATE_IP_ADDRESS".equals(exception.code) ||
"RESERVED_IP_ADDRESS".equals(exception.code)) { ... }
Then, after the date mentioned above, you can safely remove the conditional statement that involves the old error code.
Did you like this update?
{error_message}
Leave your name and email so that we can reply to you (both fields are optional):
Thanks for your feedback!