We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e2fd05 commit d2bca87Copy full SHA for d2bca87
src/main/kotlin/com/coder/gateway/models/WorkspaceAgentModel.kt
@@ -32,6 +32,7 @@ data class WorkspaceAgentModel(
32
if (name != other.name) return false
33
if (templateID != other.templateID) return false
34
if (templateName != other.templateName) return false
35
+ if (agentStatus != other.agentStatus) return false
36
37
return true
38
}
@@ -42,6 +43,7 @@ data class WorkspaceAgentModel(
42
43
result = 31 * result + name.hashCode()
44
result = 31 * result + templateID.hashCode()
45
result = 31 * result + templateName.hashCode()
46
+ result = 31 * result + agentStatus.hashCode()
47
return result
48
49
0 commit comments