You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by da...@apache.org on 2022/11/28 14:23:02 UTC

[beam] branch master updated (fd7e86269fa -> 0fe001ee9eb)

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

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


    from fd7e86269fa Update java-multi-language-pipelines.md (#24345)
     add 0fe001ee9eb [Tour Of Beam] persistence_key for Pg::SaveSnippet (#24287)

No new revisions were added by this update.

Summary of changes:
 .github/workflows/tour_of_beam_examples_ci.yml     |   6 +-
 learning/tour-of-beam/backend/README.md            |   8 +-
 learning/tour-of-beam/backend/function.go          |   4 +-
 .../backend/integration_tests/auth_emulator.go     |   4 +-
 .../backend/integration_tests/auth_test.go         |  99 +++++-
 .../backend/integration_tests/client_pg.go         |  39 +++
 learning/tour-of-beam/backend/internal/entity.go   |   9 +-
 .../backend/internal/persistence_key.go            |  23 +-
 .../backend/internal/service/content.go            |  24 +-
 .../helper.go => internal/service/mock_helper.go}  |  20 +-
 .../backend/internal/service/pg_adapter.go         |   3 +-
 .../backend/internal/storage/datastore.go          |  31 +-
 .../tour-of-beam/backend/internal/storage/iface.go |   6 +-
 .../backend/internal/storage/index.yaml            |   4 +
 .../tour-of-beam/backend/internal/storage/mock.go  |   5 +-
 .../backend/internal/storage/schema.go             |   7 +-
 .../tour-of-beam/backend/playground_api/api.pb.go  | 336 +++++++++++----------
 17 files changed, 414 insertions(+), 214 deletions(-)
 create mode 100644 learning/tour-of-beam/backend/integration_tests/client_pg.go
 copy sdks/go/pkg/beam/core/util/protox/protox.go => learning/tour-of-beam/backend/internal/persistence_key.go (66%)
 rename learning/tour-of-beam/backend/{playground_api/helper.go => internal/service/mock_helper.go} (60%)