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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e595a6d2bcfedd7df51acc421676bc6a8d9c2a494d1606eeb02671e39b8bb3df
4
- data.tar.gz: dbedc40aefc61125bab3736908566c43162713f6f7fb63cd90eb2f25a795cebb
3
+ metadata.gz: bcb437fe35d6afd12777e624162887614d2cca7da551d17897175d490c639178
4
+ data.tar.gz: 7f40b923cdfcf86d790c413018fbe616b0273aa597619322a771b3a3164de3bd
5
5
  SHA512:
6
- metadata.gz: 36daa9d1fb5430db631e4a7c4d2b6293fa60cf45baeaa882b284a3b077671caef0a176f3d4e955cfcbcbeeb126274a4c2b0baf9900b5dabe724afebc6da56e41
7
- data.tar.gz: 3f9f6f6aecc4616299db41f8d80bbb0db0ab77b0ddb7cd9efe9a54a91e7bb9a31490717036067a3a4c91f59ab63313cf05343f3294d996d7afb4f850e41945cf
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 must be set when on AWS Lambda
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
- resp = Jets::Api::Release.retrieve("latest")
13
- resp.queue_url
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
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Jets
4
4
  module Rails
5
- VERSION = "1.0.1"
5
+ VERSION = "1.0.2"
6
6
  end
7
7
  end
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.1
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-21 00:00:00.000000000 Z
11
+ date: 2024-05-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport