Skip to content

Commit

Permalink
Merge pull request #4404 from nulib/deploy/staging
Browse files Browse the repository at this point in the history
Deploy v9.6.4 to production
  • Loading branch information
mbklein authored Feb 12, 2025
2 parents cefa84e + 4d92053 commit e2492c9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions app/lib/meadow/pipeline/actions/create_pyramid_tiff.ex
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ defmodule Meadow.Pipeline.Actions.CreatePyramidTiff do
def actiondoc, do: "Create pyramid TIFF from source image"

def already_complete?(file_set, _) do
FileSets.pyramid_uri_for(file_set.id)
FileSets.pyramid_uri_for(file_set)
|> Meadow.Utils.Stream.exists?()
end

def process(file_set, attributes) do
source = file_set.core_metadata.location
target = FileSets.pyramid_uri_for(file_set.id)
target = FileSets.pyramid_uri_for(file_set)

case create_pyramid_tiff(source, target) do
{:ok, dest} ->
Expand Down
4 changes: 2 additions & 2 deletions app/lib/meadow/seed/export.ex
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ defmodule Meadow.Seed.Export do
)
|> Repo.all()
|> Enum.map(fn fs ->
Map.put(fs, :pyramid_file, FileSets.pyramid_uri_for(fs.id))
Map.put(fs, :pyramid_file, FileSets.pyramid_uri_for(fs))
end)
end

Expand All @@ -165,7 +165,7 @@ defmodule Meadow.Seed.Export do
)
|> Repo.all()
|> Enum.map(fn fs ->
Map.put(fs, :pyramid_file, FileSets.pyramid_uri_for(fs.id))
Map.put(fs, :pyramid_file, FileSets.pyramid_uri_for(fs))
end)
end

Expand Down
2 changes: 1 addition & 1 deletion app/mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Meadow.MixProject do
use Mix.Project

@app_version "9.6.4"
@app_version "9.6.5"

def project do
[
Expand Down

0 comments on commit e2492c9

Please sign in to comment.