This is an automated email from the ASF dual-hosted git repository.
DImuthuUpe pushed a change to branch slurm-mapper-int
in repository https://gitbox.apache.org/repos/asf/airavata-custos.git
from 26006aa51 Fixing minor misconfiguration
add 995314bca Adding SLURM association when an allocation membership is
created
No new revisions were added by this update.
Summary of changes:
.../internal/subscribers/members.go | 64 +++++++
.../internal/subscribers/subscriber.go | 1 +
docs/API-Docs.md | 195 ++++++++++++++++++++-
...n.sql => 000010_compute_cluster_users.down.sql} | 2 +-
....up.sql => 000010_compute_cluster_users.up.sql} | 24 ++-
internal/server/server.go | 80 +++++++++
internal/store/compute_cluster_user_store.go | 116 ++++++++++++
internal/store/store.go | 19 ++
pkg/events/compute_cluster_user_subscribe.go | 64 +++++++
pkg/events/types.go | 7 +
pkg/models/allocation.go | 7 +
pkg/service/compute_cluster_user.go | 179 +++++++++++++++++++
pkg/service/service.go | 4 +
13 files changed, 747 insertions(+), 15 deletions(-)
create mode 100644
connectors/SLURM/Association-Mapper/internal/subscribers/members.go
copy internal/db/migrations/{000002_compute_clusters.down.sql =>
000010_compute_cluster_users.down.sql} (94%)
copy internal/db/migrations/{000006_compute_allocation_diffs.up.sql =>
000010_compute_cluster_users.up.sql} (53%)
create mode 100644 internal/store/compute_cluster_user_store.go
create mode 100644 pkg/events/compute_cluster_user_subscribe.go
create mode 100644 pkg/service/compute_cluster_user.go