You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spot.apache.org by na...@apache.org on 2018/03/19 19:28:42 UTC

[33/42] incubator-spot git commit: PEP8 fixes main()

PEP8 fixes main()


Project: http://git-wip-us.apache.org/repos/asf/incubator-spot/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-spot/commit/b5cf6344
Tree: http://git-wip-us.apache.org/repos/asf/incubator-spot/tree/b5cf6344
Diff: http://git-wip-us.apache.org/repos/asf/incubator-spot/diff/b5cf6344

Branch: refs/heads/SPOT-181_ODM
Commit: b5cf6344a075889da041341cd4f5d1545ea5c379
Parents: 51040a2
Author: tpltnt <tp...@dropcut.net>
Authored: Thu Jan 25 11:36:10 2018 +0100
Committer: tpltnt <tp...@dropcut.net>
Committed: Thu Jan 25 11:36:10 2018 +0100

----------------------------------------------------------------------
 spot-ingest/pipelines/proxy/bluecoat.py | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-spot/blob/b5cf6344/spot-ingest/pipelines/proxy/bluecoat.py
----------------------------------------------------------------------
diff --git a/spot-ingest/pipelines/proxy/bluecoat.py b/spot-ingest/pipelines/proxy/bluecoat.py
index 898ff2e..54c3b28 100644
--- a/spot-ingest/pipelines/proxy/bluecoat.py
+++ b/spot-ingest/pipelines/proxy/bluecoat.py
@@ -61,6 +61,7 @@ proxy_schema = StructType([
     StructField("d", StringType(), True),
     StructField("h", StringType(), True)])
 
+
 def main():
     """
     Handle commandline arguments and
@@ -83,7 +84,8 @@ def main():
     args = parser.parse_args()
 
     # start collector based on data source type.
-    bluecoat_parse(args.zk,args.topic,args.db,args.db_table,args.num_of_workers,args.batch_size)
+    bluecoat_parse(args.zk, args.topic, args.db, args.db_table, args.num_of_workers, args.batch_size)
+
 
 def spot_decoder(s):