Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: cadence-workflow/cadence
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 165923d7d1043c95b0648ffa40dff662ebc3e5a7
Choose a base ref
..
head repository: cadence-workflow/cadence
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2e7cada32dd7ca05e52cd9cb97c18abd49af3279
Choose a head ref
Showing with 4,737 additions and 434 deletions.
  1. +1,150 −2 .gen/go/cadence/cadence.go
  2. +34 −0 .gen/go/cadence/workflowserviceclient/client.go
  3. +85 −1 .gen/go/cadence/workflowserviceserver/server.go
  4. +33 −0 .gen/go/cadence/workflowservicetest/client.go
  5. +362 −2 .gen/go/shared/shared.go
  6. +683 −2 .gen/go/sqlblobs/sqlblobs.go
  7. +145 −143 .gen/proto/history/v1/service.pb.yarpc.go
  8. +145 −143 .gen/proto/matching/v1/service.pb.yarpc.go
  9. +18 −0 client/admin/client.go
  10. +2 −0 client/admin/interface.go
  11. +40 −0 client/admin/interface_mock.go
  12. +11 −0 client/frontend/client.go
  13. +1 −0 client/frontend/interface.go
  14. +20 −0 client/frontend/interface_mock.go
  15. +40 −0 client/wrappers/errorinjectors/admin_generated.go
  16. +20 −0 client/wrappers/errorinjectors/frontend_generated.go
  17. +10 −0 client/wrappers/grpc/admin_generated.go
  18. +5 −0 client/wrappers/grpc/frontend_generated.go
  19. +26 −0 client/wrappers/metered/admin_generated.go
  20. +13 −0 client/wrappers/metered/frontend_generated.go
  21. +22 −0 client/wrappers/retryable/admin_generated.go
  22. +11 −0 client/wrappers/retryable/frontend_generated.go
  23. +10 −0 client/wrappers/thrift/admin_generated.go
  24. +5 −0 client/wrappers/thrift/frontend_generated.go
  25. +1 −1 cmd/server/go.mod
  26. +2 −2 cmd/server/go.sum
  27. +72 −0 common/asyncworkflow/queueconfigapi/handler.go
  28. +89 −0 common/asyncworkflow/queueconfigapi/handler_mock.go
  29. +185 −0 common/asyncworkflow/queueconfigapi/handler_test.go
  30. +36 −0 common/asyncworkflow/queueconfigapi/interface.go
  31. +0 −7 common/authorization/oauthAuthorizer_test.go
  32. +11 −0 common/config/config.go
  33. +1 −1 common/config/tls.go
  34. +101 −0 common/domain/handler.go
  35. +10 −0 common/domain/handler_MasterCluster_test.go
  36. +5 −0 common/domain/handler_NotMasterCluster_test.go
  37. +14 −0 common/domain/handler_mock.go
  38. +110 −0 common/domain/handler_test.go
  39. +1 −0 common/domain/replicationTaskExecutor.go
  40. +1 −0 common/domain/transmissionTaskHandler.go
  41. +14 −0 common/domain/transmissionTaskHandler_test.go
  42. +37 −34 common/log/tag/values.go
  43. +56 −33 common/metrics/defs.go
  44. +1 −0 common/persistence/dataManagerInterfaces.go
  45. +1 −0 common/persistence/dataStoreInterfaces.go
  46. +17 −3 common/persistence/domainManager.go
  47. +1 −0 common/persistence/nosql/nosql_domain_store.go
  48. +1 −0 common/persistence/nosql/nosqlplugin/types.go
  49. +41 −10 common/persistence/persistence-tests/metadataPersistenceV2Test.go
  50. +2 −0 common/persistence/serialization/interfaces.go
  51. +35 −0 common/persistence/serializer.go
  52. +1 −1 common/persistence/serializer_test.go
  53. +24 −0 common/persistence/sql/sql_domain_store.go
  54. +35 −0 common/types/mapper/proto/admin.go
  55. +188 −0 common/types/mapper/proto/admin_test.go
  56. +32 −0 common/types/mapper/proto/api.go
  57. +10 −0 common/types/mapper/proto/api_test.go
  58. +35 −0 common/types/mapper/thrift/admin.go
  59. +194 −0 common/types/mapper/thrift/admin_test.go
  60. +32 −0 common/types/mapper/thrift/shared.go
  61. +28 −0 common/types/mapper/thrift/shared_test.go
  62. +15 −0 common/types/shared.go
  63. +5 −1 common/types/testdata/service_frontend.go
  64. +1 −1 go.mod
  65. +2 −2 go.sum
  66. +1 −1 idls
  67. +18 −0 scripts/run_cass_and_test.sh
  68. +28 −7 service/frontend/admin/handler.go
  69. +103 −0 service/frontend/admin/handler_test.go
  70. +7 −0 service/frontend/api/handler.go
  71. +1 −0 service/frontend/api/interface.go
  72. +15 −0 service/frontend/api/interface_mock.go
  73. +4 −0 service/frontend/wrappers/accesscontrolled/api_generated.go
  74. +24 −0 service/frontend/wrappers/clusterredirection/api_generated.go
  75. +5 −0 service/frontend/wrappers/grpc/api_generated.go
  76. +5 −0 service/frontend/wrappers/thrift/api_generated.go
  77. +42 −27 service/history/workflowcache/cache.go
  78. +7 −1 service/history/workflowcache/cache_test.go
  79. +40 −2 tools/cli/admin.go
  80. +86 −0 tools/cli/admin_async_queue_commands.go
  81. +6 −0 tools/cli/app.go
  82. +1 −1 tools/cli/flags.go
  83. +6 −6 tools/cli/isolation-groups.go
Loading