Skip to content

Commit

Permalink
Merge pull request #248 from bogdant36/CTX-5430-envfix
Browse files Browse the repository at this point in the history
CTX-5430: Storagepath bug on node fix.
  • Loading branch information
dule1322 authored Aug 13, 2024
2 parents 8ff3aca + 258e158 commit 6432161
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions coretex/configuration/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def getConfigPath(cls) -> Path:

@property
def name(self) -> str:
return self.getValue("name", str, "CTX_NODE_NAME")
return self.getValue("name", str)

@name.setter
def name(self, value: str) -> None:
Expand All @@ -49,7 +49,7 @@ def accessToken(self, value: str) -> None:

@property
def storagePath(self) -> str:
return self.getValue("storagePath", str, "CTX_STORAGE_PATH")
return self.getValue("storagePath", str)

@storagePath.setter
def storagePath(self, value: Optional[str]) -> None:
Expand Down

0 comments on commit 6432161

Please sign in to comment.