Skip to content

Commit

Permalink
fix bug Q2 ingestion
Browse files Browse the repository at this point in the history
  • Loading branch information
juansensio committed Nov 28, 2024
1 parent 8b52d4e commit 2c9cd97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eotdl/eotdl/repos/APIRepo.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

class APIRepo:
def __init__(self, url=None):
# default_url = "https://api.eotdl.com/"
default_url = "http://localhost:8001/"
default_url = "https://api.eotdl.com/"
# default_url = "http://localhost:8001/"
self.url = url if url else os.getenv("EOTDL_API_URL", default_url)

def format_response(self, response):
Expand Down

0 comments on commit 2c9cd97

Please sign in to comment.