spec/lib/es/client_spec.rb [350:357]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        expect(system_logger).to receive(:warn).with(
          %r{#{description} attempt 1/3 failed: 'Failed attempt 1'. Retrying in 1.0s..}
        ).ordered
        expect(subject).to receive(:sleep).with(1.0**1).ordered
        expect(system_logger).to receive(:warn).with(
          %r{#{description} attempt 2/3 failed: 'Failed attempt 2'. Retrying in 1.0s..}
        ).ordered
        expect(subject).to receive(:sleep).with(1.0**2).ordered
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



spec/lib/es/client_spec.rb [375:382]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        expect(system_logger).to receive(:warn).with(
          %r{#{description} attempt 1/3 failed: 'Persistent failure'. Retrying in 1.0s..}
        ).ordered
        expect(subject).to receive(:sleep).with(1.0**1).ordered
        expect(system_logger).to receive(:warn).with(
          %r{#{description} attempt 2/3 failed: 'Persistent failure'. Retrying in 1.0s..}
        ).ordered
        expect(subject).to receive(:sleep).with(1.0**2).ordered
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



