Kimahriman commented on PR #1066:
URL: https://github.com/apache/knox/pull/1066#issuecomment-3617294670

   > @Kimahriman and @pan3793 Can you close the JIRA and also update it with 
the proper release version (`2.1.0`) Thank you a lot for your contribution the 
Apache Knox!
   
   Closed as resolved and set the version to 3.0.0 since it looks like 2.1.0 
was already released?
   
   
   
   > feedback - applied this patch to our internal cluster, now Knox works as 
expected with Spark 4.0 and 4.1
   
   Thanks for verifying!
   
   We've also hit another error unrelated to this on the structured streaming 
page for a single stream. I'll write up an issue but basically there's a nested 
module-based script in the HTML that gets rewritten from
   ```html
   <script type="module">
     import {drawHistogram} from 
"/proxy/application_xxx_xxx/static/streaming-page.js";
     import {drawAreaStack} from 
"/proxy/application_xxx_xxx/static/streaming-page.js";
     import {registerTimeline} from 
"/proxy/application_xxx_xxx/static/streaming-page.js";
     import {registerHistogram} from 
"/proxy/application_xxx_xxx/static/streaming-page.js";
     import {drawTimeline} from 
"/proxy/application_xxx_xxx/static/streaming-page.js";
   ```
   to
   ```html
   <script type="module">
     import {drawHistogram} from 
"https://knox.example.com/gateway/topology-name/yarn/proxy/application_xxx_xxx/static/streaming-page.js";;
     import {drawAreaStack} from 
"/proxy/application_xxx_xxx/static/streaming-page.js";
     import {registerTimeline} from 
"/proxy/application_xxx_xxx/static/streaming-page.js";
     import {registerHistogram} from 
"/proxy/application_xxx_xxx/static/streaming-page.js";
     import {drawTimeline} from 
"/proxy/application_xxx_xxx/static/streaming-page.js";
   ```
   
   Only the first one gets rewritten


-- 
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]

Reply via email to