You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm following this tutorial while setting up a bridge between shotgrid and Jira.
After running the webapp.py script and hitting the port 9090 with curl I'm getting this error:
Have I configured something wrong?
Below I highlighted the line causing the error. In my case the content variable is a string containing the HTML response with <h2>The server is alive</h2>
I'm on the latest commit on master, tag: v0.3.1
The text was updated successfully, but these errors were encountered:
I just noticed some calls to six.ensure_binary in do_GET. Adding it here seems to fix the issue.
path_parts = [x for x in self.path[1:].split("/") if x]
if not path_parts:
self.post_response(
200,
"The server is alive",
--- HMTL_TEMPLATE % ("The server is alive", "The server is alive", ""),+++ six.ensure_binary(HMTL_TEMPLATE % ("The server is alive", "The server is alive", "")),
)
return
Hello,
I'm following this tutorial while setting up a bridge between shotgrid and Jira.
After running the webapp.py script and hitting the port 9090 with curl I'm getting this error:
Have I configured something wrong?
Below I highlighted the line causing the error. In my case the
content
variable is a string containing the HTML response with<h2>The server is alive</h2>
I'm on the latest commit on master, tag: v0.3.1
The text was updated successfully, but these errors were encountered: