This is an automated email from the ASF dual-hosted git repository.
weisong44 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/samza.git
The following commit(s) were added to refs/heads/master by this push:
new e1972db SAMZA-2236: Make member table in BaseTableFunction transient
(#1067)
e1972db is described below
commit e1972db4e9d7a79d10037731a0913803c7ceb8b4
Author: Wei Song <[email protected]>
AuthorDate: Wed Jun 5 09:14:01 2019 -0700
SAMZA-2236: Make member table in BaseTableFunction transient (#1067)
---
.../src/main/java/org/apache/samza/table/remote/BaseTableFunction.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/samza-api/src/main/java/org/apache/samza/table/remote/BaseTableFunction.java
b/samza-api/src/main/java/org/apache/samza/table/remote/BaseTableFunction.java
index f099ff9..19fa30f 100644
---
a/samza-api/src/main/java/org/apache/samza/table/remote/BaseTableFunction.java
+++
b/samza-api/src/main/java/org/apache/samza/table/remote/BaseTableFunction.java
@@ -48,7 +48,7 @@ import org.apache.samza.table.AsyncReadWriteTable;
*/
abstract public class BaseTableFunction implements TableFunction {
- protected AsyncReadWriteTable table;
+ protected transient AsyncReadWriteTable table;
@Override
public void init(Context context, AsyncReadWriteTable table) {