Revision 52a1022
Microsoft (R) Windows Debugger Version 10.0.22473.1005 AMD64
Copyright (c) Microsoft Corporation. All rights reserved.
*************************** 1. row *************************** | |
Type: InnoDB | |
Name: | |
Status: | |
===================================== | |
2022-01-30 00:29:10 0x7f7234541700 INNODB MONITOR OUTPUT | |
===================================== | |
Per second averages calculated from the last 16 seconds | |
----------------- | |
BACKGROUND THREAD |
Microsoft (R) Windows Debugger Version 10.0.22473.1005 AMD64 | |
Copyright (c) Microsoft Corporation. All rights reserved. | |
*** wait with pending attach | |
************* Path validation summary ************** | |
Response Time (ms) Location | |
Deferred srv* | |
OK C:\Users\dcbow\pg-14.1\libpq |
0:011> !analyze -v | |
******************************************************************************* | |
* * | |
* Exception Analysis * | |
* * | |
******************************************************************************* | |
KEY_VALUES_STRING: 1 |
package main | |
import ( | |
"fmt" | |
"syscall" | |
"unsafe" | |
) | |
type ( | |
DWORD uint32 |
#!/usr/bin/env ruby | |
# frozen_string_literal: true | |
require 'json' | |
require 'open-uri' | |
components = JSON.parse(open('https://rails-assets.org/components.json').read) | |
i = 0 | |
components.each do |c| | |
cn = c['name'] | |
c['versions'].each do |v| | |
cv = "#{cn}##{v}" |
{ | |
"body": { | |
"trace": { | |
"frames": [ | |
{ | |
"lineno": 79, | |
"method": "rollrus.(*Hook).Fire", | |
"filename": "github.com/heroku/rollrus/rollrus.go" | |
}, | |
{ |
# Use this template to report PaperTrail bugs. | |
# It is based on the ActiveRecord template. | |
# https://github.com/rails/rails/blob/master/guides/bug_report_templates/active_record_gem.rb | |
begin | |
require 'bundler/inline' | |
rescue LoadError => e | |
$stderr.puts 'Bundler version 1.10 or later is required. Please update your Bundler' | |
raise e | |
end |