Skip to content

Commit f8849ae

Browse files
committed
migrate to mercadolibre
1 parent 040e957 commit f8849ae

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ RUN apt-get update && apt-get install -y bzip2 && \
44
wget http://upx.sourceforge.net/download/upx-3.91-amd64_linux.tar.bz2 && \
55
tar -xjf upx-3.91-amd64_linux.tar.bz2 && \
66
mv upx-3.91-amd64_linux/upx /bin/upx && \
7-
go get -ldflags='-s -w' github.com/sschepens/pla && \
7+
go get -ldflags='-s -w' github.com/mercadolibre/pla && \
88
upx --force bin/pla
99

1010

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# pla [![Build Status](https://travis-ci.org/sschepens/pla.svg?branch=master)](https://travis-ci.org/sschepens/pla)
1+
# pla [![Build Status](https://travis-ci.org/mercadolibre/pla.svg?branch=master)](https://travis-ci.org/mercadolibre/pla)
22

33
Pla is a tiny program that sends some load to a web application. It's similar to Apache Bench ([ab](http://httpd.apache.org/docs/2.2/programs/ab.html)), but with better availability across different platforms and a less troubling installation experience.
44

@@ -10,7 +10,7 @@ Due to some issues like memory consumption I decided to fork it.
1010

1111
Simple as it takes to type the following command:
1212

13-
go get -u github.com/sschepens/pla
13+
go get -u github.com/mercadolibre/pla
1414

1515
## Usage
1616

@@ -79,7 +79,7 @@ This is what happens when you run Pla:
7979

8080
## Docker
8181

82-
docker run -ti sschepens/pla -n 100 -c 10 http://www.example.org/
82+
docker run -ti mercadolibre/pla -n 100 -c 10 http://www.example.org/
8383

8484
## License
8585

interface.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package main
22

3-
import "github.com/sschepens/pla/boomer"
3+
import "github.com/mercadolibre/pla/boomer"
44

55
// Interface determines the interface for Pla's User Interfaces
66
type Interface interface {

interfaces/basic.go

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

2222
"github.com/sschepens/gohistogram"
2323
"github.com/sschepens/pb"
24-
"github.com/sschepens/pla/boomer"
24+
"github.com/mercadolibre/pla/boomer"
2525
)
2626

2727
const (

pla.go

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

2525
"encoding/base64"
2626

27-
"github.com/sschepens/pla/boomer"
28-
"github.com/sschepens/pla/interfaces"
27+
"github.com/mercadolibre/pla/boomer"
28+
"github.com/mercadolibre/pla/interfaces"
2929
"github.com/valyala/fasthttp"
3030
"gopkg.in/alecthomas/kingpin.v2"
3131
)

0 commit comments

Comments
 (0)