summaryrefslogtreecommitdiff
path: root/lib/rest-client-wrapper.rb
diff options
context:
space:
mode:
authorChristoph Helma <helma@in-silico.ch>2012-04-26 16:04:05 +0200
committerChristoph Helma <helma@in-silico.ch>2012-04-26 16:04:05 +0200
commitf8b6f8d19566d372e47edba7968ce66ff09052c9 (patch)
tree507b4ffe74bf63bbe8664aac2b3c57efae8717ab /lib/rest-client-wrapper.rb
parentb01dce14f765875d7c75edb545323b444fa2b140 (diff)
tests removed, URI.accessible? check temporarily removed
Diffstat (limited to 'lib/rest-client-wrapper.rb')
-rw-r--r--lib/rest-client-wrapper.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/rest-client-wrapper.rb b/lib/rest-client-wrapper.rb
index 479d5a5..3071432 100644
--- a/lib/rest-client-wrapper.rb
+++ b/lib/rest-client-wrapper.rb
@@ -18,7 +18,8 @@ module OpenTox
# check input
@subjectid = headers[:subjectid] ? headers[:subjectid] : nil
bad_request_error "Invalid URI: '#{uri}'" unless URI.valid? uri
- not_found_error "URI '#{uri}' not found." unless URI.accessible?(uri, @subjectid) unless URI.ssl?(uri)
+ #TODO fix for internal installations
+ #not_found_error "URI '#{uri}' not found." unless URI.accessible?(uri, @subjectid) unless URI.ssl?(uri)
bad_request_error "Headers are not a hash: #{headers.inspect}" unless headers==nil or headers.is_a?(Hash)
# make sure that no header parameters are set in the payload
[:accept,:content_type,:subjectid].each do |header|