@@ -71,47 +71,47 @@ var ConnectivityChecker = {
7171 httpToHubWithoutProxy : function ( callback ) {
7272 var requestUrl = constants . HUB_STATUS_URL ;
7373 var requestOptions = ConnectivityChecker . reqOpsWithoutProxy ( requestUrl , 'http' ) ;
74- fireRequest ( requestOptions , 'http' , 'HTTP Request To Hub Without Proxy' , [ 200 ] , function ( response ) {
74+ fireRequest ( requestOptions , 'http' , 'HTTP Request To ' + requestUrl + ' Without Proxy', [ 200 ] , function ( response ) {
7575 callback ( response ) ;
7676 } ) ;
7777 } ,
7878
7979 httpToRailsWithoutProxy : function ( callback ) {
8080 var requestUrl = constants . RAILS_AUTOMATE ;
8181 var requestOptions = ConnectivityChecker . reqOpsWithoutProxy ( requestUrl , 'http' ) ;
82- fireRequest ( requestOptions , 'http' , 'HTTP Request To Rails Without Proxy' , [ 200 , 301 ] , function ( response ) {
82+ fireRequest ( requestOptions , 'http' , 'HTTP Request To ' + requestUrl + ' Without Proxy', [ 200 , 301 ] , function ( response ) {
8383 callback ( response ) ;
8484 } ) ;
8585 } ,
8686
8787 httpsToHubWithoutProxy : function ( callback ) {
8888 var requestUrl = constants . HUB_STATUS_URL ;
8989 var requestOptions = ConnectivityChecker . reqOpsWithoutProxy ( requestUrl , 'https' ) ;
90- fireRequest ( requestOptions , 'https' , 'HTTPS Request To Hub Without Proxy' , [ 200 ] , function ( response ) {
90+ fireRequest ( requestOptions , 'https' , 'HTTPS Request To ' + requestUrl + ' Without Proxy', [ 200 ] , function ( response ) {
9191 callback ( response ) ;
9292 } ) ;
9393 } ,
9494
9595 httpsToRailsWithoutProxy : function ( callback ) {
9696 var requestUrl = constants . RAILS_AUTOMATE ;
9797 var requestOptions = ConnectivityChecker . reqOpsWithoutProxy ( requestUrl , 'https' ) ;
98- fireRequest ( requestOptions , 'https' , 'HTTPS Request to Rails Without Proxy' , [ 301 , 302 ] , function ( response ) {
98+ fireRequest ( requestOptions , 'https' , 'HTTPS Request to ' + requestUrl + ' Without Proxy', [ 301 , 302 ] , function ( response ) {
9999 callback ( response ) ;
100100 } ) ;
101101 } ,
102102
103103 httpToHubWithProxy : function ( callback ) {
104104 var requestUrl = constants . HUB_STATUS_URL ;
105105 var requestOptions = ConnectivityChecker . reqOpsWithProxy ( requestUrl , 'http' ) ;
106- fireRequest ( requestOptions , 'http' , 'HTTP Request To Hub With Proxy' , [ 200 ] , function ( response ) {
106+ fireRequest ( requestOptions , 'http' , 'HTTP Request To ' + requestUrl + ' With Proxy', [ 200 ] , function ( response ) {
107107 callback ( response ) ;
108108 } ) ;
109109 } ,
110110
111111 httpToRailsWithProxy : function ( callback ) {
112112 var requestUrl = constants . RAILS_AUTOMATE ;
113113 var requestOptions = ConnectivityChecker . reqOpsWithProxy ( requestUrl , 'http' ) ;
114- fireRequest ( requestOptions , 'http' , 'HTTP Request To Rails With Proxy' , [ 301 ] , function ( response ) {
114+ fireRequest ( requestOptions , 'http' , 'HTTP Request To ' + requestUrl + ' With Proxy', [ 301 ] , function ( response ) {
115115 callback ( response ) ;
116116 } ) ;
117117 } ,
0 commit comments