مراية لـ
https://github.com/postalserver/postal.git
تم المزامنة 2025-12-01 05:43:04 +00:00
8 أسطر
494 B
Ruby
8 أسطر
494 B
Ruby
#!/usr/bin/env ruby
|
|
require_relative '../lib/postal/config'
|
|
require 'mysql2'
|
|
|
|
client = Mysql2::Client.new(:host => Postal.config.main_db.host, :username => Postal.config.main_db.username, :password => Postal.config.main_db.password, :port => Postal.config.main_db.port, :database => Postal.config.main_db.database)
|
|
result = client.query("SELECT COUNT(id) as size FROM `queued_messages` WHERE retry_after IS NULL OR retry_after <= ADDTIME(UTC_TIMESTAMP(), '30')")
|
|
puts result.to_a.first['size']
|