https://dagster.io/ logo
b

Ben Smith

05/10/2020, 2:40 PM
After installing 0.7.11, trying to run
dagit -f file.py -n nodename
throws an error from (what seems to be) within dagster's config system. Anyone else seeing this?
Copy code
File "c:\users\bsmith\appdata\local\continuum\anaconda3\lib\site-packages\dagster\config\field_utils.py", line 225, in is_potential_field
    potential_field
  File "c:\users\bsmith\appdata\local\continuum\anaconda3\lib\site-packages\dagster\config\field.py", line 117, in resolve_to_config_type
    desc=VALID_CONFIG_DESC,
dagster.core.errors.DagsterInvalidDefinitionError: You have passed an instance of DagsterType Path to the config system (Repr of type: <dagster.core.types.dagster_type._Path object at 0x0000019207D41F08>). The DagsterType and config schema systems are seperate. Valid config values are:
s

schrockn

05/10/2020, 3:10 PM
We eliminated the path type in config. Use String instead
b

Ben Smith

05/10/2020, 3:18 PM
Not using any path types in my config, they're all str - would a call to EventMetadataEntry.path() trigger it?
s

schrockn

05/10/2020, 3:19 PM
Hmmm not sure. I’m afk right now. Can look in about an hour
🙏 1
Could you file an issue with the contents of the file in question?
Yeah @Ben Smith won't be able to look at this until i have more context on what is going on in your file
thankyou 1
b

Ben Smith

05/10/2020, 6:34 PM
will file an issue, thanks a ton
s

schrockn

05/10/2020, 7:41 PM
@Ben Smith I believe you are pulling in an older version of dagster-pandas
if you update all dagster libraries to the same version I believe you will be fine
b

Ben Smith

05/10/2020, 8:04 PM
ah
worked the charm, forgot that was a separate package, thanks so much again!
s

schrockn

05/10/2020, 9:07 PM
np