File tree Expand file tree Collapse file tree 2 files changed +9
-10
lines changed
main/java/io/getstream/client/config
test/java/io/getstream/client/config Expand file tree Collapse file tree 2 files changed +9
-10
lines changed Original file line number Diff line number Diff line change 1010 */
1111public enum StreamRegion {
1212
13- BASE ("https://api.getstream.io /api" ),
14- US_EAST ("https://us-east-api.getstream.io /api" ),
15- US_WEST ("https://us-west-api.getstream.io /api" ),
16- EU_WEST ("https://eu-west-api.getstream.io /api" ),
17- AP_NORTH_EAST ("https://ap-northeast-api.getstream.io /api" ),
18- AP_SOUTH_EAST ("https://ap-southeast-api.getstream.io /api" ),
13+ BASE ("https://api.stream-io-api.com /api" ),
14+ US_EAST ("https://us-east-api.stream-io-api.com /api" ),
15+ US_WEST ("https://us-west-api.stream-io-api.com /api" ),
16+ EU_WEST ("https://eu-west-api.stream-io-api.com /api" ),
17+ AP_NORTH_EAST ("https://ap-northeast-api.stream-io-api.com /api" ),
18+ AP_SOUTH_EAST ("https://ap-southeast-api.stream-io-api.com /api" ),
1919 LOCAL_TEST ("http://localhost:8089/api" ), /* used for testing purpose only */
20- QA_TEST ("http://qa-api.getstream.io/api" ), /* used for integration test */
21- SNI_TEST ("https://sni-api.getstream.io/api" ); /* used for testing purpose only */
20+ QA_TEST ("https://qa-api.stream-io-api.com/api" ); /* used for integration test */
2221
2322 protected final static String VERSION = "v1.0" ;
2423
Original file line number Diff line number Diff line change @@ -9,6 +9,6 @@ public class StreamRegionTest {
99
1010 @ Test
1111 public void shouldGetEndpoint () {
12- assertThat (StreamRegion .US_EAST .getEndpoint ().toString (), is ("https://us-east-api.getstream.io /api/" + StreamRegion .VERSION ));
12+ assertThat (StreamRegion .US_EAST .getEndpoint ().toString (), is ("https://us-east-api.stream-io-api.com /api/" + StreamRegion .VERSION ));
1313 }
14- }
14+ }
You can’t perform that action at this time.
0 commit comments