Skip to content

Commit

Permalink
URL fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitry Duplyakin committed Feb 13, 2024
1 parent efa9aa7 commit 8ecd9e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions proto.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,9 +207,9 @@ def timeseries_to_12_by_24(df, styling=True, format="html"):
if os.environ.get('AWS_EXECUTION_ENV') == "AWS_ECS_EC2":
running_in_aws = True
if port == 80 or port == "80":
URL_prefix = "http://dw-tap.hpc.nrel.gov"
URL_prefix = "http://dw-tap.nrel.gov"
else:
URL_prefix = "http://dw-tap.hpc.nrel.gov:%s" % str(port)
URL_prefix = "http://dw-tap.nrel.gov:%s" % str(port)
else:
running_in_aws = False
if port == 80 or port == "80":
Expand Down

0 comments on commit 8ecd9e9

Please sign in to comment.