aws-activejob-sqs 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/VERSION +1 -1
- data/lib/active_job/queue_adapters/sqs_adapter/params.rb +1 -1
- data/lib/aws/active_job/sqs/cli_options.rb +1 -1
- data/lib/aws/active_job/sqs/poller.rb +0 -1
- metadata +3 -8
- data/bin/aws_sqs_active_job +0 -18
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 43f56ad87999ca924172fa56bb7fb6af16e77a0e63ed63cf77398e8ab097da7e
|
4
|
+
data.tar.gz: 10b9fbb6d8583041306da87e6186e7ec67607f975b33242695080441db7a4ce3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ed23b76c320bc0cf8860b9df133fd114fb62f5439dbca3eaacf927ffd6c30b7cf4eb2df05e74bacc1a79d56ffce1f77a6052a22c3ffd51fd1d7405c1bb29b45c
|
7
|
+
data.tar.gz: 0ceaf002ad0b8ef3246df38b8570b2bbab13de7b53346dc8fefb49b964bd2d6db96fcc2a0f86c0c852048daee0202e2b8947f55267eab0f1a4c0a547d697c942
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.2
|
@@ -8,7 +8,7 @@ module ActiveJob
|
|
8
8
|
class Params
|
9
9
|
class << self
|
10
10
|
def assured_delay_seconds(timestamp)
|
11
|
-
delay = (timestamp - Time.now.to_f).floor
|
11
|
+
delay = (timestamp.to_f - Time.now.to_f).floor
|
12
12
|
delay = 0 if delay.negative?
|
13
13
|
raise ArgumentError, 'Unable to queue a job with a delay great than 15 minutes' if delay > 15.minutes
|
14
14
|
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-activejob-sqs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-04-01 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: aws-sdk-sqs
|
@@ -63,7 +62,6 @@ email:
|
|
63
62
|
- aws-dr-rubygems@amazon.com
|
64
63
|
executables:
|
65
64
|
- aws_active_job_sqs
|
66
|
-
- aws_sqs_active_job
|
67
65
|
extensions: []
|
68
66
|
extra_rdoc_files: []
|
69
67
|
files:
|
@@ -71,7 +69,6 @@ files:
|
|
71
69
|
- LICENSE
|
72
70
|
- VERSION
|
73
71
|
- bin/aws_active_job_sqs
|
74
|
-
- bin/aws_sqs_active_job
|
75
72
|
- lib/active_job/queue_adapters/sqs_adapter.rb
|
76
73
|
- lib/active_job/queue_adapters/sqs_adapter/params.rb
|
77
74
|
- lib/active_job/queue_adapters/sqs_async_adapter.rb
|
@@ -87,7 +84,6 @@ homepage: https://github.com/aws/aws-activejob-sqs-ruby
|
|
87
84
|
licenses:
|
88
85
|
- Apache-2.0
|
89
86
|
metadata: {}
|
90
|
-
post_install_message:
|
91
87
|
rdoc_options: []
|
92
88
|
require_paths:
|
93
89
|
- lib
|
@@ -102,8 +98,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
102
98
|
- !ruby/object:Gem::Version
|
103
99
|
version: '0'
|
104
100
|
requirements: []
|
105
|
-
rubygems_version: 3.5
|
106
|
-
signing_key:
|
101
|
+
rubygems_version: 3.6.5
|
107
102
|
specification_version: 4
|
108
103
|
summary: ActiveJob integration with SQS
|
109
104
|
test_files: []
|
data/bin/aws_sqs_active_job
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
# frozen_string_literal: true
|
3
|
-
|
4
|
-
require_relative '../lib/aws-activejob-sqs'
|
5
|
-
require_relative '../lib/aws/active_job/sqs/cli_options'
|
6
|
-
require_relative '../lib/aws/active_job/sqs/poller'
|
7
|
-
|
8
|
-
opts = Aws::ActiveJob::SQS::CliOptions.parse(ARGV)
|
9
|
-
|
10
|
-
if opts[:boot_rails]
|
11
|
-
require 'rails'
|
12
|
-
require File.expand_path('config/environment.rb')
|
13
|
-
end
|
14
|
-
|
15
|
-
require File.join(Dir.pwd, opts[:require]) if opts[:require]
|
16
|
-
|
17
|
-
puts 'WARNING: Using deprecated poller executable. Please migrate to `aws_active_job_sqs`'
|
18
|
-
Aws::ActiveJob::SQS::Poller.new(opts.to_h.compact).run
|