zplinuxlover opened a new pull request #6775:
URL: https://github.com/apache/pulsar/pull/6775


   when I run testcase 
`org.apache.pulsar.broker.admin.AdminApiOffloadTest.testOffloadPolicies`, there 
is an error,
   I debug the code, I found that there is possibility that 
`offloadPolicies.getManagedLedgerOffloadDeletionLagInMillis()`
   is null. so I change the code.
   
   from `offloadPolicies.getManagedLedgerOffloadDeletionLagInMillis()
            .equals(OffloadPolicies.DEFAULT_OFFLOAD_DELETION_LAG_IN_MILLIS)`
   to `offloadPolicies.getManagedLedgerOffloadDeletionLagInMillis() == null && 
OffloadPolicies.DEFAULT_OFFLOAD_DELETION_LAG_IN_MILLIS == null
                       || 
offloadPolicies.getManagedLedgerOffloadDeletionLagInMillis() != null
                       && 
offloadPolicies.getManagedLedgerOffloadDeletionLagInMillis().equals(OffloadPolicies.DEFAULT_OFFLOAD_DELETION_LAG_IN_MILLIS)`


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to