You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First try: python update_summary.py (updatesummary.py doesn't exists) sqlite3.OperationalError: no such table: summaries?
Reason: summary.db is empty. There is a create table function but that is never called.
I called the table create function myself but here comes the next error: TypeError: must be string, not None
Reason: table summaries is empty but the update_summary script selects max(date)
summary.db is empty and if i follow the readme i get more than one error message:
https://github.com/Storj/driveshare-graph/blob/master/README.rst#deploy
First try:
python update_summary.py
(updatesummary.py doesn't exists)sqlite3.OperationalError: no such table: summaries?
Reason: summary.db is empty. There is a create table function but that is never called.
I called the table create function myself but here comes the next error:
TypeError: must be string, not None
Reason: table summaries is empty but the update_summary script selects max(date)
sqlite> INSERT INTO summaries (auth_address, date,payout_address, uptime, duration, height)VALUES ("any address", "2016-03-18 00:00:00", "any address", 0, 0 ,0)
The text was updated successfully, but these errors were encountered: