Kiln » KilnSupportScripts Powershell Scripts to help monitor a Kiln environment. Contact Fog Creek support before using.
Clone URL:  
Pushed to one repository · View In Graph Contained in tip

actually return true and false

Changeset 12049204e939

Parent 3cc15ed8c4a3

by Profile picture of User 476Ben McCormack <benm@fogcreek.com>

Changes to one file · Browse files at 12049204e939 Showing diff from parent 3cc15ed8c4a3 Diff from another changeset...

Change 1 of 1 Show Entire File checkBackend.ps1 Stacked
 
40
41
42
43
 
44
45
46
47
 
48
49
50
 
40
41
42
 
43
44
45
46
 
47
48
49
50
@@ -40,11 +40,11 @@
  #Restart the Kiln storage Service because something bad happened   write "$(Get-Date -format o) Something is wrong. Restarting Kiln Storage Service"   Restart-Service "KilnStorageService" - return False + return $False   }   else {   write "$(Get-Date -format o) Kiln backend is OK" - return True + return $True   }  }