Skip to content

Commit

Permalink
fix: disable simulator restart at spurious configuration file change
Browse files Browse the repository at this point in the history
detection

Signed-off-by: Jérôme Benoit <[email protected]>
  • Loading branch information
Jérôme Benoit committed Nov 8, 2023
1 parent 948004f commit f6591eb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/charging-station/Bootstrap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@ export class Bootstrap extends EventEmitter {
performanceStorageConfiguration.uri!,
this.logPrefix(),
));
Configuration.configurationChangeCallback = async () => Bootstrap.getInstance().restart(false);
// FIXME: Disabled until the spurious configuration file change detection on MacOS is identified
// Configuration.configurationChangeCallback = async () => Bootstrap.getInstance().restart(false);

Check warning on line 103 in src/charging-station/Bootstrap.ts

View workflow job for this annotation

GitHub Actions / Build simulator with Node 20.x on ubuntu-latest

This line has a length of 102. Maximum allowed is 100
}

public static getInstance(): Bootstrap {
Expand Down

0 comments on commit f6591eb

Please sign in to comment.