You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by lb...@apache.org on 2019/10/30 12:13:05 UTC

[camel-quarkus] 05/06: Tenporary disable tfhir tests as the testing endpoint seems to be down

This is an automated email from the ASF dual-hosted git repository.

lburgazzoli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit f1a1d14150e443b7436d0ec16b52c7020be028e9
Author: lburgazzoli <lb...@gmail.com>
AuthorDate: Wed Oct 30 11:39:41 2019 +0100

    Tenporary disable tfhir tests as the testing endpoint seems to be down
---
 integration-tests/fhir/pom.xml                                   | 5 +++--
 integration-tests/fhir/src/main/resources/application.properties | 6 ++++--
 2 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/integration-tests/fhir/pom.xml b/integration-tests/fhir/pom.xml
index bd314b4..cc6fc0c 100644
--- a/integration-tests/fhir/pom.xml
+++ b/integration-tests/fhir/pom.xml
@@ -78,9 +78,10 @@
                 <configuration>
                     <systemProperties combine.children="append">
                         <!--
-                        <quarkus.camel.fhir.enable-dstu2>true</quarkus.camel.fhir.enable-dstu2>
-                        <quarkus.camel.fhir.enable-r4>true</quarkus.camel.fhir.enable-r4>
+                            temporary disabled as FHIR testing service is down
                         -->
+                        <quarkus.camel.fhir.enable-dstu2>false</quarkus.camel.fhir.enable-dstu2>
+                        <quarkus.camel.fhir.enable-r4>false</quarkus.camel.fhir.enable-r4>
                     </systemProperties>
                 </configuration>
             </plugin>
diff --git a/integration-tests/fhir/src/main/resources/application.properties b/integration-tests/fhir/src/main/resources/application.properties
index 863922c..7ff03d1 100644
--- a/integration-tests/fhir/src/main/resources/application.properties
+++ b/integration-tests/fhir/src/main/resources/application.properties
@@ -1,4 +1,4 @@
-## ---------------------------------------------------------------------------
+ ## ---------------------------------------------------------------------------
 ## Licensed to the Apache Software Foundation (ASF) under one or more
 ## contributor license agreements.  See the NOTICE file distributed with
 ## this work for additional information regarding copyright ownership.
@@ -25,8 +25,10 @@ quarkus.ssl.native=true
 # The HAPI-FHIR library, on which camel-fhir depends on, heavily uses reflection which affects performance in Quarkus
 # (memory footprint, build time, CPU resources etc...). For the sake of time, only DSTU3 (which is the default FHIR version)
 # tests are enabled for DSTU3 only by default.
+#
+# All the test are temporary disabled as the FHIR testing service seems to be down
 quarkus.camel.fhir.enable-dstu2=false
-quarkus.camel.fhir.enable-dstu3=true
+quarkus.camel.fhir.enable-dstu3=false
 quarkus.camel.fhir.enable-r4=false
 
 #