diff options
author | Simon Rettberg | 2023-12-15 16:02:20 +0100 |
---|---|---|
committer | Simon Rettberg | 2023-12-15 16:02:20 +0100 |
commit | ed651ee605aaf52ad165da448f908e7270009e6a (patch) | |
tree | a7d20d67b77638bac47c8feef654daf9f6e849ea /dozentenmodul | |
parent | [client] Add hint to click 'login' for browser auth (diff) | |
download | tutor-module-ed651ee605aaf52ad165da448f908e7270009e6a.tar.gz tutor-module-ed651ee605aaf52ad165da448f908e7270009e6a.tar.xz tutor-module-ed651ee605aaf52ad165da448f908e7270009e6a.zip |
Commit to force CI run
Diffstat (limited to 'dozentenmodul')
-rw-r--r-- | dozentenmodul/src/main/java/org/openslx/dozmod/util/ProxyConfigurator.java | 2 |
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) { |