Skip to content

Commit 1575ef4

Browse files
Merge pull request #704 from Mark-Simulacrum/fix-ci
Switch to beta for CI tests
2 parents 076b3e1 + 8f59a71 commit 1575ef4

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ jobs:
4141
with:
4242
fetch-depth: 1
4343

44-
- name: Install latest nightly
44+
- name: Install latest beta
4545
uses: actions-rs/toolchain@v1
4646
with:
47-
toolchain: nightly
47+
toolchain: beta
4848
override: true
4949

5050
- name: Configure environment
@@ -69,10 +69,10 @@ jobs:
6969
with:
7070
fetch-depth: 1
7171

72-
- name: Install latest nightly
72+
- name: Install latest beta
7373
uses: actions-rs/toolchain@v1
7474
with:
75-
toolchain: nightly
75+
toolchain: beta
7676
override: true
7777

7878
- name: Configure environment

collector/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ fn main() {
413413
match main_result() {
414414
Ok(code) => process::exit(code),
415415
Err(err) => {
416-
eprintln!("collector error: {:#}\n{}", err, err.backtrace());
416+
eprintln!("collector error: {:?}", err);
417417
process::exit(1);
418418
}
419419
}

0 commit comments

Comments
 (0)