aboutsummaryrefslogtreecommitdiff
path: root/weed/filer2/cassandra
diff options
context:
space:
mode:
authorChris Lu <chris.lu@uber.com>2019-03-30 23:09:16 -0700
committerChris Lu <chris.lu@uber.com>2019-03-30 23:09:16 -0700
commit78ac2bef3cf5083d9e79e5d1a4e6557a097a26ef (patch)
treecdd85bee7ac24af60b9813aaac5858b1e0fecbca /weed/filer2/cassandra
parent97406333a5ecc5b0d2cdaa74ff9901e3100e4bf2 (diff)
downloadseaweedfs-78ac2bef3cf5083d9e79e5d1a4e6557a097a26ef.tar.xz
seaweedfs-78ac2bef3cf5083d9e79e5d1a4e6557a097a26ef.zip
go fmt
Diffstat (limited to 'weed/filer2/cassandra')
-rw-r--r--weed/filer2/cassandra/cassandra_store.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/weed/filer2/cassandra/cassandra_store.go b/weed/filer2/cassandra/cassandra_store.go
index 72680b5e1..627de3055 100644
--- a/weed/filer2/cassandra/cassandra_store.go
+++ b/weed/filer2/cassandra/cassandra_store.go
@@ -40,13 +40,13 @@ func (store *CassandraStore) initialize(keyspace string, hosts []string) (err er
return
}
-func (store *CassandraStore) BeginTransaction(ctx context.Context) (context.Context, error){
+func (store *CassandraStore) BeginTransaction(ctx context.Context) (context.Context, error) {
return ctx, nil
}
-func (store *CassandraStore) CommitTransaction(ctx context.Context) error{
+func (store *CassandraStore) CommitTransaction(ctx context.Context) error {
return nil
}
-func (store *CassandraStore) RollbackTransaction(ctx context.Context) error{
+func (store *CassandraStore) RollbackTransaction(ctx context.Context) error {
return nil
}