Skip to content

Commit

Permalink
v0.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
abkfenris committed Mar 17, 2021
1 parent 72d3161 commit be830b1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ Changes:

Fixes:

## 0.3.4 - 03/17/2021

Fixes:

- Flow scheduling check almost always would not schedule flows.

## 0.3.3 - 03/17/2021

Changes:
Expand Down
2 changes: 1 addition & 1 deletion app/deployments/management/commands/prefect.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def register(self):
"`PREFECT_PROJECT_NAME` needs to be in the environment to register flows"
)

if os.environ.get("DJANGO_ENV", "").lower() == "dev" or os.environ.get("DJANGO_ENV", "").lower() != "test":
if os.environ.get("DJANGO_ENV", "").lower() == "dev" or os.environ.get("DJANGO_ENV", "").lower() == "test":
self.stdout.write("In test or debug environment, not registering flow schedules")
else:
reset_timeseries_end_times.schedule = daily
Expand Down
2 changes: 1 addition & 1 deletion app/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool]
[tool.poetry]
name = "buoy_barn"
version = "0.3.3"
version = "0.3.4"
description = "NERACOOS lightweight API sitting in front of ERDDAP"
authors = ["Alex Kerney <[email protected]>"]

Expand Down

0 comments on commit be830b1

Please sign in to comment.