Skip to content

Commit

Permalink
CTX-5430: Storagepath bug on node fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
Bogdan Tintor committed Aug 13, 2024
1 parent adc43cc commit 258e158
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 258e158

Please sign in to comment.