wilfred-s commented on code in PR #158:
URL: https://github.com/apache/yunikorn-web/pull/158#discussion_r1430988831
##########
src/app/services/scheduler/scheduler.service.ts:
##########
@@ -82,8 +82,10 @@ export class SchedulerService {
fetchAppList(partitionName: string, queueName: string):
Observable<AppInfo[]> {
const appsUrl =
`${this.envConfig.getSchedulerWebAddress()}/ws/v1/partition/${partitionName}/queue/${queueName}/applications`;
+ const headers = new HttpHeaders();
+ headers.set('Accept-Encoding', 'gzip')
Review Comment:
it should just be ignored if the server does not support it. Fallback will
always be identity transform (i.e. no compression)
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]