We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
/newui
Expected: Selected instance ID page. Actual: Not the selected instance ID page. (randomly)
When redirecting to /newui, a cookie header like this is added...
Send cookie header:
Cookie: ARRAffinity=[object HTMLElement]; LoginNonce_405edcea=...; FedAuth1=....; ARRAffinity=34c46695ee21dee374a8022dd9e40334ed71886d093d06e62f05cd45b369eac5; ARRAffinitySameSite=34c46695ee21dee374a8022dd9e40334ed71886d093d06e62f05cd45b369eac5
There are two ARRAffinity cookies being sent, which I think is causing unexpected results.
ARRAffinity
Maybe, this code is wrong.
KuduLite/Kudu.Services.Web/Pages/NewUI/Index.cshtml
Line 22 in d4bb543
Before the redirect, Set the NavigateToInstance function in ajax to a cookie. So clickLink function should be unnecessary.
NavigateToInstance
clickLink function
The proof is that It works if you overwrite the clickLink function before the operation.
clickLink
// from Chrome DevTools Console function clickLink(){ }; // overwrite
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Reproduction
/newui
. But it will be a different instance than the one you selected.expected/actual
Expected: Selected instance ID page.
Actual: Not the selected instance ID page. (randomly)
When redirecting to
/newui
, a cookie header like this is added...Send cookie header:
There are two
ARRAffinity
cookies being sent, which I think is causing unexpected results.Problem code
Maybe, this code is wrong.
KuduLite/Kudu.Services.Web/Pages/NewUI/Index.cshtml
Line 22 in d4bb543
Before the redirect, Set the
NavigateToInstance
function in ajax to a cookie.So
clickLink function
should be unnecessary.The proof is that It works if you overwrite the
clickLink
function before the operation.The text was updated successfully, but these errors were encountered: