Skip to content

Commit e80ddaa

Browse files
author
Robey Pointer
committed
fix my email address.
1 parent afc041b commit e80ddaa

18 files changed

+19
-19
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
This software is licensed under the Apache 2 license, quoted below.
22

33
Copyright 2009 Twitter, Inc.
4-
Copyright 2009 Robey Pointer <robeypointer@lag.net>
4+
Copyright 2009 Robey Pointer <robeypointer@gmail.com>
55

66
Licensed under the Apache License, Version 2.0 (the "License"); you may not
77
use this file except in compliance with the License. You may obtain a copy of

src/main/scala/net/lag/kestrel/Journal.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright 2009 Twitter, Inc.
3-
* Copyright 2009 Robey Pointer <robeypointer@lag.net>
3+
* Copyright 2009 Robey Pointer <robeypointer@gmail.com>
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License"); you may
66
* not use this file except in compliance with the License. You may obtain

src/main/scala/net/lag/kestrel/Kestrel.scala

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright 2009 Twitter, Inc.
3-
* Copyright 2009 Robey Pointer <robeypointer@lag.net>
3+
* Copyright 2009 Robey Pointer <robeypointer@gmail.com>
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License"); you may
66
* not use this file except in compliance with the License. You may obtain
@@ -105,7 +105,7 @@ object Kestrel {
105105
acceptor.getSessionConfig.setTcpNoDelay(true)
106106
acceptor.getFilterChain.addLast("codec", new ProtocolCodecFilter(memcache.Codec.encoder,
107107
memcache.Codec.decoder))
108-
acceptor.setHandler(new IoHandlerActorAdapter((session: IoSession) => new KestrelHandler(session, config)))
108+
acceptor.setHandler(new IoHandlerActorAdapter(session => new KestrelHandler(session, config)))
109109
acceptor.bind(new InetSocketAddress(listenAddress, listenPort))
110110

111111
log.info("Kestrel started.")

src/main/scala/net/lag/kestrel/KestrelHandler.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright 2009 Twitter, Inc.
3-
* Copyright 2009 Robey Pointer <robeypointer@lag.net>
3+
* Copyright 2009 Robey Pointer <robeypointer@gmail.com>
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License"); you may
66
* not use this file except in compliance with the License. You may obtain

src/main/scala/net/lag/kestrel/PersistentQueue.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright 2009 Twitter, Inc.
3-
* Copyright 2009 Robey Pointer <robeypointer@lag.net>
3+
* Copyright 2009 Robey Pointer <robeypointer@gmail.com>
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License"); you may
66
* not use this file except in compliance with the License. You may obtain

src/main/scala/net/lag/kestrel/QueueCollection.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright 2009 Twitter, Inc.
3-
* Copyright 2009 Robey Pointer <robeypointer@lag.net>
3+
* Copyright 2009 Robey Pointer <robeypointer@gmail.com>
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License"); you may
66
* not use this file except in compliance with the License. You may obtain

src/main/scala/net/lag/kestrel/Time.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright 2009 Twitter, Inc.
3-
* Copyright 2009 Robey Pointer <robeypointer@lag.net>
3+
* Copyright 2009 Robey Pointer <robeypointer@gmail.com>
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License"); you may
66
* not use this file except in compliance with the License. You may obtain

src/main/scala/net/lag/kestrel/memcache/Codec.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright 2009 Twitter, Inc.
3-
* Copyright 2009 Robey Pointer <robeypointer@lag.net>
3+
* Copyright 2009 Robey Pointer <robeypointer@gmail.com>
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License"); you may
66
* not use this file except in compliance with the License. You may obtain

src/test/scala/net/lag/FilterableSpecsFileRunner.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright 2009 Twitter, Inc.
3-
* Copyright 2009 Robey Pointer <robeypointer@lag.net>
3+
* Copyright 2009 Robey Pointer <robeypointer@gmail.com>
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License"); you may
66
* not use this file except in compliance with the License. You may obtain

src/test/scala/net/lag/TestHelper.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright 2009 Twitter, Inc.
3-
* Copyright 2009 Robey Pointer <robeypointer@lag.net>
3+
* Copyright 2009 Robey Pointer <robeypointer@gmail.com>
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License"); you may
66
* not use this file except in compliance with the License. You may obtain

src/test/scala/net/lag/TestRunner.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright 2009 Twitter, Inc.
3-
* Copyright 2009 Robey Pointer <robeypointer@lag.net>
3+
* Copyright 2009 Robey Pointer <robeypointer@gmail.com>
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License"); you may
66
* not use this file except in compliance with the License. You may obtain

src/test/scala/net/lag/kestrel/PersistentQueueSpec.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright 2009 Twitter, Inc.
3-
* Copyright 2009 Robey Pointer <robeypointer@lag.net>
3+
* Copyright 2009 Robey Pointer <robeypointer@gmail.com>
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License"); you may
66
* not use this file except in compliance with the License. You may obtain

src/test/scala/net/lag/kestrel/QueueCollectionSpec.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright 2009 Twitter, Inc.
3-
* Copyright 2009 Robey Pointer <robeypointer@lag.net>
3+
* Copyright 2009 Robey Pointer <robeypointer@gmail.com>
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License"); you may
66
* not use this file except in compliance with the License. You may obtain

src/test/scala/net/lag/kestrel/ServerSpec.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright 2009 Twitter, Inc.
3-
* Copyright 2009 Robey Pointer <robeypointer@lag.net>
3+
* Copyright 2009 Robey Pointer <robeypointer@gmail.com>
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License"); you may
66
* not use this file except in compliance with the License. You may obtain

src/test/scala/net/lag/kestrel/TestClient.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright 2009 Twitter, Inc.
3-
* Copyright 2009 Robey Pointer <robeypointer@lag.net>
3+
* Copyright 2009 Robey Pointer <robeypointer@gmail.com>
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License"); you may
66
* not use this file except in compliance with the License. You may obtain

src/test/scala/net/lag/kestrel/load/ManyClients.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright 2009 Twitter, Inc.
3-
* Copyright 2009 Robey Pointer <robeypointer@lag.net>
3+
* Copyright 2009 Robey Pointer <robeypointer@gmail.com>
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License"); you may
66
* not use this file except in compliance with the License. You may obtain

src/test/scala/net/lag/kestrel/load/PutMany.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright 2009 Twitter, Inc.
3-
* Copyright 2009 Robey Pointer <robeypointer@lag.net>
3+
* Copyright 2009 Robey Pointer <robeypointer@gmail.com>
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License"); you may
66
* not use this file except in compliance with the License. You may obtain

src/test/scala/net/lag/kestrel/memcache/MemCacheCodecSpec.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright 2009 Twitter, Inc.
3-
* Copyright 2009 Robey Pointer <robeypointer@lag.net>
3+
* Copyright 2009 Robey Pointer <robeypointer@gmail.com>
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License"); you may
66
* not use this file except in compliance with the License. You may obtain

0 commit comments

Comments
 (0)