Overview
Currently, there are some inconsistencies in the toString() implementations in our BackOff strategies.
FixedBackOffdoes not implementtoString().FixedBackOffExecutionimplementstoString()but claims that it isFixedBackOff.- The existing
toString()implementations wrap properties in{}instead of[].
Having proper, consistent toString() implementations in FixedBackOff and ExponentialBackOff is also a prerequisite for #35110, since the RetryPolicy will include the configured BackOff in its toString() representation.
Related Issues
-
35110