Skip to content

Commit

Permalink
Resolving issue ci-postland-rustdocissue2
Browse files Browse the repository at this point in the history
Closes: #10813
  • Loading branch information
Nirish133 authored and bors-diem committed Mar 23, 2023
1 parent e7ba3d5 commit 8809765
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-post-land.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
create:
branches: [latest, release-*]
push:
branches: [main, canary, latest, release-*] # gha-test-*
branches: [main, latest, release-*] # gha-test-*

defaults:
run:
Expand Down
5 changes: 4 additions & 1 deletion crates/crash-handler/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ fn handle_panic(panic_info: &PanicInfo<'_>) {
let backtrace = format!("{:#?}", Backtrace::new());

let info = CrashInfo { details, backtrace };
error!("{}", crash_info = toml::to_string_pretty(&info).unwrap());
error!(
"{crash_info}",
crash_info = toml::to_string_pretty(&info).unwrap()
);

// Wait till the logs have been flushed
diem_logger::flush();
Expand Down
2 changes: 1 addition & 1 deletion language/testing-infra/e2e-tests/src/currencies.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ pub fn add_currency_to_system(
let (compiled_module, module) = {
let module = format!(
r#"
module 0x1.{} {{
module 0x1.{currency_code} {{
import 0x1.Diem;
import 0x1.FixedPoint32;
struct {currency_code} has store {{ x: bool }}
Expand Down

0 comments on commit 8809765

Please sign in to comment.