You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by lo...@apache.org on 2023/02/20 17:24:43 UTC

[beam] branch tinyLintFixes updated (0d404da3b99 -> 778e087452d)

This is an automated email from the ASF dual-hosted git repository.

lostluck pushed a change to branch tinyLintFixes
in repository https://gitbox.apache.org/repos/asf/beam.git


 discard 0d404da3b99 [prism] tiny lint fixes
 discard f14623b36c2 [#24789][prism] Handlers for combine, ParDo, GBK, Flatten  (#25558)
 discard 30f244615ab [#24789][prism] Minimum required jobservices (#25556)
 discard 1350598b15e [#24789][prism] Add testdofns for later (#25557)
 discard 18bd22bdb95 Bump github.com/tetratelabs/wazero from 1.0.0-pre.7 to 1.0.0-pre.9 in /sdks (#25560)
 discard 6ffc768b04c Doc commment typo.
     add 6e53f13871a Bump github.com/tetratelabs/wazero from 1.0.0-pre.7 to 1.0.0-pre.9 in /sdks (#25560)
     add bc0284b5cae [#24789][prism] Add testdofns for later (#25557)
     add fc4b80c091c [#24789][prism] Minimum required jobservices (#25556)
     add 85ebc2f46b0 [#24789][prism] Handlers for combine, ParDo, GBK, Flatten  (#25558)
     new a17d3429c6f Doc commment typo.
     new 778e087452d [prism] tiny lint fixes

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (0d404da3b99)
            \
             N -- N -- N   refs/heads/tinyLintFixes (778e087452d)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:


[beam] 02/02: [prism] tiny lint fixes

Posted by lo...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

lostluck pushed a commit to branch tinyLintFixes
in repository https://gitbox.apache.org/repos/asf/beam.git

commit 778e087452d4574c5acdb0c55ad98cf87050ef58
Author: Robert Burke <ro...@frantil.com>
AuthorDate: Sun Feb 19 11:57:35 2023 -0800

    [prism] tiny lint fixes
---
 sdks/go/pkg/beam/runners/prism/internal/config/config_test.go | 2 +-
 sdks/go/pkg/beam/runners/prism/internal/urns/urns.go          | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sdks/go/pkg/beam/runners/prism/internal/config/config_test.go b/sdks/go/pkg/beam/runners/prism/internal/config/config_test.go
index 59fcdd56d65..4c2642e78f9 100644
--- a/sdks/go/pkg/beam/runners/prism/internal/config/config_test.go
+++ b/sdks/go/pkg/beam/runners/prism/internal/config/config_test.go
@@ -54,7 +54,7 @@ func TestHandlerRegistry(t *testing.T) {
 
 	type spotCheck struct {
 		v, h string
-		want interface{}
+		want any
 	}
 	tests := []struct {
 		name     string
diff --git a/sdks/go/pkg/beam/runners/prism/internal/urns/urns.go b/sdks/go/pkg/beam/runners/prism/internal/urns/urns.go
index 09ee59c969a..035ab3c0727 100644
--- a/sdks/go/pkg/beam/runners/prism/internal/urns/urns.go
+++ b/sdks/go/pkg/beam/runners/prism/internal/urns/urns.go
@@ -13,7 +13,7 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-// Package urn handles extracting urns from all the protos.
+// Package urns handles extracting urns from all the protos.
 package urns
 
 import (


[beam] 01/02: Doc commment typo.

Posted by lo...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

lostluck pushed a commit to branch tinyLintFixes
in repository https://gitbox.apache.org/repos/asf/beam.git

commit a17d3429c6fade2f0224cb4d159477317999fcb6
Author: Robert Burke <ro...@frantil.com>
AuthorDate: Sun Feb 19 10:56:19 2023 -0800

    Doc commment typo.
---
 sdks/go/test/integration/primitives/checkpointing.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sdks/go/test/integration/primitives/checkpointing.go b/sdks/go/test/integration/primitives/checkpointing.go
index ae61f318629..7a349699dd4 100644
--- a/sdks/go/test/integration/primitives/checkpointing.go
+++ b/sdks/go/test/integration/primitives/checkpointing.go
@@ -43,7 +43,7 @@ func (fn *selfCheckpointingDoFn) CreateInitialRestriction(_ []byte) offsetrange.
 	}
 }
 
-// CreateTracker wraps the fiven restriction into a LockRTracker type.
+// CreateTracker wraps the given restriction into a LockRTracker type.
 func (fn *selfCheckpointingDoFn) CreateTracker(rest offsetrange.Restriction) *sdf.LockRTracker {
 	return sdf.NewLockRTracker(offsetrange.NewTracker(rest))
 }