Skip to content

Commit

Permalink
build: Bump symbolic to 8.0.4 (#899)
Browse files Browse the repository at this point in the history
Fixes panics in parsing unreal logs with invalid dates.
  • Loading branch information
jan-auer authored Feb 23, 2021
1 parent 4409c27 commit c2118c6
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 59 deletions.
66 changes: 16 additions & 50 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion relay-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ serde = { version = "1.0.114", features = ["derive"] }
serde_json = "1.0.55"
serde_urlencoded = "0.7.0"
smallvec = { version = "1.4.0", features = ["serde"] }
symbolic = { version = "7.5.0", optional = true, default-features=false, features=["unreal-serde"] }
symbolic = { version = "8.0.4", optional = true, default-features=false, features=["unreal-serde"] }
take_mut = "0.2.2"
tokio = { version = "1.0", features = ["rt-multi-thread"] } # in sync with reqwest
tokio-timer = "0.2.13"
Expand Down
8 changes: 0 additions & 8 deletions relay-server/src/utils/unreal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -207,14 +207,6 @@ fn merge_unreal_context(event: &mut Event, context: Unreal4Context) {
}
}

// Clear this property. It's a duplicate of misc_primary_gpu_brand and only exists because
// somebody made a typo once while mapping the GPU data from unrealcontext in symbolic, and we
// tried to fix this in a backwards-compatible way by retaining both properties.
#[allow(deprecated)]
{
runtime_props.misc_primary_cpu_brand = None;
}

if let Some(gpu_brand) = runtime_props.misc_primary_gpu_brand.take() {
let gpu_context = contexts.get_or_insert_with(GpuContext::default_key(), || {
Context::Gpu(Box::new(GpuContext::default()))
Expand Down

0 comments on commit c2118c6

Please sign in to comment.