Skip to content

Commit

Permalink
Fix create default experiment error (mlflow#1502)
Browse files Browse the repository at this point in the history
Fix mlflow#1499 This adds additional condition test to properly handle experiment data stored as unicode data type.
  • Loading branch information
jimthompson5802 authored and Avrilia Floratou committed Aug 22, 2020
1 parent 4f88b05 commit e957f19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mlflow/store/sqlalchemy_store.py
Expand Up @@ -181,7 +181,7 @@ def _create_default_experiment(self, session):
default_experiment = {
SqlExperiment.experiment_id.name: int(SqlAlchemyStore.DEFAULT_EXPERIMENT_ID),
SqlExperiment.name.name: Experiment.DEFAULT_EXPERIMENT_NAME,
SqlExperiment.artifact_location.name: self._get_artifact_location(0),
SqlExperiment.artifact_location.name: str(self._get_artifact_location(0)),
SqlExperiment.lifecycle_stage.name: LifecycleStage.ACTIVE
}

Expand Down

0 comments on commit e957f19

Please sign in to comment.