Skip to content

Commit

Permalink
docs: specify the correct mysql event log module (#7703)
Browse files Browse the repository at this point in the history
  • Loading branch information
rexledesma committed May 3, 2022
1 parent de0eae9 commit 439b4d5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions docs/content/deployment/dagster-instance.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ event_log_storage:

# and this config grabs the database credentials from environment variables
event_log_storage:
module: dagster_mysql.event_log_storage
module: dagster_mysql.event_log
class: MySQLEventLogStorage
config:
mysql_db:
Expand All @@ -373,14 +373,14 @@ event_log_storage:

# and this config sets the credentials via DB connection string / url:
event_log_storage:
module: dagster_mysql.event_log_storage
module: dagster_mysql.event_log
class: MySQLEventLogStorage
config:
mysql_url: { MYSQL_DB_CONN_STRING }

# this config grabs the MySQL connection string from environment variables
event_log_storage:
module: dagster_mysql.event_log_storage
module: dagster_mysql.event_log
class: MySQLEventLogStorage
config:
mysql_url:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ event_log_storage:

# and this config grabs the database credentials from environment variables
event_log_storage:
module: dagster_mysql.event_log_storage
module: dagster_mysql.event_log
class: MySQLEventLogStorage
config:
mysql_db:
Expand All @@ -246,14 +246,14 @@ event_log_storage:

# and this config sets the credentials via DB connection string / url:
event_log_storage:
module: dagster_mysql.event_log_storage
module: dagster_mysql.event_log
class: MySQLEventLogStorage
config:
mysql_url: { MYSQL_DB_CONN_STRING }

# this config grabs the MySQL connection string from environment variables
event_log_storage:
module: dagster_mysql.event_log_storage
module: dagster_mysql.event_log
class: MySQLEventLogStorage
config:
mysql_url:
Expand Down

1 comment on commit 439b4d5

@vercel
Copy link

@vercel vercel bot commented on 439b4d5 May 3, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.