Skip to content

Commit

Permalink
Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
tmaeno committed Jun 6, 2022
1 parent 869ad40 commit 3a55c4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pandaserver/config/config_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
def load_config_map(section, target_dict):
if 'PANDA_HOME' not in os.environ:
return
config_map_name = 'panda_server_configmap.json'
config_map_path = os.path.join(os.environ['PANDA_HOME'], 'etc/configmap', config_map_name)
config_map_name = 'panda_server_config.json'
config_map_path = os.path.join(os.environ['PANDA_HOME'], 'etc/config_json', config_map_name)
if os.path.exists(config_map_path):
with open(config_map_path) as f:
tmp_data = json.load(f)
Expand Down

0 comments on commit 3a55c4b

Please sign in to comment.