This is an automated email from the ASF dual-hosted git repository.
lahirujayathilake pushed a change to branch allocation-management
in repository https://gitbox.apache.org/repos/asf/airavata-custos.git
from 5d3028607 support extracting the correct user role and included
dev_email in the AMIE test packets
add 9e2056365 Refactor database migrations to allocations/domain/db and
proto generated
No new revisions were added by this update.
Summary of changes:
.gitignore | 9 +
allocations/access-amie/go.mod | 16 +-
allocations/access-amie/go.sum | 106 +
allocations/access-amie/main.go | 3 +-
.../access-amie/proto/gen/amie_packets.pb.go | 1601 ++++++++++++++
.../access-amie/proto/gen/internal_events.pb.go | 1493 +++++++++++++
.../db/errors.go => domain/db/embed.go} | 18 +-
allocations/{access-amie => domain}/db/migrate.go | 25 +-
.../db/migrations/000001_initial_schema.down.sql | 0
.../db/migrations/000001_initial_schema.up.sql | 0
allocations/domain/go.mod | 12 +-
allocations/domain/go.sum | 60 +
allocations/go.work | 2 +-
allocations/go.work.sum | 2304 +++++++++++++++++++-
.../grafana/provisioning/datasources/mariadb.yml | 17 +
15 files changed, 5558 insertions(+), 108 deletions(-)
create mode 100644 allocations/access-amie/go.sum
create mode 100644 allocations/access-amie/proto/gen/amie_packets.pb.go
create mode 100644 allocations/access-amie/proto/gen/internal_events.pb.go
copy allocations/{access-amie/db/errors.go => domain/db/embed.go} (62%)
rename allocations/{access-amie => domain}/db/migrate.go (66%)
rename allocations/{access-amie =>
domain}/db/migrations/000001_initial_schema.down.sql (100%)
rename allocations/{access-amie =>
domain}/db/migrations/000001_initial_schema.up.sql (100%)
create mode 100644 compose/grafana/provisioning/datasources/mariadb.yml