You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Resolves#1938.
Before this change, if there was a failure during binding generation
which result in an exception, it was actually cached and returned to the
user for the next hour.
This change causes the server to not cache the failure, and instead let
the user retry.
Copy file name to clipboardExpand all lines: jit-binding-server/src/test/kotlin/io/github/typesafegithub/workflows/jitbindingserver/ArtifactRoutesTest.kt
+2-8Lines changed: 2 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -102,15 +102,9 @@ class ArtifactRoutesTest :
102
102
// When
103
103
val response2 = client.get("some-owner/some-action/v4/some-action-v4.pom")
104
104
// Then
105
-
// This assertion represents an undesired behavior - it should retry generating the binding
106
-
// and return the actual POM.
107
-
// TODO fix in https://github.com/typesafegithub/github-workflows-kt/issues/1938
Copy file name to clipboardExpand all lines: jit-binding-server/src/test/kotlin/io/github/typesafegithub/workflows/jitbindingserver/MetadataRoutesTest.kt
+2-8Lines changed: 2 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -112,15 +112,9 @@ class MetadataRoutesTest :
112
112
// When
113
113
val response2 = client.get("some-owner/some-action/maven-metadata.xml")
114
114
// Then
115
-
// This assertion represents an undesired behavior - it should retry generating the artifact
116
-
// and return the actual POM.
117
-
// TODO fix in https://github.com/typesafegithub/github-workflows-kt/issues/1938
0 commit comments