Skip to content

Commit eb4cc32

Browse files
Merge branch 'main' of github.com:livekit/rust-sdks into alan/feature-aggregate-ci
2 parents cc2a0ca + 90a9e45 commit eb4cc32

3 files changed

Lines changed: 10 additions & 5 deletions

File tree

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
livekit-api: patch
3+
---
4+
5+
Update sip_busy test GRPc code: failed_precondition -> failed_precondition

‎livekit-api/src/services/api_test.rs‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -730,7 +730,7 @@ async fn sip_busy() {
730730
skip_if_offline!(base);
731731
let err = sip_error(r#"{"code":486,"status":"Busy Here"}"#).await;
732732
let e = SipCallError::from_error(&err).expect("should decode a SipCallError");
733-
assert_eq!(e.code(), "resource_exhausted");
733+
assert_eq!(e.code(), "failed_precondition");
734734
assert_eq!(e.sip_status_code(), Some(486));
735735
assert_eq!(e.sip_status(), Some("Busy Here"));
736736
let s = e.to_string();

‎webrtc-sys/libwebrtc/README.md‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
This directory can contain a checkout of WebRTC. The build scripts
2-
here will install dependencies, checkout the version that LiveKit
3-
currently uses, apply some patches to it, and build it. For example to
4-
do a Linux debug build on x64:
1+
This directory can contain a checkout of WebRTC from https://github.com/webrtc-sdk/webrtc.
2+
The build scripts here will install dependencies, checkout the version that LiveKit
3+
currently uses, apply some patches to it, and build it. The currently used version is pinned in
4+
`.gclient`. For example, the build command to do a Linux debug build on x64 is:
55

66
```sh
77
$ ./build-linux.sh --arch x64 --profile release

0 commit comments

Comments
 (0)