Skip to content

Commit

Permalink
Fixed error
Browse files Browse the repository at this point in the history
  • Loading branch information
mpyne1 committed Jan 23, 2025
1 parent cd90e1e commit 50c36ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion houston-common-lib/lib/managers/easysetup/manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export class EasySetupConfigurator implements IEasySetupConfigurator {
.andThen(() => this.applySambaConfig(config));
}

private applyZFSConfig(config: EasySetupConfig) {
private applyZFSConfig(_config: EasySetupConfig) {
return okAsync({});
}

Expand Down
2 changes: 1 addition & 1 deletion houston-common-lib/lib/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export class Server {
return this.execute(new Command(["true"]), true).map(() => true);
}

getServerInfo(): ResultAsync<ServerInfo> {
getServerInfo(): ResultAsync<ServerInfo, ProcessError> {
return new File(
this,
"/etc/45drives/server_info/server_info.json"
Expand Down

0 comments on commit 50c36ff

Please sign in to comment.