@@ -2045,23 +2045,23 @@ public Observable<Integer> invalidateQueryCache() {
2045
2045
2046
2046
@ Override
2047
2047
public Single <PingReport > ping (String reportId , long timeout , TimeUnit timeUnit ) {
2048
- return HealthPinger .ping (environment , bucket , password , core , reportId , timeout , timeUnit );
2048
+ return HealthPinger .ping (environment , bucket , password , username , core , reportId , timeout , timeUnit );
2049
2049
}
2050
2050
2051
2051
@ Override
2052
2052
public Single <PingReport > ping (long timeout , TimeUnit timeUnit ) {
2053
- return HealthPinger .ping (environment , bucket , password , core , null , timeout , timeUnit );
2053
+ return HealthPinger .ping (environment , bucket , password , username , core , null , timeout , timeUnit );
2054
2054
}
2055
2055
2056
2056
@ Override
2057
2057
public Single <PingReport > ping (Collection <ServiceType > services , long timeout , TimeUnit timeUnit ) {
2058
- return HealthPinger .ping (environment , bucket , password , core , null , timeout , timeUnit ,
2058
+ return HealthPinger .ping (environment , bucket , password , username , core , null , timeout , timeUnit ,
2059
2059
services .toArray (new ServiceType [services .size ()]));
2060
2060
}
2061
2061
2062
2062
@ Override
2063
2063
public Single <PingReport > ping (String reportId , Collection <ServiceType > services , long timeout , TimeUnit timeUnit ) {
2064
- return HealthPinger .ping (environment , bucket , password , core , reportId , timeout , timeUnit ,
2064
+ return HealthPinger .ping (environment , bucket , password , username , core , reportId , timeout , timeUnit ,
2065
2065
services .toArray (new ServiceType [services .size ()]));
2066
2066
}
2067
2067
0 commit comments