Skip to content

Commit b602dfa

Browse files
committed
changed mod file path to my clone repo
1 parent c862165 commit b602dfa

27 files changed

+76
-77
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
# VMWare Go KCL v2
22

33
![technology Go](https://img.shields.io/badge/technology-go-blue.svg)
4-
[![Go Report Card](https://goreportcard.com/badge/github.com/vmware/vmware-go-kcl-v2)](https://goreportcard.com/report/github.com/vmware/vmware-go-kcl-v2)
4+
[![Go Report Card](https://goreportcard.com/badge/github.com/magiusdarrigo/vmware-go-kcl-v2)](https://goreportcard.com/report/github.com/magiusdarrigo/vmware-go-kcl-v2)
55
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
6-
[![vmware-go-kcl-v2](https://github.com/vmware/vmware-go-kcl-v2/actions/workflows/vmware-go-kcl-v2-ci.yml/badge.svg)](https://github.com/vmware/vmware-go-kcl-v2/actions/workflows/vmware-go-kcl-v2-ci.yml)
6+
[![vmware-go-kcl-v2](https://github.com/magiusdarrigo/vmware-go-kcl-v2/actions/workflows/vmware-go-kcl-v2-ci.yml/badge.svg)](https://github.com/magiusdarrigo/vmware-go-kcl-v2/actions/workflows/vmware-go-kcl-v2-ci.yml)
77

88
## Overview
99

1010
VMware-Go-KCL-V2 is a native open-source Go library for Amazon Kinesis Data Stream (KDS) consumption. It allows developers
1111
to program KDS consumers in lightweight Go language and still take advantage of the features presented by the native
1212
KDS Java API libraries.
1313

14-
[vmware-go-kcl-v2](https://github.com/vmware/vmware-go-kcl-v2) is a VMWare originated open-source project for AWS Kinesis
14+
[vmware-go-kcl-v2](https://github.com/magiusdarrigo/vmware-go-kcl-v2) is a VMWare originated open-source project for AWS Kinesis
1515
Client Library in Go. Within VMware, we have seen adoption in vSecureState and Carbon Black. In addition, Carbon Black
1616
has contributed to the vmware-go-kcl codebase and heavily used it in the product. Besides,
17-
[vmware-go-kcl-v2](https://github.com/vmware/vmware-go-kcl-v2) has got
17+
[vmware-go-kcl-v2](https://github.com/magiusdarrigo/vmware-go-kcl-v2) has got
1818
[recognition](https://www.linkedin.com/posts/adityakrish_vmware-go-kcl-a-native-open-source-go-programming-activity-6810626798133616640-B6W8/),
19-
and [contributions](https://github.com/vmware/vmware-go-kcl-v2/graphs/contributors) from the industry.
19+
and [contributions](https://github.com/magiusdarrigo/vmware-go-kcl-v2/graphs/contributors) from the industry.
2020

2121
`vmware-go-kcl-v2` is the v2 version of VMWare KCL for the Go programming language by utilizing [AWS Go SDK V2](https://github.com/aws/aws-sdk-go-v2).
2222

clientlibrary/checkpoint/checkpointer.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
// Package checkpoint
2121
// The implementation is derived from https://github.com/patrobinson/gokini
2222
//
23-
// Copyright 2018 Patrick robinson
23+
// # Copyright 2018 Patrick robinson
2424
//
2525
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
2626
//
@@ -33,7 +33,7 @@ import (
3333
"errors"
3434
"fmt"
3535

36-
par "github.com/vmware/vmware-go-kcl-v2/clientlibrary/partition"
36+
par "github.com/magiusdarrigo/vmware-go-kcl-v2/clientlibrary/partition"
3737
)
3838

3939
const (

clientlibrary/checkpoint/dynamodb-checkpointer.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
// Package checkpoint
2121
// The implementation is derived from https://github.com/patrobinson/gokini
2222
//
23-
// Copyright 2018 Patrick robinson
23+
// # Copyright 2018 Patrick robinson
2424
//
2525
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
2626
//
@@ -41,9 +41,9 @@ import (
4141
"github.com/aws/aws-sdk-go-v2/service/dynamodb"
4242
"github.com/aws/aws-sdk-go-v2/service/dynamodb/types"
4343

44-
"github.com/vmware/vmware-go-kcl-v2/clientlibrary/config"
45-
par "github.com/vmware/vmware-go-kcl-v2/clientlibrary/partition"
46-
"github.com/vmware/vmware-go-kcl-v2/logger"
44+
"github.com/magiusdarrigo/vmware-go-kcl-v2/clientlibrary/config"
45+
par "github.com/magiusdarrigo/vmware-go-kcl-v2/clientlibrary/partition"
46+
"github.com/magiusdarrigo/vmware-go-kcl-v2/logger"
4747
)
4848

4949
const (

clientlibrary/checkpoint/dynamodb-checkpointer_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ import (
3939
"github.com/aws/aws-sdk-go-v2/service/dynamodb/types"
4040
"github.com/stretchr/testify/assert"
4141

42-
cfg "github.com/vmware/vmware-go-kcl-v2/clientlibrary/config"
43-
par "github.com/vmware/vmware-go-kcl-v2/clientlibrary/partition"
42+
cfg "github.com/magiusdarrigo/vmware-go-kcl-v2/clientlibrary/config"
43+
par "github.com/magiusdarrigo/vmware-go-kcl-v2/clientlibrary/partition"
4444
)
4545

4646
func TestDoesTableExist(t *testing.T) {

clientlibrary/config/config.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ import (
4444

4545
"github.com/aws/aws-sdk-go-v2/aws"
4646

47-
"github.com/vmware/vmware-go-kcl-v2/clientlibrary/metrics"
48-
"github.com/vmware/vmware-go-kcl-v2/logger"
47+
"github.com/magiusdarrigo/vmware-go-kcl-v2/clientlibrary/metrics"
48+
"github.com/magiusdarrigo/vmware-go-kcl-v2/logger"
4949
)
5050

5151
const (

clientlibrary/config/config_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323

2424
"github.com/stretchr/testify/assert"
2525

26-
"github.com/vmware/vmware-go-kcl-v2/logger"
26+
"github.com/magiusdarrigo/vmware-go-kcl-v2/logger"
2727
)
2828

2929
func TestConfig(t *testing.T) {

clientlibrary/config/kcl-config.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ import (
4242

4343
"github.com/aws/aws-sdk-go-v2/aws"
4444

45-
"github.com/vmware/vmware-go-kcl-v2/clientlibrary/metrics"
46-
"github.com/vmware/vmware-go-kcl-v2/clientlibrary/utils"
47-
"github.com/vmware/vmware-go-kcl-v2/logger"
45+
"github.com/magiusdarrigo/vmware-go-kcl-v2/clientlibrary/metrics"
46+
"github.com/magiusdarrigo/vmware-go-kcl-v2/clientlibrary/utils"
47+
"github.com/magiusdarrigo/vmware-go-kcl-v2/logger"
4848
)
4949

5050
// NewKinesisClientLibConfig creates a default KinesisClientLibConfiguration based on the required fields.

clientlibrary/metrics/cloudwatch/cloudwatch.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
// Package cloudwatch
2121
// The implementation is derived from https://github.com/patrobinson/gokini
2222
//
23-
// Copyright 2018 Patrick robinson
23+
// # Copyright 2018 Patrick robinson
2424
//
2525
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
2626
//
@@ -38,7 +38,7 @@ import (
3838
cwatch "github.com/aws/aws-sdk-go-v2/service/cloudwatch"
3939
"github.com/aws/aws-sdk-go-v2/service/cloudwatch/types"
4040

41-
"github.com/vmware/vmware-go-kcl-v2/logger"
41+
"github.com/magiusdarrigo/vmware-go-kcl-v2/logger"
4242
)
4343

4444
// DefaultCloudwatchMetricsBufferDuration Buffer metrics for at most this long before publishing to CloudWatch.

clientlibrary/metrics/prometheus/prometheus.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
// Package prometheus
2121
// The implementation is derived from https://github.com/patrobinson/gokini
2222
//
23-
// Copyright 2018 Patrick robinson
23+
// # Copyright 2018 Patrick robinson
2424
//
2525
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
2626
//
@@ -35,7 +35,7 @@ import (
3535
prom "github.com/prometheus/client_golang/prometheus"
3636
"github.com/prometheus/client_golang/prometheus/promhttp"
3737

38-
"github.com/vmware/vmware-go-kcl-v2/logger"
38+
"github.com/magiusdarrigo/vmware-go-kcl-v2/logger"
3939
)
4040

4141
// MonitoringService publishes kcl metrics to Prometheus.

clientlibrary/partition/partition.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
// Package partition
2121
// The implementation is derived from https://github.com/patrobinson/gokini
2222
//
23-
// Copyright 2018 Patrick robinson
23+
// # Copyright 2018 Patrick robinson
2424
//
2525
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
2626
//
@@ -33,7 +33,7 @@ import (
3333
"sync"
3434
"time"
3535

36-
"github.com/vmware/vmware-go-kcl-v2/clientlibrary/config"
36+
"github.com/magiusdarrigo/vmware-go-kcl-v2/clientlibrary/config"
3737
)
3838

3939
type ShardStatus struct {

0 commit comments

Comments
 (0)