jets-rails 1.0.1 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/lib/jets/rails/job/queue/url.rb +17 -4
- data/lib/jets/rails/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bcb437fe35d6afd12777e624162887614d2cca7da551d17897175d490c639178
|
4
|
+
data.tar.gz: 7f40b923cdfcf86d790c413018fbe616b0273aa597619322a771b3a3164de3bd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1301a0fbb86830da29abf6e02a6a0fc8f21aa85dfb2a3b959ae4cb81ea707a6711f9b9b8fc923a255c691c656108031ec309da2a35fffe5d066deb5891cf1c47
|
7
|
+
data.tar.gz: f000b9c1fd5eadb96d17a45e00668dba997f7e8f72505d009fd45fa38dd77a3fc4f6e168887e5ecf7514fcf4220611c5d1f241c4d9618ec4aad1395a5a570a42
|
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,9 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
This project *loosely tries* to adhere to [Semantic Versioning](http://semver.org/).
|
5
5
|
|
6
|
+
## [1.0.2] - 2024-05-27
|
7
|
+
- [#12](https://github.com/rubyonjets/jets-rails/pull/12) fix queue_url lookup when local
|
8
|
+
|
6
9
|
## [1.0.1] - 2024-05-21
|
7
10
|
- [#11](https://github.com/rubyonjets/jets-rails/pull/11) reduce rails requirement to => 6.1
|
8
11
|
- rm and gitignore Gemfile.lock
|
@@ -4,13 +4,26 @@ class Jets::Rails::Job::Queue
|
|
4
4
|
extend Memoist
|
5
5
|
|
6
6
|
def queue_url
|
7
|
-
# JETS_JOB_QUEUE_URL
|
8
|
-
# to avoid the API call to retrieve the queue_url
|
7
|
+
# On AWS Lambda JETS_JOB_QUEUE_URL will be set
|
8
|
+
# It must be set when on AWS to avoid the API call to retrieve the queue_url
|
9
9
|
return ENV["JETS_JOB_QUEUE_URL"] if ENV["JETS_JOB_QUEUE_URL"]
|
10
|
+
|
11
|
+
# Locally when JETS_JOB_QUEUE_URL will try getting the latest release from API
|
10
12
|
# 1. can be nil
|
11
13
|
# 2. can raise NotFound error
|
12
|
-
|
13
|
-
|
14
|
+
begin
|
15
|
+
resp = Jets::Api::Release.retrieve("latest")
|
16
|
+
endpoint = resp.endpoints.find { |x| x["name"] == "queue_url" }
|
17
|
+
endpoint&.url
|
18
|
+
rescue Jets::Api::Error::NotFound => e
|
19
|
+
puts "WARN: Unable to get queue url from API: #{e.message}".color(:yellow)
|
20
|
+
puts <<~EOL
|
21
|
+
INFO: You can set JETS_JOB_QUEUE_URL in your environment to avoid this API call.
|
22
|
+
Locally, jets will try to get the latest release from the API to get the queue_url.
|
23
|
+
This will only work if the stack has been deployed successfully.
|
24
|
+
EOL
|
25
|
+
raise
|
26
|
+
end
|
14
27
|
end
|
15
28
|
memoize :queue_url
|
16
29
|
end
|
data/lib/jets/rails/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jets-rails
|
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
|
- Tung Nguyen
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-05-
|
11
|
+
date: 2024-05-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|