File tree Expand file tree Collapse file tree 3 files changed +3
-24
lines changed
src/main/java/com/influxdb/client/internal
client-reactive/src/test/java/com/influxdb/client/reactive Expand file tree Collapse file tree 3 files changed +3
-24
lines changed Original file line number Diff line number Diff line change 28
28
29
29
import com .influxdb .test .AbstractMockServerTest ;
30
30
31
- import io .reactivex .Flowable ;
31
+ import io .reactivex .rxjava3 . core . Flowable ;
32
32
import org .assertj .core .api .Assertions ;
33
33
import org .junit .jupiter .api .AfterEach ;
34
34
import org .junit .jupiter .api .BeforeEach ;
Original file line number Diff line number Diff line change 129
129
130
130
<dependency >
131
131
<groupId >com.squareup.retrofit2</groupId >
132
- <artifactId >adapter-rxjava2 </artifactId >
132
+ <artifactId >adapter-rxjava3 </artifactId >
133
133
<exclusions >
134
134
<exclusion >
135
135
<groupId >com.squareup.okhttp3</groupId >
166
166
<artifactId >converter-gson</artifactId >
167
167
</dependency >
168
168
169
- <dependency >
170
- <groupId >com.squareup.retrofit2</groupId >
171
- <artifactId >adapter-rxjava3</artifactId >
172
- <exclusions >
173
- <exclusion >
174
- <groupId >com.squareup.okhttp3</groupId >
175
- <artifactId >okhttp</artifactId >
176
- </exclusion >
177
- <exclusion >
178
- <groupId >com.squareup.retrofit2</groupId >
179
- <artifactId >retrofit</artifactId >
180
- </exclusion >
181
- <exclusion >
182
- <groupId >io.reactivex.rxjava2</groupId >
183
- <artifactId >rxjava</artifactId >
184
- </exclusion >
185
- </exclusions >
186
- </dependency >
187
-
188
169
<dependency >
189
170
<groupId >com.moandjiezana.toml</groupId >
190
171
<artifactId >toml4j</artifactId >
Original file line number Diff line number Diff line change 21
21
*/
22
22
package com .influxdb .client .internal ;
23
23
24
- import java .util .Collections ;
25
24
import java .util .logging .Level ;
26
25
import java .util .logging .Logger ;
27
26
import javax .annotation .Nonnull ;
82
81
83
82
import org .jetbrains .annotations .NotNull ;
84
83
import retrofit2 .Call ;
85
- import retrofit2 .adapter .rxjava2 .RxJava2CallAdapterFactory ;
86
84
87
85
/**
88
86
* @author Jakub Bednar (bednar@github) (11/10/2018 09:36)
@@ -97,7 +95,7 @@ public final class InfluxDBClientImpl extends AbstractInfluxDBClient implements
97
95
98
96
public InfluxDBClientImpl (@ Nonnull final InfluxDBClientOptions options ) {
99
97
100
- super (options , "java" , Collections . singletonList ( RxJava2CallAdapterFactory . create ()) );
98
+ super (options , "java" );
101
99
102
100
setupService = retrofit .create (SetupService .class );
103
101
readyService = retrofit .create (ReadyService .class );
You can’t perform that action at this time.
0 commit comments