Skip to content

Commit

Permalink
Ignore Free Temp logic on Windows hosts (AcademySoftwareFoundation#1385)
Browse files Browse the repository at this point in the history
The free temp logic is not working as intended on Windows, for now it is being disabled.

There is an action item being worked on to document the stage of feature parity between Linux and Windows hosts.

Co-authored-by: Ramon Figueiredo <rfigueiredo@imageworks.com>
  • Loading branch information
DiegoTavares and ramonfigueiredo authored Jun 20, 2024
1 parent be9c15e commit 9974f5d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ private void changeHardwareState(DispatchHost host, HardwareState reportState, b
Long minBookableFreeTempDir = env.getRequiredProperty("dispatcher.min_bookable_free_temp_dir_kb", Long.class);

// Prevent cue frames from booking on hosts with full temporary directories
if (minBookableFreeTempDir != -1) {
if (minBookableFreeTempDir != -1 && !host.os.equalsIgnoreCase("Windows")) {
if (host.hardwareState == HardwareState.UP && freeTempDir < minBookableFreeTempDir) {

// Insert a comment indicating that the Host status = Repair with reason = Full temporary directory
Expand Down

0 comments on commit 9974f5d

Please sign in to comment.