We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 631afe6 commit 4411cb3Copy full SHA for 4411cb3
app/lib/client/code/ecr_images.rb
@@ -202,7 +202,7 @@ def get_manifest_tag(image)
202
end
203
return tag if date.nil?
204
205
- { title: "#{tag}* (#{date_format(date)})", value: tag }
+ { title: "#{tag} (#{date_format(date)})", value: "#{tag}*" }
206
207
208
def get_image_tags_by_digest(image, tag, digest)
app/lib/client/query/query.rb
@@ -20,6 +20,7 @@ def self.client
20
21
22
def initialize
23
+ throw 'QueryClient is disabled' unless ENV.fetch('SKIP_DATABASE', '').empty?
24
@columndefs = {}
25
@fragments = {}
26
@queries = {}
0 commit comments