Skip to content

Commit

Permalink
debug docker build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Guthe committed Aug 2, 2017
1 parent 5dcfa67 commit 2afeb8d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docker/run_setup_postgres.sh
@@ -1,5 +1,7 @@
#!/bin/bash

set -e

# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
Expand Down
2 changes: 2 additions & 0 deletions socorro/external/postgresql/raw_sql/types/build_type.sql
@@ -1,4 +1,6 @@
DROP TYPE IF EXISTS build_type_enum;
CREATE TYPE build_type_enum
AS ENUM ('release', 'esr', 'aurora', 'beta', 'nightly');
DROP TYPE IF EXISTS build_type;
CREATE TYPE build_type
AS ENUM ('release', 'esr', 'aurora', 'beta', 'nightly');
2 changes: 2 additions & 0 deletions webapp-django/crashstats/authentication/views.py
Expand Up @@ -11,6 +11,7 @@
from django.views.decorators.http import require_POST
from django.contrib import auth
from django.utils.encoding import smart_bytes
from django.views.decorators.csrf import csrf_exempt

from oauth2client import client, crypt

Expand Down Expand Up @@ -73,6 +74,7 @@ def oauth2_signout(request):


@require_POST
@csrf_exempt
@json_view
def oauth2_signin(request):
token = request.POST['token']
Expand Down

0 comments on commit 2afeb8d

Please sign in to comment.