summaryrefslogtreecommitdiffstats
path: root/dozentenmodul/src
diff options
context:
space:
mode:
authorSimon Rettberg2023-12-15 16:02:20 +0100
committerSimon Rettberg2023-12-15 16:02:20 +0100
commited651ee605aaf52ad165da448f908e7270009e6a (patch)
treea7d20d67b77638bac47c8feef654daf9f6e849ea /dozentenmodul/src
parent[client] Add hint to click 'login' for browser auth (diff)
downloadtutor-module-ed651ee605aaf52ad165da448f908e7270009e6a.tar.gz
tutor-module-ed651ee605aaf52ad165da448f908e7270009e6a.tar.xz
tutor-module-ed651ee605aaf52ad165da448f908e7270009e6a.zip
Commit to force CI run
Diffstat (limited to 'dozentenmodul/src')
-rw-r--r--dozentenmodul/src/main/java/org/openslx/dozmod/util/ProxyConfigurator.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/dozentenmodul/src/main/java/org/openslx/dozmod/util/ProxyConfigurator.java b/dozentenmodul/src/main/java/org/openslx/dozmod/util/ProxyConfigurator.java
index 29aa86bd..724a25d6 100644
--- a/dozentenmodul/src/main/java/org/openslx/dozmod/util/ProxyConfigurator.java
+++ b/dozentenmodul/src/main/java/org/openslx/dozmod/util/ProxyConfigurator.java
@@ -256,7 +256,7 @@ public class ProxyConfigurator {
httpGet.setHeader("PAOS",
"ver=\"urn:liberty:paos:2003-08\";\"urn:oasis:names:tc:SAML:2.0:profiles:SSO:ecp\"");
try (CloseableHttpResponse response = client.execute(httpGet)) {
- LOGGER.debug("Master server replies with " + response.getCode());
+ LOGGER.debug("Master-server replies with " + response.getCode());
int rc = response.getCode();
return rc >= 200 && rc < 300;
} catch (Exception e) {