Skip to content

Commit

Permalink
0003733: Logging for authorization denied
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Sep 21, 2018
1 parent 4826ff4 commit f7914da
Showing 1 changed file with 6 additions and 6 deletions.
Expand Up @@ -84,17 +84,17 @@ protected void init() {
this.uriHandlers.add(new BandwidthSamplerUriHandler(parameterService, customInterceptors));
this.uriHandlers.add(new PullUriHandler(parameterService, nodeService,
configurationService, dataExtractorService, registrationService, statisticManager, outgoingBatchService,
add(customInterceptors, concurrencyInterceptor, authInterceptor)));
add(customInterceptors, authInterceptor, concurrencyInterceptor)));
this.uriHandlers.add(new PushUriHandler(parameterService, dataLoaderService,
statisticManager, nodeService, add(customInterceptors, concurrencyInterceptor, authInterceptor)));
statisticManager, nodeService, add(customInterceptors, authInterceptor, concurrencyInterceptor)));
this.uriHandlers.add(new PushStatusUriHandler(parameterService, nodeCommunicationService,
add(customInterceptors, concurrencyInterceptor, authInterceptor)));
add(customInterceptors, authInterceptor, concurrencyInterceptor)));
this.uriHandlers.add(new RegistrationUriHandler(parameterService, registrationService,
add(customInterceptors, concurrencyInterceptor)));
this.uriHandlers.add(new ConfigurationUriHandler(parameterService, dataExtractorService,
add(customInterceptors, concurrencyInterceptor, authInterceptor)));
this.uriHandlers.add(new FileSyncPullUriHandler(this, add(customInterceptors, concurrencyInterceptor, authInterceptor)));
this.uriHandlers.add(new FileSyncPushUriHandler(this, add(customInterceptors, concurrencyInterceptor, authInterceptor)));
add(customInterceptors, authInterceptor, concurrencyInterceptor)));
this.uriHandlers.add(new FileSyncPullUriHandler(this, add(customInterceptors, authInterceptor, concurrencyInterceptor)));
this.uriHandlers.add(new FileSyncPushUriHandler(this, add(customInterceptors, authInterceptor, concurrencyInterceptor)));
this.uriHandlers.add(new CopyNodeUriHandler(this, add(customInterceptors, authInterceptor)));
if (parameterService.is(ParameterConstants.WEB_BATCH_URI_HANDLER_ENABLE)) {
this.uriHandlers.add(new BatchUriHandler(parameterService, dataExtractorService, customInterceptors));
Expand Down

0 comments on commit f7914da

Please sign in to comment.