Hi keep getting this error when running the applic...
# ask-community
r
Hi keep getting this error when running the application. Not sure what it could possibly be. I am using postgresql as my db and this started failing when I tried using s3 as the compute logs storage
Copy code
Operation name: JobMetadataQuery

Message: 'Select' object has no attribute 'filter'

Path: ["pipelineRunsOrError","results",0,"assets"]

Locations: [{"line":73,"column":3}]
Inside of postgres I see
Copy code
query = query.filter(
AttributeError: 'Select' object has no attribute 'filter'
p
Hi Rene. What version of dagster are you using?
r
0.14.3
p
I think
0.14.3
introduced some code that was dependent on a version of
SQLAlchemy>=1.4
If you upgrade to
0.14.4
, I believe we made some changes to be backwards compatible with
SQLAlchemy==1.3.x
Alternatively, you could upgrade your version of
SQLAlchemy
r
perfect, that seemed to work. Thanks!
dagsir 1