Skip to content

Commit 2ebdf2c

Browse files
committed
Fixed some run issues with http 1.3.0
1 parent f52a587 commit 2ebdf2c

File tree

4 files changed

+5
-11
lines changed

4 files changed

+5
-11
lines changed

http/1.3.0/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
uncurl==0.0.10
2-
requests==2.25.1
2+
shuffle_sdk

http/1.3.0/src/app.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import requests
99
import subprocess
1010

11-
from walkoff_app_sdk.app_base import AppBase
11+
from shuffle_sdk import AppBase
1212

1313
class HTTP(AppBase):
1414
__version__ = "1.3.0"
@@ -442,10 +442,7 @@ def OPTIONS(self, url, headers="", body="", username="", password="", verify=Tru
442442

443443
# Run the actual thing after we've checked params
444444
def run(request):
445-
print("Starting cloud!")
446445
action = request.get_json()
447-
print(action)
448-
print(type(action))
449446
authorization_key = action.get("authorization")
450447
current_execution_id = action.get("execution_id")
451448

http/1.4.0/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
uncurl==0.0.10
2-
requests==2.25.1
2+
shuffle_sdk

http/1.4.0/src/app.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
import requests
99
import subprocess
1010

11-
from walkoff_app_sdk.app_base import AppBase
11+
from shuffle_sdk import AppBase
1212

1313
class HTTP(AppBase):
14-
__version__ = "1.3.0"
14+
__version__ = "1.4.0"
1515
app_name = "http"
1616

1717
def __init__(self, redis, logger, console_logger=None):
@@ -439,10 +439,7 @@ def OPTIONS(self, url, headers="", body="", username="", password="", verify=Tru
439439

440440
# Run the actual thing after we've checked params
441441
def run(request):
442-
print("Starting cloud!")
443442
action = request.get_json()
444-
print(action)
445-
print(type(action))
446443
authorization_key = action.get("authorization")
447444
current_execution_id = action.get("execution_id")
448445

0 commit comments

Comments
 (0)