-
Notifications
You must be signed in to change notification settings - Fork 889
Error getting agent logs
displaying upon workspace start/stops, despite no issue
#10078
New issue
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
Comments
I figured out this happens with Safari's old versions rather than 15.3 |
Adding a polyfill should work: if (!Array.prototype.at) {
Array.prototype.at = function at(n) {
let i = Math.trunc(n) || 0
if (i < 0) i += this.length
if (i < 0 || i >= this.length) return undefined
return this[i]
}
} |
@ericpaulsen this is related to old browser versions, so I would like to know from you how frequently we see customers using browser versions +2 years old. |
@BrunoQuaresma i don't have any data on our customer browser versions. although I am consistently seeing this behavior on Firefox 119 (latest). |
It was not related to the In our case, this happens because the "agent logs" can be toggled, and depending on whether that is open or not, it will close or open the connection. One way to reproduce this is to open the agent logs section and close it immediately. |
since upgrading to 2.2.0, i've been seeing the below banner display during workspace stop/starts. i'm unable to consistently reproduce, and it is displaying even when there is no issue with the workspace agent init/startup script.
The text was updated successfully, but these errors were encountered: