You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by ma...@apache.org on 2019/10/30 15:10:48 UTC

[airavata-php-gateway] branch staging updated: AIRAVATA-3234 Ignore inputs of type URI_COLLECTION

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

machristie pushed a commit to branch staging
in repository https://gitbox.apache.org/repos/asf/airavata-php-gateway.git


The following commit(s) were added to refs/heads/staging by this push:
     new bb1ab43  AIRAVATA-3234 Ignore inputs of type URI_COLLECTION
bb1ab43 is described below

commit bb1ab43489eb2d01a66f720cb23d2b3d80d9bada
Author: Marcus Christie <ma...@iu.edu>
AuthorDate: Wed Oct 30 11:10:34 2019 -0400

    AIRAVATA-3234 Ignore inputs of type URI_COLLECTION
---
 app/libraries/ExperimentUtilities.php | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/app/libraries/ExperimentUtilities.php b/app/libraries/ExperimentUtilities.php
index f2f390e..36d7259 100755
--- a/app/libraries/ExperimentUtilities.php
+++ b/app/libraries/ExperimentUtilities.php
@@ -922,7 +922,9 @@ class ExperimentUtilities
                             </div>';
                         break;
                     }
-
+                case DataType::URI_COLLECTION:
+                    // Support for URI_COLLECTION is not implemented in PGA, just ignore
+                    break;
                 default:
                     CommonUtilities::print_error_message('Input data type not supported!
                     Please file a bug report using the link in the Help menu.');