Skip to content

Commit cfebf99

Browse files
authored
[182] erase old coordinator related code (#241)
Co-authored-by: kanat <>
1 parent 35e019b commit cfebf99

File tree

69 files changed

+17
-13939
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+17
-13939
lines changed

dogfooding/lib/main.dart

+12-9
Original file line numberDiff line numberDiff line change
@@ -31,26 +31,29 @@ Future<void> main() async {
3131
options: DefaultFirebaseOptions.currentPlatform,
3232
);
3333
_initStreamVideo();
34-
runApp(StreamDogFoodingApp());
34+
runApp(const StreamDogFoodingApp());
3535
}
3636

3737
void _initStreamVideo() {
3838
if (!StreamVideo.isInitialized()) {
39+
StreamLog()
40+
..logger = ConsoleStreamLogger()
41+
..validator = (priority, tag) => true;
42+
3943
StreamVideo.init(
40-
'us83cfwuhy8n', // see <video>/data/fixtures/apps.yaml for API secret
41-
coordinatorRpcUrl: //replace with the url obtained with ngrok http 26991
42-
'https://rpc-video-coordinator.oregon-v1.stream-io-video.com/rpc',
43-
// 'http://192.168.1.7:26991/rpc',
44-
coordinatorWsUrl: //replace host with your local ip address
45-
'wss://wss-video-coordinator.oregon-v1.stream-io-video.com/rpc/stream.video.coordinator.client_v1_rpc.Websocket/Connect',
46-
// 'ws://192.168.1.7:8989/rpc/stream.video.coordinator.client_v1_rpc.Websocket/Connect',
44+
'w6yaq5388uym',
45+
coordinatorRpcUrl:
46+
'https://video-edge-frankfurt-ce1.stream-io-api.com/video',
47+
coordinatorWsUrl:
48+
'wss://video-edge-frankfurt-ce1.stream-io-api.com/video/connect',
4749
pushNotificationFactory: createPushNotificationManager,
4850
);
4951
}
5052
}
5153

5254
Future<PushNotificationManager> createPushNotificationManager(
53-
StreamVideo client) {
55+
StreamVideo client,
56+
) {
5457
return StreamVideoPushNotificationManager.create(client);
5558
}
5659

packages/stream_video/lib/protobuf/video/coordinator/broadcast_v1/broadcast.pb.dart

-117
This file was deleted.

packages/stream_video/lib/protobuf/video/coordinator/broadcast_v1/broadcast.pbenum.dart

-28
This file was deleted.

packages/stream_video/lib/protobuf/video/coordinator/broadcast_v1/broadcast.pbjson.dart

-43
This file was deleted.

packages/stream_video/lib/protobuf/video/coordinator/broadcast_v1/broadcast.pbserver.dart

-9
This file was deleted.

0 commit comments

Comments
 (0)