Skip to content

Commit

Permalink
[BUG] Fix endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
Leguark committed May 21, 2021
1 parent 8d84e90 commit 1308bc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion subsurface/interfaces/liquid_earth/rest_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def _put_file_in_project(self, project_id: str, data_name, data_type: DataTypes,
def _post_update_meta_data(self, project_id: str, data_name: str, data_type: DataTypes):

query_param = f"?project_id={project_id}&data_id={data_name}&data_type={data_type.value}"
end_point = "http://localhost:7071/api/update_project_meta" + query_param
end_point = "subsurface-lite/v1/update_project_meta" + query_param

response = requests.post(end_point)

Expand Down

0 comments on commit 1308bc2

Please # to comment.