Skip to content

Commit

Permalink
Qa fix for #55
Browse files Browse the repository at this point in the history
Used wrong config var in previous commit.
  • Loading branch information
nickdos committed Nov 14, 2018
1 parent da904a4 commit 62828d3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ class ExternalSiteController {
*
*/
def proxyAutocomplete = {
def url = ( "${grailsApplication.config.bieService?.baseUrl}/search/auto.json" + params.toQueryString() ).toURL()
def url = ( "${grailsApplication.config.getProperty("bie.index.url")}/search/auto.json" + params.toQueryString() ).toURL()
HttpURLConnection connection = (HttpURLConnection) url.openConnection()
connection.setRequestMethod("GET")
connection.connect()
Expand Down

0 comments on commit 62828d3

Please sign in to comment.