Skip to content

Commit

Permalink
Bugfix for Go JSON decoding.
Browse files Browse the repository at this point in the history
  • Loading branch information
beberlei committed Jul 18, 2014
1 parent a9038f8 commit 12cd6dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/QafooLabs/Profiler.php
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ private static function storeProfile($operationName, $data, $customTimers, $oper
"op" => $operationName,
"data" => $data,
"custom" => $customTimers,
"vars" => self::$customVars,
"vars" => self::$customVars ?: null,
"apiKey" => self::$apiKey,
"ot" => $operationType,
"mem" => round(memory_get_peak_usage() / 1024),
Expand Down

0 comments on commit 12cd6dc

Please sign in to comment.