We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e10e2c commit 774441fCopy full SHA for 774441f
crates/usage_tracking/src/lib.rs
@@ -206,7 +206,9 @@ impl CallType {
206
207
fn memory_megabytes(&self) -> u64 {
208
match self {
209
- CallType::Action { memory_in_mb, .. } => *memory_in_mb,
+ CallType::Action { memory_in_mb, .. } | CallType::HttpAction { memory_in_mb, .. } => {
210
+ *memory_in_mb
211
+ },
212
_ => 0,
213
}
214
0 commit comments