diff --git a/SRT/Servers/SRTMinorServo/src/SRTMinorServoBossCore.cpp b/SRT/Servers/SRTMinorServo/src/SRTMinorServoBossCore.cpp
index 7c50b8ccae5ab97a78cfb86d87f53b02920ba13d..e890517533278ba5bd0952d90e0cfc0296d56285 100644
--- a/SRT/Servers/SRTMinorServo/src/SRTMinorServoBossCore.cpp
+++ b/SRT/Servers/SRTMinorServo/src/SRTMinorServoBossCore.cpp
@@ -357,7 +357,8 @@ void SRTMinorServoBossCore::park()
     m_current_servos.clear();
     m_current_tracking_servos.clear();
 
-    try
+    // Skipping this because of the cover not always engaging the limit switch
+    /*try
     {
         // Send the STOW command to close the gregorian cover
         if(!m_socket.sendCommand(SRTMinorServoCommandLibrary::stow("GREGORIAN_CAP", COVER_STATUS_CLOSED)).checkOutput())
@@ -376,7 +377,7 @@ void SRTMinorServoBossCore::park()
         ex.setReason("Error while sending the STOW command to the gregorian cover.");
         ex.log(LM_DEBUG);
         throw ex.getParkingErrorEx();
-    }
+    }*/
 
     // Send the STOP command to all the servos
     for(const auto& [servo_name, servo] : m_servos)
diff --git a/SRT/Servers/SRTMinorServo/src/SRTMinorServoParkThread.cpp b/SRT/Servers/SRTMinorServo/src/SRTMinorServoParkThread.cpp
index f13092fb31537803fbca342d029a145e25ac7323..2e6dff7e242e9ca38e1622340a2a7fccdba8edf8 100644
--- a/SRT/Servers/SRTMinorServo/src/SRTMinorServoParkThread.cpp
+++ b/SRT/Servers/SRTMinorServo/src/SRTMinorServoParkThread.cpp
@@ -60,7 +60,9 @@ void SRTMinorServoParkThread::runLoop()
         case 0:
         {
             // First we check if the gregorian cover has closed
-            bool completed = m_core.m_status.getGregorianCoverPosition() == COVER_STATUS_CLOSED;
+            // TEMPORARY: we skip the gregorian cover closing, therefore we don't check
+            //bool completed = m_core.m_status.getGregorianCoverPosition() == COVER_STATUS_CLOSED;
+            bool completed = true;
 
             // Then we cycle through all the servos and make sure their operative mode is STOP
             if(completed && std::all_of(m_core.m_servos.begin(), m_core.m_servos.end(), [](const std::pair<std::string, SRTBaseMinorServo_ptr>& servo) -> bool