dagster-postgres 0.17.21__tar.gz → 0.18.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of dagster-postgres might be problematic. Click here for more details.
- {dagster-postgres-0.17.21/dagster_postgres.egg-info → dagster-postgres-0.18.1}/PKG-INFO +1 -1
- {dagster-postgres-0.17.21 → dagster-postgres-0.18.1}/dagster_postgres/run_storage/run_storage.py +9 -0
- dagster-postgres-0.18.1/dagster_postgres/version.py +1 -0
- {dagster-postgres-0.17.21 → dagster-postgres-0.18.1/dagster_postgres.egg-info}/PKG-INFO +1 -1
- {dagster-postgres-0.17.21 → dagster-postgres-0.18.1}/dagster_postgres.egg-info/requires.txt +1 -1
- {dagster-postgres-0.17.21 → dagster-postgres-0.18.1}/setup.py +1 -1
- dagster-postgres-0.17.21/dagster_postgres/version.py +0 -1
- {dagster-postgres-0.17.21 → dagster-postgres-0.18.1}/LICENSE +0 -0
- {dagster-postgres-0.17.21 → dagster-postgres-0.18.1}/MANIFEST.in +0 -0
- {dagster-postgres-0.17.21 → dagster-postgres-0.18.1}/README.md +0 -0
- {dagster-postgres-0.17.21 → dagster-postgres-0.18.1}/dagster_postgres/__init__.py +0 -0
- {dagster-postgres-0.17.21 → dagster-postgres-0.18.1}/dagster_postgres/alembic/alembic.ini +0 -0
- {dagster-postgres-0.17.21 → dagster-postgres-0.18.1}/dagster_postgres/event_log/__init__.py +0 -0
- {dagster-postgres-0.17.21 → dagster-postgres-0.18.1}/dagster_postgres/event_log/event_log.py +0 -0
- {dagster-postgres-0.17.21 → dagster-postgres-0.18.1}/dagster_postgres/event_log/event_watcher.py +0 -0
- {dagster-postgres-0.17.21 → dagster-postgres-0.18.1}/dagster_postgres/py.typed +0 -0
- {dagster-postgres-0.17.21 → dagster-postgres-0.18.1}/dagster_postgres/pynotify.py +0 -0
- {dagster-postgres-0.17.21 → dagster-postgres-0.18.1}/dagster_postgres/run_storage/__init__.py +0 -0
- {dagster-postgres-0.17.21 → dagster-postgres-0.18.1}/dagster_postgres/schedule_storage/__init__.py +0 -0
- {dagster-postgres-0.17.21 → dagster-postgres-0.18.1}/dagster_postgres/schedule_storage/schedule_storage.py +0 -0
- {dagster-postgres-0.17.21 → dagster-postgres-0.18.1}/dagster_postgres/storage.py +0 -0
- {dagster-postgres-0.17.21 → dagster-postgres-0.18.1}/dagster_postgres/utils.py +0 -0
- {dagster-postgres-0.17.21 → dagster-postgres-0.18.1}/dagster_postgres.egg-info/SOURCES.txt +0 -0
- {dagster-postgres-0.17.21 → dagster-postgres-0.18.1}/dagster_postgres.egg-info/dependency_links.txt +0 -0
- {dagster-postgres-0.17.21 → dagster-postgres-0.18.1}/dagster_postgres.egg-info/not-zip-safe +0 -0
- {dagster-postgres-0.17.21 → dagster-postgres-0.18.1}/dagster_postgres.egg-info/top_level.txt +0 -0
- {dagster-postgres-0.17.21 → dagster-postgres-0.18.1}/setup.cfg +0 -0
{dagster-postgres-0.17.21 → dagster-postgres-0.18.1}/dagster_postgres/run_storage/run_storage.py
RENAMED
|
@@ -189,6 +189,11 @@ class PostgresRunStorage(SqlRunStorage, ConfigurableClass):
|
|
|
189
189
|
"body": serialize_dagster_namedtuple(daemon_heartbeat),
|
|
190
190
|
},
|
|
191
191
|
)
|
|
192
|
+
.returning(
|
|
193
|
+
# required because sqlalchemy might by default return the declared primary key,
|
|
194
|
+
# which might not exist
|
|
195
|
+
DaemonHeartbeatsTable.c.daemon_type,
|
|
196
|
+
)
|
|
192
197
|
)
|
|
193
198
|
|
|
194
199
|
def kvs_set(self, pairs: Mapping[str, str]) -> None:
|
|
@@ -203,6 +208,10 @@ class PostgresRunStorage(SqlRunStorage, ConfigurableClass):
|
|
|
203
208
|
KeyValueStoreTable.c.key,
|
|
204
209
|
],
|
|
205
210
|
set_={"value": insert_stmt.excluded.value},
|
|
211
|
+
).returning(
|
|
212
|
+
# required because sqlalchemy might by default return the declared primary key,
|
|
213
|
+
# which might not exist
|
|
214
|
+
KeyValueStoreTable.c.key
|
|
206
215
|
)
|
|
207
216
|
|
|
208
217
|
with self.connect() as conn:
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.18.1"
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
dagster==1.1
|
|
1
|
+
dagster==1.2.1
|
|
2
2
|
psycopg2-binary
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.17.21"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dagster-postgres-0.17.21 → dagster-postgres-0.18.1}/dagster_postgres/event_log/event_log.py
RENAMED
|
File without changes
|
{dagster-postgres-0.17.21 → dagster-postgres-0.18.1}/dagster_postgres/event_log/event_watcher.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dagster-postgres-0.17.21 → dagster-postgres-0.18.1}/dagster_postgres/run_storage/__init__.py
RENAMED
|
File without changes
|
{dagster-postgres-0.17.21 → dagster-postgres-0.18.1}/dagster_postgres/schedule_storage/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dagster-postgres-0.17.21 → dagster-postgres-0.18.1}/dagster_postgres.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
{dagster-postgres-0.17.21 → dagster-postgres-0.18.1}/dagster_postgres.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|