diff --git a/cli/src/commands/get-stream.js b/cli/src/commands/get-stream.js
index 6b9b7ee4847f926e7b1fb4a66e60fd92a97569df..2bd1aea68244d3153aeb2f99331002fc7ab89baf 100644
--- a/cli/src/commands/get-stream.js
+++ b/cli/src/commands/get-stream.js
@@ -12,7 +12,7 @@ const fetch = require("node-fetch");
 const handleErrors = require("../utils/handleErrors");
 const getMaster = require("../utils/getMaster");
 
-module.exports.command = "put-stream";
+module.exports.command = "get-stream";
 module.exports.describe = "Writes localfilename to the SDFS as sdfsfilename.";
 module.exports.builder = (yargs: any) => yargs;
 
@@ -20,23 +20,23 @@ module.exports.builder = (yargs: any) => yargs;
 
 module.exports.handler = handleErrors(async (argv: {}) => {
   const master = await getMaster();
-  getCSVdata();
+//   getCSVdata();
 
   setInterval(function sync() {
     // if (queue.length > 0) {
     //   const body = queue.pop();
       var target = "http://"+ master + ":3000/sink/";
-    //   console.log(target)
+      console.log(target)
     //   console.log(JSON.stringify(body).state)
       fetch(target)
-        .then(res => console.log(res.text()))
-        // .then(json => {
+        .then(res => (res.text()))
+        .then(json => {
         // //   if (json.action !== "END") {
         // //     queue.push(json);
         // //   } else {
-        //     // console.log(json);
+            console.log(json);
         // //   }
-        // });
+        });
     // }
   
   }, 500);
diff --git a/sfds/index.js b/sfds/index.js
index a0e4273e48b974fee887781fa1c58583e1e47bee..b0c3d677b8380ffc0ddc26b512d1340605e22a63 100644
--- a/sfds/index.js
+++ b/sfds/index.js
@@ -408,7 +408,7 @@ app.post("/spout", function(req, res) {
   res.send("got it");
 });
 
-app.post("/sink", function(req, res) {
+app.get("/sink", function(req, res) {
   // console.log("bolt state: " +req.body.state)
   res.send("IM A SINK");
 });