We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa3f794 commit d6ffda5Copy full SHA for d6ffda5
Gemfile.lock
@@ -14,7 +14,7 @@ GIT
14
PATH
15
remote: .
16
specs:
17
- superset (0.2.1)
+ superset (0.2.2)
18
dotenv (~> 2.7)
19
enumerate_it (~> 1.7.0)
20
faraday (~> 1.0)
lib/superset/dashboard/import.rb
@@ -67,7 +67,7 @@ def zip_database_config_not_found_in_superset
67
def superset_database_uuids_found
68
@superset_database_uuids_found ||= begin
69
zip_databases_details.map {|i| i[:uuid]}.map do |uuid|
70
- uuid if Superset::Database::List.new(uuid_equals: uuid).result.count == 1
+ uuid if Superset::Database::List.new(uuid_equals: uuid).result.present?
71
end.compact
72
end
73
0 commit comments