Comparing version 10.0.0-beta15 to 10.0.0-beta16
{ | ||
"name": "pg-boss", | ||
"version": "10.0.0-beta15", | ||
"version": "10.0.0-beta16", | ||
"description": "Queueing jobs in Postgres from Node.js like a boss", | ||
@@ -5,0 +5,0 @@ "main": "./src/index.js", |
@@ -227,3 +227,3 @@ const DEFAULT_SCHEMA = 'pgboss' | ||
$$ | ||
SELECT 'j' || left(regexp_replace(queue_name, '\\W', '', 'g'),10) || left(encode(sha224(queue_name::bytea), 'hex'),10); | ||
SELECT 'j' || lower(left(regexp_replace(queue_name, '\\W', '', 'g'),10)) || left(encode(sha224(queue_name::bytea), 'hex'),10); | ||
$$ | ||
@@ -230,0 +230,0 @@ LANGUAGE SQL |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
97859