File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -162,8 +162,7 @@ public function createServer(
162162 $ this ->userSession ,
163163 \OCP \Server::get (IFilenameValidator::class),
164164 \OCP \Server::get (IAccountManager::class),
165- $ isPublicShare ,
166- !$ debugEnabled
165+ $ isPublicShare
167166 )
168167 );
169168 $ server ->addPlugin (new QuotaPlugin ($ view ));
Original file line number Diff line number Diff line change @@ -301,7 +301,6 @@ public function __construct(
301301 \OCP \Server::get (IFilenameValidator::class),
302302 \OCP \Server::get (IAccountManager::class),
303303 false ,
304- $ config ->getSystemValueBool ('debug ' , false ) === false ,
305304 )
306305 );
307306 $ this ->server ->addPlugin (new ChecksumUpdatePlugin ());
Original file line number Diff line number Diff line change @@ -26,6 +26,8 @@ INSTALLED=$($OCC status | grep installed: | cut -d " " -f 5)
2626if [ " $INSTALLED " == " true" ]; then
2727 # Disable appstore to avoid spamming from CI
2828 $OCC config:system:set appstoreenabled --value=false --type=boolean
29+ # Enable debug mode
30+ $OCC config:system:set debug --value=true --type=boolean
2931 # Disable bruteforce protection because the integration tests do trigger them
3032 $OCC config:system:set auth.bruteforce.protection.enabled --value false --type bool
3133 # Disable rate limit protection because the integration tests do trigger them
You can’t perform that action at this time.
0 commit comments