This is an automated email from the ASF dual-hosted git repository.
fgreg pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-sdap-nexus.git
The following commit(s) were added to refs/heads/master by this push:
new 27802a6 SDAP-191 Remove Access-Control-Allow-Origin :* (#67)
27802a6 is described below
commit 27802a6ec17db3e781a72776cdeb28d0745a923a
Author: fgreg <[email protected]>
AuthorDate: Wed Mar 20 15:54:27 2019 -0700
SDAP-191 Remove Access-Control-Allow-Origin :* (#67)
---
analysis/webservice/webapp.py | 1 -
1 file changed, 1 deletion(-)
diff --git a/analysis/webservice/webapp.py b/analysis/webservice/webapp.py
index ee7e0a8..8b324b1 100644
--- a/analysis/webservice/webapp.py
+++ b/analysis/webservice/webapp.py
@@ -56,7 +56,6 @@ class BaseHandler(tornado.web.RequestHandler):
self.request_thread_pool.apply_async(self.run)
def run(self):
- self.set_header("Access-Control-Allow-Origin", "*")
reqObject = NexusRequestObject(self)
try:
result = self.do_get(reqObject)