Skip to content

Commit

Permalink
docs: log db instead of graph-node db
Browse files Browse the repository at this point in the history
Signed-off-by: madumas <[email protected]>
  • Loading branch information
madumas committed Nov 4, 2022
1 parent 61bd352 commit 3746a02
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,13 @@ options:
--rabbitmq-password RABBITMQ_PASSWORD
Password to use for the GQL logs RabbitMQ queue. [env var: RABBITMQ_PASSWORD] (default: guest)
--postgres-host POSTGRES_HOST
URL of the postgres instance use by the graph-nodes. [env var: POSTGRES_HOST] (default: None)
Host of the postgres instance storing the logs. [env var: POSTGRES_HOST] (default: None)
--postgres-database POSTGRES_DATABASE
Name of the graph-node database. [env var: POSTGRES_DATABASE] (default: None)
Name of the logs database. [env var: POSTGRES_DATABASE] (default: None)
--postgres-username POSTGRES_USERNAME
Username for the graph-node databse. [env var: POSTGRES_USERNAME] (default: None)
Username for the logs databse. [env var: POSTGRES_USERNAME] (default: None)
--postgres-password POSTGRES_PASSWORD
Password for the graph-node database. [env var: POSTGRES_PASSWORD] (default: None)
Password for the logs database. [env var: POSTGRES_PASSWORD] (default: None)
--log-level {DEBUG,INFO,WARNING,ERROR,CRITICAL}
[env var: LOG_LEVEL] (default: WARNING)
```
8 changes: 4 additions & 4 deletions autoagora_processor/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,25 +85,25 @@
"--postgres-host",
env_var="POSTGRES_HOST",
required=True,
help="URL of the postgres instance use by the graph-nodes.",
help="Host of the postgres instance storing the logs.",
)
argsparser.add_argument(
"--postgres-database",
env_var="POSTGRES_DATABASE",
required=True,
help="Name of the graph-node database.",
help="Name of the logs database.",
)
argsparser.add_argument(
"--postgres-username",
env_var="POSTGRES_USERNAME",
required=True,
help="Username for the graph-node databse.",
help="Username for the logs database.",
)
argsparser.add_argument(
"--postgres-password",
env_var="POSTGRES_PASSWORD",
required=True,
help="Password for the graph-node database.",
help="Password for the logs database.",
)
argsparser.add_argument(
"--log-level",
Expand Down

0 comments on commit 3746a02

Please sign in to comment.