You are not logged in.

#1 2017-11-24 12:12:02

dNhax
Member
Registered: 2017-11-23
Posts: 3

[SOLVED] GitLab does not load assets

Hi,

I'm planning to install GitLab on my small home server for my personal git-hosting needs. Before I actually put it on bare metal I wanted to test the installation and configuration process inside a virtual machine (Windows host, VirtualBox). Everything went fine until I started GitLab and load it in the browser (chromium).

https://i.imgur.com/LabxREK.png

(sorry if the image is too big, imgur failed on me sad)

As seen, the server is reachable but no assets are being loaded with error code 404 or 422 respectively.


/etc/webapps/gitlab/gitlab.yml

# # # # # # # # # # # # # # # # # #
# GitLab application config file  #
# # # # # # # # # # # # # # # # # #
#
###########################  NOTE  #####################################
# This file should not receive new settings. All configuration options #
# * are being moved to ApplicationSetting model!                       #
# If a setting requires an application restart say so in that screen.  #
# If you change this file in a Merge Request, please also create       #
# a MR on https://gitlab.com/gitlab-org/omnibus-gitlab/merge_requests  #
########################################################################
#
#
# How to use:
# 1. Copy file as gitlab.yml
# 2. Update gitlab -> host with your fully qualified domain name
# 3. Update gitlab -> email_from
# 4. If you installed Git from source, change git -> bin_path to /usr/local/bin/git
#    IMPORTANT: If Git was installed in a different location use that instead.
#    You can check with `which git`. If a wrong path of Git is specified, it will
#     result in various issues such as failures of GitLab CI builds.
# 5. Review this configuration file for other settings you may want to adjust

production: &base
  #
  # 1. GitLab app settings
  # ==========================

  ## GitLab settings
  gitlab:
    ## Web server settings (note: host is the FQDN, do not include http://)
    host: localhost
    port: 80 # Set to 443 if using HTTPS, see installation.md#using-https for additional HTTPS configuration details
    https: false # Set to true if using HTTPS, see installation.md#using-https for additional HTTPS configuration details

    # Uncommment this line below if your ssh host is different from HTTP/HTTPS one
    # (you'd obviously need to replace ssh.host_example.com with your own host).
    # Otherwise, ssh host will be set to the `host:` value above
    # ssh_host: ssh.host_example.com

    # Relative URL support
    # WARNING: We recommend using an FQDN to host GitLab in a root path instead
    # of using a relative URL.
    # Documentation: http://doc.gitlab.com/ce/install/relative_url.html
    # Uncomment and customize the following line to run in a non-root path
    #
    # relative_url_root: /gitlab

    # Trusted Proxies
    # Customize if you have GitLab behind a reverse proxy which is running on a different machine.
    # Add the IP address for your reverse proxy to the list, otherwise users will appear signed in from that address.
    trusted_proxies:
      # Examples:
      #- 192.168.1.0/24
      #- 192.168.2.1
      #- 2001:0db8::/32

    # Uncomment and customize if you can't use the default user to run GitLab (default: 'git')
    user: gitlab

    ## Date & Time settings
    # Uncomment and customize if you want to change the default time zone of GitLab application.
    # To see all available zones, run `bundle exec rake time:zones:all RAILS_ENV=production`
    # time_zone: 'UTC'

    ## Email settings
    # Uncomment and set to false if you need to disable email sending from GitLab (default: true)
    # email_enabled: true
    # Email address used in the "From" field in mails sent by GitLab
    email_from: example@example.com
    email_display_name: GitLab
    email_reply_to: noreply@example.com
    email_subject_suffix: ''

    # Email server smtp settings are in config/initializers/smtp_settings.rb.sample

    # default_can_create_group: false  # default: true
    # username_changing_enabled: false # default: true - User can change her username/namespace
    ## Default theme ID
    ##   1 - Indigo
    ##   2 - Dark
    ##   3 - Light
    ##   4 - Blue
    ##   5 - Green
    default_theme: 1 # default: 1

    ## Automatic issue closing
    # If a commit message matches this regular expression, all issues referenced from the matched text will be closed.
    # This happens when the commit is pushed or merged into the default branch of a project.
    # When not specified the default issue_closing_pattern as specified below will be used.
    # Tip: you can test your closing pattern at http://rubular.com.
    # issue_closing_pattern: '((?:[Cc]los(?:e[sd]?|ing)|[Ff]ix(?:e[sd]|ing)?|[Rr]esolv(?:e[sd]?|ing)|[Ii]mplement(?:s|ed|ing)?)(:?) +(?:(?:issues? +)?%{issue_ref}(?:(?:, *| +and +)?)|([A-Z][A-Z0-9_]+-\d+))+)'

    ## Default project features settings
    default_projects_features:
      issues: true
      merge_requests: true
      wiki: true
      snippets: true
      builds: true
      container_registry: true

    ## Webhook settings
    # Number of seconds to wait for HTTP response after sending webhook HTTP POST request (default: 10)
    # webhook_timeout: 10

    ## Repository downloads directory
    # When a user clicks e.g. 'Download zip' on a project, a temporary zip file is created in the following directory.
    # The default is 'shared/cache/archive/' relative to the root of the Rails app.
    # repository_downloads_path: shared/cache/archive/

  ## Reply by email
  # Allow users to comment on issues and merge requests by replying to notification emails.
  # For documentation on how to set this up, see http://doc.gitlab.com/ce/administration/reply_by_email.html
  incoming_email:
    enabled: false

    # The email address including the `%{key}` placeholder that will be replaced to reference the item being replied to.
    # The placeholder can be omitted but if present, it must appear in the "user" part of the address (before the `@`).
    address: "gitlab-incoming+%{key}@gmail.com"

    # Email account username
    # With third party providers, this is usually the full email address.
    # With self-hosted email servers, this is usually the user part of the email address.
    user: "gitlab-incoming@gmail.com"
    # Email account password
    password: "[REDACTED]"

    # IMAP server host
    host: "imap.gmail.com"
    # IMAP server port
    port: 993
    # Whether the IMAP server uses SSL
    ssl: true
    # Whether the IMAP server uses StartTLS
    start_tls: false

    # The mailbox where incoming mail will end up. Usually "inbox".
    mailbox: "inbox"
    # The IDLE command timeout.
    idle_timeout: 60

  ## Build Artifacts
  artifacts:
    enabled: true
    # The location where build artifacts are stored (default: shared/artifacts).
    # path: shared/artifacts

  ## Git LFS
  lfs:
    enabled: true
    # The location where LFS objects are stored (default: shared/lfs-objects).
    # storage_path: shared/lfs-objects

  ## GitLab Pages
  pages:
    enabled: false
    # The location where pages are stored (default: shared/pages).
    # path: shared/pages

    # The domain under which the pages are served:
    # http://group.example.com/project
    # or project path can be a group page: group.example.com
    host: example.com
    port: 80 # Set to 443 if you serve the pages with HTTPS
    https: false # Set to true if you serve the pages with HTTPS
    artifacts_server: true
    # external_http: ["1.1.1.1:80", "[2001::1]:80"] # If defined, enables custom domain support in GitLab Pages
    # external_https: ["1.1.1.1:443", "[2001::1]:443"] # If defined, enables custom domain and certificate support in GitLab Pages

  ## Mattermost
  ## For enabling Add to Mattermost button
  mattermost:
    enabled: false
    host: 'https://mattermost.example.com'

  ## Gravatar
  ## For Libravatar see: http://doc.gitlab.com/ce/customization/libravatar.html
  gravatar:
    # gravatar urls: possible placeholders: %{hash} %{size} %{email} %{username}
    # plain_url: "http://..."     # default: http://www.gravatar.com/avatar/%{hash}?s=%{size}&d=identicon
    # ssl_url:   "https://..."    # default: https://secure.gravatar.com/avatar/%{hash}?s=%{size}&d=identicon

  ## Auxiliary jobs
  # Periodically executed jobs, to self-heal Gitlab, do external synchronizations, etc.
  # Please read here for more information: https://github.com/ondrejbartas/sidekiq-cron#adding-cron-job
  cron_jobs:
    # Flag stuck CI jobs as failed
    stuck_ci_jobs_worker:
      cron: "0 * * * *"
    # Execute scheduled triggers
    pipeline_schedule_worker:
      cron: "19 * * * *"
    # Remove expired build artifacts
    expire_build_artifacts_worker:
      cron: "50 * * * *"
    # Periodically run 'git fsck' on all repositories. If started more than
    # once per hour you will have concurrent 'git fsck' jobs.
    repository_check_worker:
      cron: "20 * * * *"
    # Send admin emails once a week
    admin_email_worker:
      cron: "0 0 * * 0"

    # Remove outdated repository archives
    repository_archive_cache_worker:
      cron: "0 * * * *"

  registry:
    # enabled: true
    # host: registry.example.com
    # port: 5005
    # api_url: http://localhost:5000/ # internal address to the registry, will be used by GitLab to directly communicate with API
    # key: config/registry.key
    # path: shared/registry
    # issuer: gitlab-issuer

  #
  # 2. GitLab CI settings
  # ==========================

  gitlab_ci:
    # Default project notifications settings:
    #
    # Send emails only on broken builds (default: true)
    # all_broken_builds: true
    #
    # Add pusher to recipients list (default: false)
    # add_pusher: true

    # The location where build traces are stored (default: builds/). Relative paths are relative to Rails.root
    # builds_path: builds/

  #
  # 3. Auth settings
  # ==========================

  ## LDAP settings
  # You can test connections and inspect a sample of the LDAP users with login
  # access by running:
  #   bundle exec rake gitlab:ldap:check RAILS_ENV=production
  ldap:
    enabled: false
    servers:
      ##########################################################################
      #
      # Since GitLab 7.4, LDAP servers get ID's (below the ID is 'main'). GitLab
      # Enterprise Edition now supports connecting to multiple LDAP servers.
      #
      # If you are updating from the old (pre-7.4) syntax, you MUST give your
      # old server the ID 'main'.
      #
      ##########################################################################
      main: # 'main' is the GitLab 'provider ID' of this LDAP server
        ## label
        #
        # A human-friendly name for your LDAP server. It is OK to change the label later,
        # for instance if you find out it is too large to fit on the web page.
        #
        # Example: 'Paris' or 'Acme, Ltd.'
        label: 'LDAP'

        # Example: 'ldap.mydomain.com'
        host: '_your_ldap_server'
        # This port is an example, it is sometimes different but it is always an integer and not a string
        port: 389 # usually 636 for SSL
        uid: 'sAMAccountName' # This should be the attribute, not the value that maps to uid.

        # Examples: 'america\\momo' or 'CN=Gitlab Git,CN=Users,DC=mydomain,DC=com'
        bind_dn: '_the_full_dn_of_the_user_you_will_bind_with'
        password: '_the_password_of_the_bind_user'

        # Encryption method. The "method" key is deprecated in favor of
        # "encryption".
        #
        #   Examples: "start_tls" or "simple_tls" or "plain"
        #
        #   Deprecated values: "tls" was replaced with "start_tls" and "ssl" was
        #   replaced with "simple_tls".
        #
        encryption: 'plain'

        # Enables SSL certificate verification if encryption method is
        # "start_tls" or "simple_tls". Defaults to true.
        verify_certificates: true

        # Specifies the path to a file containing a PEM-format CA certificate,
        # e.g. if you need to use an internal CA.
        #
        #   Example: '/etc/ca.pem'
        #
        ca_file: ''

        # Specifies the SSL version for OpenSSL to use, if the OpenSSL default
        # is not appropriate.
        #
        #   Example: 'TLSv1_1'
        #
        ssl_version: ''

        # Set a timeout, in seconds, for LDAP queries. This helps avoid blocking
        # a request if the LDAP server becomes unresponsive.
        # A value of 0 means there is no timeout.
        timeout: 10

        # This setting specifies if LDAP server is Active Directory LDAP server.
        # For non AD servers it skips the AD specific queries.
        # If your LDAP server is not AD, set this to false.
        active_directory: true

        # If allow_username_or_email_login is enabled, GitLab will ignore everything
        # after the first '@' in the LDAP username submitted by the user on login.
        #
        # Example:
        # - the user enters 'jane.doe@example.com' and 'p@ssw0rd' as LDAP credentials;
        # - GitLab queries the LDAP server with 'jane.doe' and 'p@ssw0rd'.
        #
        # If you are using "uid: 'userPrincipalName'" on ActiveDirectory you need to
        # disable this setting, because the userPrincipalName contains an '@'.
        allow_username_or_email_login: false

        # To maintain tight control over the number of active users on your GitLab installation,
        # enable this setting to keep new users blocked until they have been cleared by the admin
        # (default: false).
        block_auto_created_users: false

        # Base where we can search for users
        #
        #   Ex. 'ou=People,dc=gitlab,dc=example' or 'DC=mydomain,DC=com'
        #
        base: ''

        # Filter LDAP users
        #
        #   Format: RFC 4515 https://tools.ietf.org/search/rfc4515
        #   Ex. (employeeType=developer)
        #
        #   Note: GitLab does not support omniauth-ldap's custom filter syntax.
        #
        #   Example for getting only specific users:
        #   '(&(objectclass=user)(|(samaccountname=momo)(samaccountname=toto)))'
        #
        user_filter: ''

        # LDAP attributes that GitLab will use to create an account for the LDAP user.
        # The specified attribute can either be the attribute name as a string (e.g. 'mail'),
        # or an array of attribute names to try in order (e.g. ['mail', 'email']).
        # Note that the user's LDAP login will always be the attribute specified as `uid` above.
        attributes:
          # The username will be used in paths for the user's own projects
          # (like `gitlab.example.com/username/project`) and when mentioning
          # them in issues, merge request and comments (like `@username`).
          # If the attribute specified for `username` contains an email address,
          # the GitLab username will be the part of the email address before the '@'.
          username: ['uid', 'userid', 'sAMAccountName']
          email:    ['mail', 'email', 'userPrincipalName']

          # If no full name could be found at the attribute specified for `name`,
          # the full name is determined using the attributes specified for
          # `first_name` and `last_name`.
          name:       'cn'
          first_name: 'givenName'
          last_name:  'sn'

      # GitLab EE only: add more LDAP servers
      # Choose an ID made of a-z and 0-9 . This ID will be stored in the database
      # so that GitLab can remember which LDAP server a user belongs to.
      # uswest2:
      #   label:
      #   host:
      #   ....


  ## OmniAuth settings
  omniauth:
    # Allow login via Twitter, Google, etc. using OmniAuth providers
    enabled: false

    # Uncomment this to automatically sign in with a specific omniauth provider's without
    # showing GitLab's sign-in page (default: show the GitLab sign-in page)
    # auto_sign_in_with_provider: saml

    # Sync user's profile from the specified Omniauth providers every time the user logs in (default: empty).
    # Define the allowed providers using an array, e.g. ["cas3", "saml", "twitter"],
    # or as true/false to allow all providers or none.
    # sync_profile_from_provider: []

    # Select which info to sync from the providers above. (default: email).
    # Define the synced profile info using an array. Available options are "name", "email" and "location"
    # e.g. ["name", "email", "location"] or as true to sync all available.
    # This consequently will make the selected attributes read-only.
    # sync_profile_attributes: true

    # CAUTION!
    # This allows users to login without having a user account first. Define the allowed providers
    # using an array, e.g. ["saml", "twitter"], or as true/false to allow all providers or none.
    # User accounts will be created automatically when authentication was successful.
    allow_single_sign_on: ["saml"]

    # Locks down those users until they have been cleared by the admin (default: true).
    block_auto_created_users: true
    # Look up new users in LDAP servers. If a match is found (same uid), automatically
    # link the omniauth identity with the LDAP account. (default: false)
    auto_link_ldap_user: false

    # Allow users with existing accounts to login and auto link their account via SAML
    # login, without having to do a manual login first and manually add SAML
    # (default: false)
    auto_link_saml_user: false

    # Set different Omniauth providers as external so that all users creating accounts
    # via these providers will not be able to have access to internal projects. You
    # will need to use the full name of the provider, like `google_oauth2` for Google.
    # Refer to the examples below for the full names of the supported providers.
    # (default: [])
    external_providers: []

    ## Auth providers
    # Uncomment the following lines and fill in the data of the auth provider you want to use
    # If your favorite auth provider is not listed you can use others:
    # see https://github.com/gitlabhq/gitlab-public-wiki/wiki/Custom-omniauth-provider-configurations
    # The 'app_id' and 'app_secret' parameters are always passed as the first two
    # arguments, followed by optional 'args' which can be either a hash or an array.
    # Documentation for this is available at http://doc.gitlab.com/ce/integration/omniauth.html
    providers:
      # See omniauth-cas3 for more configuration details
      # - { name: 'cas3',
      #     label: 'cas3',
      #     args: {
      #             url: 'https://sso.example.com',
      #             disable_ssl_verification: false,
      #             login_url: '/cas/login',
      #             service_validate_url: '/cas/p3/serviceValidate',
      #             logout_url: '/cas/logout'} }
      # - { name: 'authentiq',
      #     # for client credentials (client ID and secret), go to https://www.authentiq.com/developers
      #     app_id: 'YOUR_CLIENT_ID',
      #     app_secret: 'YOUR_CLIENT_SECRET',
      #     args: {
      #             scope: 'aq:name email~rs address aq:push'
      #             # callback_url parameter is optional except when 'gitlab.host' in this file is set to 'localhost'
      #             # callback_url: 'YOUR_CALLBACK_URL'
      #           }
      #   }
      # - { name: 'github',
      #     app_id: 'YOUR_APP_ID',
      #     app_secret: 'YOUR_APP_SECRET',
      #     url: "https://github.com/",
      #     verify_ssl: true,
      #     args: { scope: 'user:email' } }
      # - { name: 'bitbucket',
      #     app_id: 'YOUR_APP_ID',
      #     app_secret: 'YOUR_APP_SECRET' }
      # - { name: 'gitlab',
      #     app_id: 'YOUR_APP_ID',
      #     app_secret: 'YOUR_APP_SECRET',
      #     args: { scope: 'api' } }
      # - { name: 'google_oauth2',
      #     app_id: 'YOUR_APP_ID',
      #     app_secret: 'YOUR_APP_SECRET',
      #     args: { access_type: 'offline', approval_prompt: '' } }
      # - { name: 'facebook',
      #     app_id: 'YOUR_APP_ID',
      #     app_secret: 'YOUR_APP_SECRET' }
      # - { name: 'twitter',
      #     app_id: 'YOUR_APP_ID',
      #     app_secret: 'YOUR_APP_SECRET' }
      #
      # - { name: 'saml',
      #     label: 'Our SAML Provider',
      #     groups_attribute: 'Groups',
      #     external_groups: ['Contractors', 'Freelancers'],
      #     args: {
      #             assertion_consumer_service_url: 'https://gitlab.example.com/users/auth/saml/callback',
      #             idp_cert_fingerprint: '43:51:43:a1:b5:fc:8b:b7:0a:3a:a9:b1:0f:66:73:a8',
      #             idp_sso_target_url: 'https://login.example.com/idp',
      #             issuer: 'https://gitlab.example.com',
      #             name_identifier_format: 'urn:oasis:names:tc:SAML:2.0:nameid-format:transient'
      #           } }
      #
      # - { name: 'crowd',
      #     args: {
      #       crowd_server_url: 'CROWD SERVER URL',
      #       application_name: 'YOUR_APP_NAME',
      #       application_password: 'YOUR_APP_PASSWORD' } }
      #
      # - { name: 'auth0',
      #     args: {
      #       client_id: 'YOUR_AUTH0_CLIENT_ID',
      #       client_secret: 'YOUR_AUTH0_CLIENT_SECRET',
      #       namespace: 'YOUR_AUTH0_DOMAIN' } }

    # SSO maximum session duration in seconds. Defaults to CAS default of 8 hours.
    # cas3:
    #   session_duration: 28800

  # Shared file storage settings
  shared:
    path: /var/lib/gitlab/shared # Default: shared

  # Gitaly settings
  gitaly:
    # Path to the directory containing Gitaly client executables.
    client_path: /usr/bin
    # Default Gitaly authentication token. Can be overriden per storage. Can
    # be left blank when Gitaly is running locally on a Unix socket, which
    # is the normal way to deploy Gitaly.
    token:

  #
  # 4. Advanced settings
  # ==========================

  ## Repositories settings
  repositories:
    # Paths where repositories can be stored. Give the canonicalized absolute pathname.
    # IMPORTANT: None of the path components may be symlink, because
    # gitlab-shell invokes Dir.pwd inside the repository path and that results
    # real path not the symlink.
    storages: # You must have at least a `default` storage path.
      default:
        path: /var/lib/gitlab/repositories/
        gitaly_address: unix:/var/lib/gitlab/sockets/gitlab-gitaly.socket # TCP connections are supported too (e.g. tcp://host:port)
        # gitaly_token: 'special token' # Optional: override global gitaly.token for this storage.

  ## Backup settings
  backup:
    path: "/var/lib/gitlab/backups"   # Relative paths are relative to Rails.root (default: tmp/backups/)
    # archive_permissions: 0640 # Permissions for the resulting backup.tar file (default: 0600)
    # keep_time: 604800   # default: 0 (forever) (in seconds)
    # pg_schema: public     # default: nil, it means that all schemas will be backed up
    # upload:
    #   # Fog storage connection settings, see http://fog.io/storage/ .
    #   connection:
    #     provider: AWS
    #     region: eu-west-1
    #     aws_access_key_id: AKIAKIAKI
    #     aws_secret_access_key: 'secret123'
    #   # The remote 'directory' to store your backups. For S3, this would be the bucket name.
    #   remote_directory: 'my.s3.bucket'
    #   # Use multipart uploads when file size reaches 100MB, see
    #   #  http://docs.aws.amazon.com/AmazonS3/latest/dev/uploadobjusingmpu.html
    #   multipart_chunk_size: 104857600
    #   # Turns on AWS Server-Side Encryption with Amazon S3-Managed Keys for backups, this is optional
    #   # encryption: 'AES256'
    #   # Specifies Amazon S3 storage class to use for backups, this is optional
    #   # storage_class: 'STANDARD'

  ## GitLab Shell settings
  gitlab_shell:
    path: /usr/share/webapps/gitlab-shell/
    hooks_path: /usr/share/webapps/gitlab-shell/hooks/

    # File that contains the secret key for verifying access for gitlab-shell.
    # Default is '.gitlab_shell_secret' relative to Rails.root (i.e. root of the GitLab app).
    # secret_file: /home/git/gitlab/.gitlab_shell_secret

    # Git over HTTP
    upload_pack: true
    receive_pack: true

    # Git import/fetch timeout
    # git_timeout: 800

    # If you use non-standard ssh port you need to specify it
    # ssh_port: 22

  workhorse:
    # File that contains the secret key for verifying access for gitlab-workhorse.
    # Default is '.gitlab_workhorse_secret' relative to Rails.root (i.e. root of the GitLab app).
    # secret_file: /home/git/gitlab/.gitlab_workhorse_secret

  ## Git settings
  # CAUTION!
  # Use the default values unless you really know what you are doing
  git:
    bin_path: /usr/bin/git

  ## Webpack settings
  # If enabled, this will tell rails to serve frontend assets from the webpack-dev-server running
  # on a given port instead of serving directly from /assets/webpack. This is only indended for use
  # in development.
  webpack:
    # dev_server:
    #   enabled: true
    #   host: localhost
    #   port: 3808

  ## Monitoring
  # Built in monitoring settings
  monitoring:
    # Time between sampling of unicorn socket metrics, in seconds
    # unicorn_sampler_interval: 10
    # IP whitelist to access monitoring endpoints
    ip_whitelist:
      - 127.0.0.0/8

    # Sidekiq exporter is webserver built in to Sidekiq to expose Prometheus metrics
    sidekiq_exporter:
    #  enabled: true
    #  address: localhost
    #  port: 3807

  #
  # 5. Extra customization
  # ==========================

  extra:
    ## Google analytics. Uncomment if you want it
    # google_analytics_id: '_your_tracking_id'

    ## Piwik analytics.
    # piwik_url: '_your_piwik_url'
    # piwik_site_id: '_your_piwik_site_id'

  rack_attack:
    git_basic_auth:
      # Rack Attack IP banning enabled
      # enabled: true
      #
      # Whitelist requests from 127.0.0.1 for web proxies (NGINX/Apache) with incorrect headers
      # ip_whitelist: ["127.0.0.1"]
      #
      # Limit the number of Git HTTP authentication attempts per IP
      # maxretry: 10
      #
      # Reset the auth attempt counter per IP after 60 seconds
      # findtime: 60
      #
      # Ban an IP for one hour (3600s) after too many auth attempts
      # bantime: 3600

development:
  <<: *base

test:
  <<: *base
  gravatar:
    enabled: true
  lfs:
    enabled: false
  gitlab:
    host: localhost
    port: 80

    # When you run tests we clone and setup gitlab-shell
    # In order to setup it correctly you need to specify
    # your system username you use to run GitLab
    # user: YOUR_USERNAME
  pages:
    path: tmp/tests/pages
  repositories:
    storages:
      default:
        path: tmp/tests/repositories/
        gitaly_address: unix:tmp/tests/gitaly/gitaly.socket
      broken:
        path: tmp/tests/non-existent-repositories
        gitaly_address: unix:tmp/tests/gitaly/gitaly.socket

  gitaly:
    client_path: tmp/tests/gitaly
    token: secret
  backup:
    path: tmp/tests/backups
  gitlab_shell:
    path: tmp/tests/gitlab-shell/
    hooks_path: tmp/tests/gitlab-shell/hooks/
  issues_tracker:
    redmine:
      title: "Redmine"
      project_url: "http://redmine/projects/:issues_tracker_id"
      issues_url: "http://redmine/:project_id/:issues_tracker_id/:id"
      new_issue_url: "http://redmine/projects/:issues_tracker_id/issues/new"
    jira:
      title: "JIRA"
      url: https://sample_company.atlassian.net
      project_key: PROJECT

  omniauth:
    enabled: true
    allow_single_sign_on: true
    external_providers: []

    providers:
      - { name: 'cas3',
          label: 'cas3',
          args: { url: 'https://sso.example.com',
                  disable_ssl_verification: false,
                  login_url: '/cas/login',
                  service_validate_url: '/cas/p3/serviceValidate',
                  logout_url: '/cas/logout'} }
      - { name: 'github',
          app_id: 'YOUR_APP_ID',
          app_secret: 'YOUR_APP_SECRET',
          url: "https://github.com/",
          verify_ssl: false,
          args: { scope: 'user:email' } }
      - { name: 'bitbucket',
          app_id: 'YOUR_APP_ID',
          app_secret: 'YOUR_APP_SECRET' }
      - { name: 'gitlab',
          app_id: 'YOUR_APP_ID',
          app_secret: 'YOUR_APP_SECRET',
          args: { scope: 'api' } }
      - { name: 'google_oauth2',
          app_id: 'YOUR_APP_ID',
          app_secret: 'YOUR_APP_SECRET',
          args: { access_type: 'offline', approval_prompt: '' } }
      - { name: 'facebook',
          app_id: 'YOUR_APP_ID',
          app_secret: 'YOUR_APP_SECRET' }
      - { name: 'twitter',
          app_id: 'YOUR_APP_ID',
          app_secret: 'YOUR_APP_SECRET' }
      - { name: 'auth0',
          args: {
            client_id: 'YOUR_AUTH0_CLIENT_ID',
            client_secret: 'YOUR_AUTH0_CLIENT_SECRET',
            namespace: 'YOUR_AUTH0_DOMAIN' } }
      - { name: 'authentiq',
          app_id: 'YOUR_CLIENT_ID',
          app_secret: 'YOUR_CLIENT_SECRET',
          args: { scope: 'aq:name email~rs address aq:push' } }
  ldap:
    enabled: false
    servers:
      main:
        label: ldap
        host: 127.0.0.1
        port: 3890
        uid: 'uid'
        encryption: 'plain' # "start_tls" or "simple_tls" or "plain"
        base: 'dc=example,dc=com'
        user_filter: ''
        group_base: 'ou=groups,dc=example,dc=com'
        admin_group: ''

staging:
  <<: *base

/etc/webapps/gitlab/unicorn.rb

# Sample verbose configuration file for Unicorn (not Rack)
#
# This configuration file documents many features of Unicorn
# that may not be needed for some applications. See
# http://unicorn.bogomips.org/examples/unicorn.conf.minimal.rb
# for a much simpler configuration file.
#
# See http://unicorn.bogomips.org/Unicorn/Configurator.html for complete
# documentation.

# Note: If you change this file in a Merge Request, please also create a
# Merge Request on https://gitlab.com/gitlab-org/omnibus-gitlab/merge_requests

# Relative URL support
# WARNING: We recommend using an FQDN to host GitLab in a root path instead
# of using a relative URL.
# Documentation: http://doc.gitlab.com/ce/install/relative_url.html
# Uncomment and customize the following line to run in a non-root path
#
# ENV['RAILS_RELATIVE_URL_ROOT'] = "/gitlab"

# Read about unicorn workers here:
# http://doc.gitlab.com/ee/install/requirements.html#unicorn-workers
#
worker_processes 3

# Since Unicorn is never exposed to outside clients, it does not need to
# run on the standard HTTP port (80), there is no reason to start Unicorn
# as root unless it's from system init scripts.
# If running the master process as root and the workers as an unprivileged
# user, do this to switch euid/egid in the workers (also chowns logs):
# user "unprivileged_user", "unprivileged_group"

# Help ensure your application will always spawn in the symlinked
# "current" directory that Capistrano sets up.
working_directory "/usr/share/webapps/gitlab" # available in 0.94.0+

# Listen on both a Unix domain socket and a TCP port.
# If you are load-balancing multiple Unicorn masters, lower the backlog
# setting to e.g. 64 for faster failover.
listen "/run/gitlab/gitlab.socket", :backlog => 1024
listen "127.0.0.1:8080", :tcp_nopush => true

# nuke workers after 30 seconds instead of 60 seconds (the default)
#
# NOTICE: git push over http depends on this value.
# If you want to be able to push huge amount of data to git repository over http
# you will have to increase this value too.
#
# Example of output if you try to push 1GB repo to GitLab over http.
#   -> git push http://gitlab.... master
#
#   error: RPC failed; result=18, HTTP code = 200
#   fatal: The remote end hung up unexpectedly
#   fatal: The remote end hung up unexpectedly
#
# For more information see http://stackoverflow.com/a/21682112/752049
#
timeout 60

# feel free to point this anywhere accessible on the filesystem
pid "/run/gitlab/unicorn.pid"

# By default, the Unicorn logger will write to stderr.
# Additionally, some applications/frameworks log to stderr or stdout,
# so prevent them from going to /dev/null when daemonized here:
stderr_path "/var/log/gitlab/unicorn.stderr.log"
stdout_path "/var/log/gitlab/unicorn.stdout.log"

# combine Ruby 2.0.0dev or REE with "preload_app true" for memory savings
# http://rubyenterpriseedition.com/faq.html#adapt_apps_for_cow
preload_app true
GC.respond_to?(:copy_on_write_friendly=) and
  GC.copy_on_write_friendly = true

# Enable this flag to have unicorn test client connections by writing the
# beginning of the HTTP headers before calling the application.  This
# prevents calling the application for connections that have disconnected
# while queued.  This is only guaranteed to detect clients on the same
# host unicorn runs on, and unlikely to detect disconnects even on a
# fast LAN.
check_client_connection false

before_fork do |server, worker|
  # the following is highly recommended for Rails + "preload_app true"
  # as there's no need for the master process to hold a connection
  defined?(ActiveRecord::Base) and
    ActiveRecord::Base.connection.disconnect!

  # The following is only recommended for memory/DB-constrained
  # installations.  It is not needed if your system can house
  # twice as many worker_processes as you have configured.
  #
  # This allows a new master process to incrementally
  # phase out the old master process with SIGTTOU to avoid a
  # thundering herd (especially in the "preload_app false" case)
  # when doing a transparent upgrade.  The last worker spawned
  # will then kill off the old master process with a SIGQUIT.
  old_pid = "#{server.config[:pid]}.oldbin"
  if old_pid != server.pid
    begin
      sig = (worker.nr + 1) >= server.worker_processes ? :QUIT : :TTOU
      Process.kill(sig, File.read(old_pid).to_i)
    rescue Errno::ENOENT, Errno::ESRCH
    end
  end
  #
  # Throttle the master from forking too quickly by sleeping.  Due
  # to the implementation of standard Unix signal handlers, this
  # helps (but does not completely) prevent identical, repeated signals
  # from being lost when the receiving process is busy.
  # sleep 1
end

after_fork do |server, worker|
  # per-process listener ports for debugging/admin/migrations
  # addr = "127.0.0.1:#{9293 + worker.nr}"
  # server.listen(addr, :tries => -1, :delay => 5, :tcp_nopush => true)

  # the following is *required* for Rails + "preload_app true",
  defined?(ActiveRecord::Base) and
    ActiveRecord::Base.establish_connection

  # reset prometheus client, this will cause any opened metrics files to be closed
  defined?(::Prometheus::Client.reinitialize_on_pid_change) &&
    Prometheus::Client.reinitialize_on_pid_change

  # if preload_app is true, then you may also want to check and
  # restart any other shared sockets/descriptors such as Memcached,
  # and Redis.  TokyoCabinet file handles are safe to reuse
  # between any number of forked children (assuming your kernel
  # correctly implements pread()/pwrite() system calls)
end

/etc/webapps/gitlab-shell/config.yml

#
# If you change this file in a Merge Request, please also create
# a Merge Request on https://gitlab.com/gitlab-org/omnibus-gitlab/merge_requests
#

# GitLab user. git by default
user: gitlab

# URL to GitLab instance, used for API calls. Default: http://localhost:8080.
# For relative URL support read http://doc.gitlab.com/ce/install/relative_url.html
# You only have to change the default if you have configured Unicorn
# to listen on a custom port, or if you have configured Unicorn to
# only listen on a Unix domain socket. For Unix domain sockets use
# "http+unix://<urlquoted-path-to-socket>", e.g.
# "http+unix://%2Fpath%2Fto%2Fsocket"
gitlab_url: "http://localhost:8080"

# See installation.md#using-https for additional HTTPS configuration details.
http_settings:
#  read_timeout: 300
#  user: someone
#  password: somepass
#  ca_file: /etc/ssl/cert.pem
#  ca_path: /etc/pki/tls/certs
  self_signed_cert: false

# File used as authorized_keys for gitlab user
auth_file: "/var/lib/gitlab/.ssh/authorized_keys"

# File that contains the secret key for verifying access to GitLab.
# Default is .gitlab_shell_secret in the gitlab-shell directory.
# secret_file: "/var/lib/gitlab/gitlab-shell/.gitlab_shell_secret"

# Parent directory for global custom hook directories (pre-receive.d, update.d, post-receive.d)
# Default is hooks in the gitlab-shell directory.
# custom_hooks_dir: "/var/lib/gitlab/gitlab-shell/hooks"

# Redis settings used for pushing commit notices to gitlab
redis:
  bin: /usr/bin/redis-cli
  host: 127.0.0.1
  port: 6379
  # pass: redispass # Allows you to specify the password for Redis
  database: 0
  socket: /var/run/redis/redis.sock # Comment out this line if you want to use TCP or Sentinel
  namespace: resque:gitlab
  # sentinels:
  #   -
  #     host: 127.0.0.1
  #     port: 26380
  #   -
  #     host: 127.0.0.1
  #     port: 26381


# Log file.
# Default is gitlab-shell.log in the root directory.
log_file: "/var/log/gitlab/gitlab-shell.log"

# Log level. INFO by default
log_level: INFO

# Audit usernames.
# Set to true to see real usernames in the logs instead of key ids, which is easier to follow, but
# incurs an extra API call on every gitlab-shell command.
audit_usernames: false

# Git trace log file.
# If set, git commands receive GIT_TRACE* environment variables
# See https://git-scm.com/book/es/v2/Git-Internals-Environment-Variables#Debugging for documentation
# An absolute path starting with / – the trace output will be appended to that file.
# It needs to exist so we can check permissions and avoid to throwing warnings to the users.
git_trace_log_file:

/var/log/gitlab/production.log

Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Started GET "/" for 127.0.0.1 at 2017-11-23 17:11:55 +0100
Processing by RootController#index as HTML
Redirected to http://localhost:8080/users/sign_in
Filter chain halted as :redirect_unlogged_user rendered or redirected
Completed 302 Found in 5ms (ActiveRecord: 0.0ms)
Started GET "/users/sign_in" for 127.0.0.1 at 2017-11-23 17:11:57 +0100
Processing by SessionsController#new as HTML
Redirected to http://localhost:8080/users/password/edit?reset_password_token=TQm2jocgzrz-Pv1JRdqa
Filter chain halted as :check_initial_setup rendered or redirected
Completed 302 Found in 143ms (ActiveRecord: 12.3ms)
Started GET "/users/password/edit?reset_password_token=[FILTERED]" for 127.0.0.1 at 2017-11-23 17:11:58 +0100
Processing by PasswordsController#edit as HTML
  Parameters: {"reset_password_token"=>"[FILTERED]"}
Completed 200 OK in 184ms (Views: 79.9ms | ActiveRecord: 3.4ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 17:11:59 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:11:59 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:11:59 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:11:59 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 17:11:59 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Completed 401 Unauthorized in 3ms (ActiveRecord: 0.0ms)
Started GET "/assets/favicon-075eba76312e8421991a0c1f89a89ee81678bcde72319dd3e8047e2a47cd3a42.ico" for 127.0.0.1 at 2017-11-23 17:12:00 +0100
Processing by ApplicationController#route_not_found as 
  Parameters: {"unmatched_route"=>"assets/favicon-075eba76312e8421991a0c1f89a89ee81678bcde72319dd3e8047e2a47cd3a42"}
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
Raven 2.5.3 configured not to capture errors: DSN not set
Started PUT "/users/password" for 127.0.0.1 at 2017-11-23 17:12:16 +0100
Processing by PasswordsController#update as HTML
  Parameters: {"utf8"=>"✓", "authenticity_token"=>"[FILTERED]", "user"=>{"reset_password_token"=>"[FILTERED]", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Change your password"}
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: a0e1dae0-a176-4c5f-bae8-bb9ee0c703d9) to Sidekiq(mailers) with arguments: "DeviseMailer", "password_change", "deliver_now", gid://gitlab/User/1
[ActiveJob] [ActionMailer::DeliveryJob] [a0e1dae0-a176-4c5f-bae8-bb9ee0c703d9] Performing ActionMailer::DeliveryJob from Sidekiq(mailers) with arguments: "DeviseMailer", "password_change", "deliver_now", gid://gitlab/User/1
Redirected to http://localhost:8080/users/sign_in
Completed 302 Found in 236ms (ActiveRecord: 8.6ms)
Started GET "/users/sign_in" for 127.0.0.1 at 2017-11-23 17:12:16 +0100
Processing by SessionsController#new as HTML
[ActiveJob] [ActionMailer::DeliveryJob] [a0e1dae0-a176-4c5f-bae8-bb9ee0c703d9] 
Sent mail to admin@example.com (3.8ms)
[ActiveJob] [ActionMailer::DeliveryJob] [a0e1dae0-a176-4c5f-bae8-bb9ee0c703d9] Performed ActionMailer::DeliveryJob from Sidekiq(mailers) in 78.68ms
Completed 200 OK in 109ms (Views: 99.9ms | ActiveRecord: 0.6ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:12:16 +0100
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 17:12:16 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:12:16 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:12:16 +0100
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 17:12:16 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Completed 401 Unauthorized in 2ms (ActiveRecord: 0.0ms)
Started GET "/assets/favicon-075eba76312e8421991a0c1f89a89ee81678bcde72319dd3e8047e2a47cd3a42.ico" for 127.0.0.1 at 2017-11-23 17:12:16 +0100
Processing by ApplicationController#route_not_found as 
  Parameters: {"unmatched_route"=>"assets/favicon-075eba76312e8421991a0c1f89a89ee81678bcde72319dd3e8047e2a47cd3a42"}
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
Started GET "/users/sign_in" for 127.0.0.1 at 2017-11-23 17:12:33 +0100
Processing by SessionsController#new as HTML
Completed 200 OK in 12ms (Views: 5.7ms | ActiveRecord: 0.8ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:12:33 +0100
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 17:12:33 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:12:33 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:12:33 +0100
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 17:12:33 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:12:33 +0100
Completed 401 Unauthorized in 2ms (ActiveRecord: 0.0ms)
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
Started GET "/assets/favicon-075eba76312e8421991a0c1f89a89ee81678bcde72319dd3e8047e2a47cd3a42.ico" for 127.0.0.1 at 2017-11-23 17:12:33 +0100
Processing by ApplicationController#route_not_found as 
  Parameters: {"unmatched_route"=>"assets/favicon-075eba76312e8421991a0c1f89a89ee81678bcde72319dd3e8047e2a47cd3a42"}
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
Started POST "/users/sign_in" for 127.0.0.1 at 2017-11-23 17:12:52 +0100
Processing by SessionsController#create as HTML
  Parameters: {"utf8"=>"✓", "authenticity_token"=>"[FILTERED]", "user"=>{"login"=>"root", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Sign in"}
Redirected to http://localhost:8080/
Completed 302 Found in 115ms (ActiveRecord: 7.5ms)
Started GET "/" for 127.0.0.1 at 2017-11-23 17:12:53 +0100
Processing by RootController#index as HTML
Completed 200 OK in 201ms (Views: 183.5ms | ActiveRecord: 7.4ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 17:12:53 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:12:53 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 6ms (ActiveRecord: 0.3ms)
Completed 404 Not Found in 4ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:12:53 +0100
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:12:53 +0100
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 17:12:53 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-23 17:12:53 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 404 Not Found in 5ms (ActiveRecord: 0.3ms)
Completed 422 Unprocessable Entity in 7ms (ActiveRecord: 0.3ms)
Completed 404 Not Found in 7ms (ActiveRecord: 1.6ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/favicon-075eba76312e8421991a0c1f89a89ee81678bcde72319dd3e8047e2a47cd3a42.ico" for 127.0.0.1 at 2017-11-23 17:12:53 +0100
Processing by ApplicationController#route_not_found as 
  Parameters: {"unmatched_route"=>"assets/favicon-075eba76312e8421991a0c1f89a89ee81678bcde72319dd3e8047e2a47cd3a42"}
Completed 404 Not Found in 6ms (ActiveRecord: 0.2ms)
Started GET "/" for 127.0.0.1 at 2017-11-23 17:12:59 +0100
Processing by RootController#index as HTML
Completed 200 OK in 173ms (Views: 160.3ms | ActiveRecord: 3.5ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:12:59 +0100
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 17:12:59 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.2ms)
Completed 404 Not Found in 4ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:12:59 +0100
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-23 17:12:59 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:12:59 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.6ms)
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 17:12:59 +0100
Completed 404 Not Found in 6ms (ActiveRecord: 0.3ms)
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 6ms (ActiveRecord: 0.4ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 404 Not Found in 5ms (ActiveRecord: 0.5ms)
Raven 2.5.3 configured not to capture errors: DSN not set
Started GET "/api/v4/internal/check" for 127.0.0.1 at 2017-11-23 17:13:59 +0100
Raven 2.5.3 configured not to capture errors: DSN not set
Started GET "/" for 127.0.0.1 at 2017-11-23 17:17:18 +0100
Processing by RootController#index as HTML
Completed 200 OK in 226ms (Views: 182.5ms | ActiveRecord: 4.2ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 17:17:19 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:17:19 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 30ms (ActiveRecord: 1.6ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:17:21 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:17:21 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 17:17:21 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Completed 404 Not Found in 31ms (ActiveRecord: 1.7ms)
Completed 404 Not Found in 4ms (ActiveRecord: 0.3ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:17:21 +0100
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:17:21 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:17:21 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-23 17:17:21 +0100
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.2ms)
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.4ms)
Completed 404 Not Found in 4ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Raven 2.5.3 configured not to capture errors: DSN not set
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 17:17:23 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.1ms)
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 17:17:23 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.4ms)
Started GET "/" for 127.0.0.1 at 2017-11-23 17:17:29 +0100
Processing by RootController#index as HTML
Completed 200 OK in 190ms (Views: 170.7ms | ActiveRecord: 2.6ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:17:29 +0100
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 17:17:29 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.1ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.7ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:17:29 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:17:29 +0100
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 17:17:29 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 6ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-23 17:17:29 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 7ms (ActiveRecord: 0.5ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 5ms (ActiveRecord: 0.7ms)
Completed 404 Not Found in 5ms (ActiveRecord: 0.3ms)
Started GET "/" for 127.0.0.1 at 2017-11-23 17:18:01 +0100
Processing by RootController#index as HTML
Completed 200 OK in 20ms (Views: 11.9ms | ActiveRecord: 2.1ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 17:18:01 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:18:01 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 404 Not Found in 4ms (ActiveRecord: 0.2ms)
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:18:02 +0100
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-23 17:18:02 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:18:02 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.1ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:18:02 +0100
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.3ms)
Completed 404 Not Found in 5ms (ActiveRecord: 0.2ms)
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 17:18:02 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.5ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 404 Not Found in 4ms (ActiveRecord: 0.2ms)
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Started GET "/" for 127.0.0.1 at 2017-11-23 17:20:15 +0100
Raven 2.5.3 configured not to capture errors: DSN not set
Processing by RootController#index as HTML
Completed 200 OK in 169ms (Views: 133.8ms | ActiveRecord: 4.0ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 17:20:17 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:20:17 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Completed 404 Not Found in 23ms (ActiveRecord: 1.7ms)
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:20:19 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:20:19 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 3ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 17:20:19 +0100
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 9ms (ActiveRecord: 5.5ms)
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-23 17:20:19 +0100
Completed 404 Not Found in 4ms (ActiveRecord: 0.3ms)
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.2ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 25ms (ActiveRecord: 1.9ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Raven 2.5.3 configured not to capture errors: DSN not set
Started GET "/" for 127.0.0.1 at 2017-11-23 17:21:43 +0100
Raven 2.5.3 configured not to capture errors: DSN not set
Processing by RootController#index as HTML
Completed 200 OK in 220ms (Views: 177.0ms | ActiveRecord: 4.0ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 17:21:44 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:21:44 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Completed 404 Not Found in 47ms (ActiveRecord: 1.7ms)
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:21:46 +0100
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-23 17:21:46 +0100
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.5ms)
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:21:46 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.4ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 17:21:46 +0100
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 8ms (ActiveRecord: 0.3ms)
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 404 Not Found in 5ms (ActiveRecord: 1.0ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 53ms (ActiveRecord: 1.6ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/" for 127.0.0.1 at 2017-11-23 17:26:44 +0100
Processing by RootController#index as HTML
Completed 200 OK in 16ms (Views: 10.7ms | ActiveRecord: 1.0ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 17:26:44 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:26:44 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Completed 404 Not Found in 5ms (ActiveRecord: 0.3ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 6ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:26:44 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:26:44 +0100
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 17:26:44 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.2ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.3ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-23 17:26:44 +0100
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 1.7ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'



ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.3ms)
Started GET "/" for 127.0.0.1 at 2017-11-23 17:26:46 +0100
Processing by RootController#index as HTML
Completed 200 OK in 16ms (Views: 10.0ms | ActiveRecord: 1.0ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 17:26:46 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:26:46 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.2ms)
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:26:46 +0100
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:26:46 +0100
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.4ms)
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 17:26:46 +0100
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.2ms)
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 6ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'



ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-23 17:26:46 +0100
Completed 404 Not Found in 6ms (ActiveRecord: 0.2ms)
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 6ms (ActiveRecord: 0.9ms)
Started GET "/" for 127.0.0.1 at 2017-11-23 17:27:28 +0100
Processing by RootController#index as HTML
Completed 200 OK in 17ms (Views: 10.7ms | ActiveRecord: 1.1ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 17:27:28 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:27:28 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.2ms)
Completed 404 Not Found in 4ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:27:28 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:27:28 +0100
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 17:27:28 +0100
Processing by ApplicationController#route_not_found as JS
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-23 17:27:28 +0100
Completed 422 Unprocessable Entity in 8ms (ActiveRecord: 0.5ms)
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 404 Not Found in 8ms (ActiveRecord: 0.5ms)
Completed 404 Not Found in 4ms (ActiveRecord: 0.2ms)
Started GET "/" for 127.0.0.1 at 2017-11-23 17:27:29 +0100
Processing by RootController#index as HTML
Completed 200 OK in 188ms (Views: 169.9ms | ActiveRecord: 2.6ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 17:27:30 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:27:30 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.1ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.1ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:27:30 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:27:30 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 17:27:30 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.1ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-23 17:27:30 +0100
Completed 404 Not Found in 5ms (ActiveRecord: 1.0ms)
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 404 Not Found in 4ms (ActiveRecord: 0.2ms)
Completed 422 Unprocessable Entity in 16ms (ActiveRecord: 0.4ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/" for 127.0.0.1 at 2017-11-23 17:27:47 +0100
Processing by RootController#index as HTML
Completed 200 OK in 27ms (Views: 13.8ms | ActiveRecord: 5.3ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 17:27:47 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:27:47 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Completed 404 Not Found in 5ms (ActiveRecord: 0.2ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 6ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:27:47 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:27:47 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 17:27:47 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.3ms)
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-23 17:27:47 +0100
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 404 Not Found in 13ms (ActiveRecord: 0.6ms)
Started GET "/" for 127.0.0.1 at 2017-11-23 17:28:15 +0100
Processing by RootController#index as HTML
Completed 200 OK in 19ms (Views: 13.2ms | ActiveRecord: 0.8ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 17:28:15 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:28:15 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.2ms)
Completed 404 Not Found in 4ms (ActiveRecord: 0.1ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-23 17:28:15 +0100
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 7ms (ActiveRecord: 0.6ms)
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:28:15 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:28:15 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.1ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:28:15 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 8ms (ActiveRecord: 3.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 17:28:15 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 49ms (ActiveRecord: 1.8ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Completed 404 Not Found in 48ms (ActiveRecord: 1.7ms)
Started GET "/" for 127.0.0.1 at 2017-11-23 17:28:20 +0100
Processing by RootController#index as HTML
Completed 200 OK in 186ms (Views: 167.7ms | ActiveRecord: 2.7ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 17:28:20 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Completed 404 Not Found in 5ms (ActiveRecord: 0.3ms)
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:28:20 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:28:20 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.3ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 8ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 17:28:20 +0100

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-23 17:28:20 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.5ms)
Completed 404 Not Found in 4ms (ActiveRecord: 0.3ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:28:20 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 45ms (ActiveRecord: 1.6ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Raven 2.5.3 configured not to capture errors: DSN not set
Started GET "/" for 127.0.0.1 at 2017-11-23 17:28:46 +0100
Processing by RootController#index as HTML
Completed 200 OK in 220ms (Views: 177.6ms | ActiveRecord: 4.1ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 17:28:48 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Completed 404 Not Found in 8ms (ActiveRecord: 0.2ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:28:48 +0100
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:28:48 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 7ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:28:48 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 6ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 17:28:48 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Completed 404 Not Found in 6ms (ActiveRecord: 0.3ms)
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-23 17:28:48 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 30ms (ActiveRecord: 1.8ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 30ms (ActiveRecord: 1.8ms)
Raven 2.5.3 configured not to capture errors: DSN not set
Started GET "/" for 127.0.0.1 at 2017-11-23 17:28:52 +0100
Processing by RootController#index as HTML
Completed 200 OK in 197ms (Views: 177.2ms | ActiveRecord: 3.1ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:28:52 +0100
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 17:28:52 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.4ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:28:52 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Completed 404 Not Found in 10ms (ActiveRecord: 5.9ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:28:52 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:28:52 +0100
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:28:52 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 12ms (ActiveRecord: 1.3ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 8ms (ActiveRecord: 3.8ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 17:28:52 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 15ms (ActiveRecord: 0.8ms)
Completed 404 Not Found in 4ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-23 17:28:52 +0100

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 8ms (ActiveRecord: 3.9ms)
Started GET "/" for 127.0.0.1 at 2017-11-23 17:28:55 +0100
Processing by RootController#index as HTML
Completed 200 OK in 16ms (Views: 11.2ms | ActiveRecord: 0.8ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 17:28:55 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.3ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:28:55 +0100
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:28:55 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:28:55 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 6ms (ActiveRecord: 0.4ms)
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 17:28:55 +0100
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.3ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-23 17:28:55 +0100

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 9ms (ActiveRecord: 2.8ms)
Completed 404 Not Found in 7ms (ActiveRecord: 0.2ms)
Started GET "/" for 127.0.0.1 at 2017-11-23 17:28:57 +0100
Processing by RootController#index as HTML
Completed 200 OK in 190ms (Views: 171.2ms | ActiveRecord: 2.6ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 17:28:58 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:28:58 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 404 Not Found in 6ms (ActiveRecord: 0.6ms)
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:28:58 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:28:58 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:28:58 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 17:28:58 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Completed 422 Unprocessable Entity in 6ms (ActiveRecord: 0.5ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-23 17:28:58 +0100
Completed 404 Not Found in 4ms (ActiveRecord: 0.2ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 7ms (ActiveRecord: 1.0ms)
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 404 Not Found in 6ms (ActiveRecord: 0.7ms)
Started GET "/" for 127.0.0.1 at 2017-11-23 17:29:03 +0100
Processing by RootController#index as HTML
Completed 200 OK in 19ms (Views: 12.6ms | ActiveRecord: 1.0ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 17:29:03 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:29:03 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.2ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.6ms)
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:29:03 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:29:03 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'



ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 17:29:03 +0100
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-23 17:29:03 +0100
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.2ms)
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.2ms)
Completed 404 Not Found in 4ms (ActiveRecord: 0.6ms)
Raven 2.5.3 configured not to capture errors: DSN not set
Started GET "/" for 127.0.0.1 at 2017-11-23 17:30:29 +0100
Processing by RootController#index as HTML
Completed 200 OK in 163ms (Views: 128.8ms | ActiveRecord: 3.9ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 17:30:31 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Completed 404 Not Found in 3ms (ActiveRecord: 0.3ms)
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:30:31 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 17:30:31 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Completed 404 Not Found in 3ms (ActiveRecord: 0.2ms)
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-23 17:30:31 +0100
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 3ms (ActiveRecord: 0.2ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:30:31 +0100
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:30:31 +0100
Raven 2.5.3 configured not to capture errors: DSN not set
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 22ms (ActiveRecord: 1.6ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 23ms (ActiveRecord: 1.7ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/" for 127.0.0.1 at 2017-11-23 17:30:58 +0100
Processing by RootController#index as HTML
Completed 200 OK in 158ms (Views: 140.9ms | ActiveRecord: 2.7ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:30:58 +0100
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 17:30:58 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Completed 404 Not Found in 4ms (ActiveRecord: 1.0ms)
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-23 17:30:58 +0100
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:30:58 +0100
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 3ms (ActiveRecord: 0.2ms)
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:30:58 +0100
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 29ms (ActiveRecord: 0.2ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 17:30:58 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Completed 422 Unprocessable Entity in 9ms (ActiveRecord: 0.3ms)
Completed 404 Not Found in 4ms (ActiveRecord: 0.4ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 422 Unprocessable Entity in 7ms (ActiveRecord: 0.8ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/" for 127.0.0.1 at 2017-11-23 17:31:00 +0100
Processing by RootController#index as HTML
Completed 200 OK in 37ms (Views: 9.7ms | ActiveRecord: 0.9ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:31:00 +0100
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 17:31:00 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 404 Not Found in 3ms (ActiveRecord: 0.1ms)
Completed 422 Unprocessable Entity in 3ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:31:00 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:31:00 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 3ms (ActiveRecord: 0.2ms)
Completed 422 Unprocessable Entity in 3ms (ActiveRecord: 0.1ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 17:31:00 +0100

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-23 17:31:00 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Processing by ApplicationController#route_not_found as SVG
Completed 404 Not Found in 3ms (ActiveRecord: 0.3ms)
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 3ms (ActiveRecord: 0.1ms)
Started GET "/" for 127.0.0.1 at 2017-11-23 17:32:21 +0100
Processing by RootController#index as HTML
Completed 200 OK in 177ms (Views: 160.3ms | ActiveRecord: 2.7ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 17:32:21 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:32:21 +0100
Processing by ApplicationController#route_not_found as CSS
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Completed 404 Not Found in 3ms (ActiveRecord: 0.2ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.1ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:32:21 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:32:21 +0100
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 17:32:21 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 404 Not Found in 3ms (ActiveRecord: 0.1ms)
Completed 422 Unprocessable Entity in 3ms (ActiveRecord: 0.1ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'



ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-23 17:32:21 +0100
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.1ms)
Started GET "/" for 127.0.0.1 at 2017-11-23 17:35:53 +0100
Processing by RootController#index as HTML
Completed 200 OK in 34ms (Views: 24.3ms | ActiveRecord: 5.9ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:35:53 +0100
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 17:35:53 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.2ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:35:53 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:35:53 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 3ms (ActiveRecord: 0.1ms)
Completed 422 Unprocessable Entity in 3ms (ActiveRecord: 0.1ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'



ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 17:35:53 +0100
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-23 17:35:53 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 3ms (ActiveRecord: 0.1ms)
Completed 404 Not Found in 6ms (ActiveRecord: 0.2ms)
Started GET "/profile" for 127.0.0.1 at 2017-11-23 17:36:00 +0100
Processing by ProfilesController#show as HTML
Completed 200 OK in 80ms (Views: 74.0ms | ActiveRecord: 2.0ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:36:00 +0100
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 17:36:00 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Completed 404 Not Found in 3ms (ActiveRecord: 0.2ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.1ms)
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-23 17:36:00 +0100

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:36:00 +0100
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Completed 404 Not Found in 5ms (ActiveRecord: 0.2ms)
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:36:00 +0100
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.1ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 17:36:00 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 6ms (ActiveRecord: 0.1ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 404 Not Found in 5ms (ActiveRecord: 0.3ms)
Started GET "/assets/webpack/profile.1bccea8465e6dfd0ddb6.bundle.js" for 127.0.0.1 at 2017-11-23 17:36:00 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/profile.1bccea8465e6dfd0ddb6.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 22ms (ActiveRecord: 1.7ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/profile/applications" for 127.0.0.1 at 2017-11-23 17:36:30 +0100
Processing by Oauth::ApplicationsController#index as HTML
Completed 200 OK in 75ms (Views: 63.7ms | ActiveRecord: 3.3ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 17:36:30 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:36:30 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Completed 404 Not Found in 5ms (ActiveRecord: 0.2ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.6ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:36:30 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:36:30 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 6ms (ActiveRecord: 2.8ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 17:36:30 +0100
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Completed 422 Unprocessable Entity in 7ms (ActiveRecord: 3.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-23 17:36:30 +0100
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 7ms (ActiveRecord: 2.7ms)
Completed 404 Not Found in 5ms (ActiveRecord: 0.2ms)
Started GET "/" for 127.0.0.1 at 2017-11-23 17:36:48 +0100
Processing by RootController#index as HTML
Completed 200 OK in 161ms (Views: 126.1ms | ActiveRecord: 4.1ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 17:36:50 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:36:50 +0100
Processing by ApplicationController#route_not_found as CSS
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.6ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 404 Not Found in 6ms (ActiveRecord: 0.5ms)
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:36:50 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-23 17:36:50 +0100
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 6ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:36:50 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 404 Not Found in 5ms (ActiveRecord: 1.6ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:36:50 +0100
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 17:36:50 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 1.0ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 404 Not Found in 11ms (ActiveRecord: 0.5ms)
Started GET "/" for 127.0.0.1 at 2017-11-23 17:38:29 +0100
Processing by RootController#index as HTML
Completed 200 OK in 36ms (Views: 31.3ms | ActiveRecord: 0.8ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:38:29 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:38:29 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 3ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:38:29 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 7ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 17:38:29 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Completed 404 Not Found in 3ms (ActiveRecord: 0.2ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 17:38:29 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Completed 404 Not Found in 22ms (ActiveRecord: 1.6ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:38:31 +0100
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-23 17:38:31 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:38:31 +0100
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 3ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:38:31 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Completed 404 Not Found in 5ms (ActiveRecord: 2.1ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 1.5ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/" for 127.0.0.1 at 2017-11-23 17:42:58 +0100
Processing by RootController#index as HTML
Completed 200 OK in 15ms (Views: 9.6ms | ActiveRecord: 1.0ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 17:42:58 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:42:58 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 404 Not Found in 3ms (ActiveRecord: 0.5ms)
Completed 422 Unprocessable Entity in 3ms (ActiveRecord: 0.5ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:42:58 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-23 17:42:58 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:42:58 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 6ms (ActiveRecord: 0.6ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 422 Unprocessable Entity in 3ms (ActiveRecord: 0.2ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:42:58 +0100
Completed 404 Not Found in 3ms (ActiveRecord: 0.1ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 17:42:58 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 3ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 404 Not Found in 4ms (ActiveRecord: 1.0ms)
Started GET "/" for 127.0.0.1 at 2017-11-23 17:43:00 +0100
Processing by RootController#index as HTML
Completed 200 OK in 159ms (Views: 143.3ms | ActiveRecord: 2.6ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 17:43:00 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:43:00 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Completed 404 Not Found in 3ms (ActiveRecord: 0.1ms)
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-23 17:43:00 +0100
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:43:00 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 1.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:43:00 +0100
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Completed 404 Not Found in 3ms (ActiveRecord: 0.2ms)
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 17:43:00 +0100
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 10ms (ActiveRecord: 0.8ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 6ms (ActiveRecord: 1.6ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 404 Not Found in 5ms (ActiveRecord: 0.2ms)
Started GET "/" for 127.0.0.1 at 2017-11-23 17:43:01 +0100
Processing by RootController#index as HTML
Completed 200 OK in 14ms (Views: 8.9ms | ActiveRecord: 0.8ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 17:43:01 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Completed 404 Not Found in 3ms (ActiveRecord: 0.2ms)
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:43:01 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:43:01 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 17:43:01 +0100
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.3ms)
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-23 17:43:01 +0100
Completed 404 Not Found in 5ms (ActiveRecord: 0.8ms)
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.2ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:43:01 +0100
Started GET "/" for 127.0.0.1 at 2017-11-23 17:43:01 +0100
Processing by RootController#index as HTML
Completed 200 OK in 13ms (Views: 8.8ms | ActiveRecord: 0.8ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:43:01 +0100
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 17:43:01 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 404 Not Found in 3ms (ActiveRecord: 0.2ms)
Completed 422 Unprocessable Entity in 3ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:43:01 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:43:01 +0100
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 3ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 7ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 17:43:01 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Completed 404 Not Found in 5ms (ActiveRecord: 1.7ms)
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-23 17:43:01 +0100
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 3ms (ActiveRecord: 0.2ms)
Started GET "/" for 127.0.0.1 at 2017-11-23 17:43:02 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 24ms (ActiveRecord: 2.9ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Processing by RootController#index as HTML
Completed 200 OK in 158ms (Views: 123.7ms | ActiveRecord: 4.0ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:43:04 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:43:04 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:43:04 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 3ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 17:43:04 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Completed 404 Not Found in 3ms (ActiveRecord: 0.2ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 17:43:04 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Completed 404 Not Found in 22ms (ActiveRecord: 1.6ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:43:05 +0100
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-23 17:43:05 +0100
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:43:05 +0100
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.5ms)
Completed 404 Not Found in 4ms (ActiveRecord: 0.9ms)
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.7ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:43:05 +0100

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 3ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/" for 127.0.0.1 at 2017-11-23 17:43:06 +0100
Processing by RootController#index as HTML
Completed 200 OK in 165ms (Views: 144.3ms | ActiveRecord: 6.9ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 17:43:06 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:43:06 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Completed 404 Not Found in 3ms (ActiveRecord: 0.3ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 7ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:43:06 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-23 17:43:06 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:43:06 +0100
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 17:43:06 +0100
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.5ms)
Completed 404 Not Found in 5ms (ActiveRecord: 0.8ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 404 Not Found in 5ms (ActiveRecord: 0.3ms)
Started GET "/" for 127.0.0.1 at 2017-11-23 17:43:08 +0100
Processing by RootController#index as HTML
Completed 200 OK in 15ms (Views: 9.4ms | ActiveRecord: 1.7ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 17:43:08 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:43:08 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Completed 404 Not Found in 3ms (ActiveRecord: 0.3ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 3ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-23 17:43:08 +0100
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:43:08 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:43:08 +0100
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Completed 404 Not Found in 3ms (ActiveRecord: 0.3ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 17:43:08 +0100
Completed 422 Unprocessable Entity in 3ms (ActiveRecord: 0.1ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 3ms (ActiveRecord: 0.1ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'



ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Completed 404 Not Found in 5ms (ActiveRecord: 0.9ms)
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Started GET "/" for 127.0.0.1 at 2017-11-23 17:45:22 +0100
Processing by RootController#index as HTML
Completed 200 OK in 208ms (Views: 165.9ms | ActiveRecord: 4.2ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 17:45:24 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:45:24 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Completed 404 Not Found in 29ms (ActiveRecord: 2.9ms)
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:45:25 +0100
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-23 17:45:25 +0100
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Completed 404 Not Found in 7ms (ActiveRecord: 2.8ms)
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:45:25 +0100
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 17:45:25 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 404 Not Found in 5ms (ActiveRecord: 0.7ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 52ms (ActiveRecord: 1.6ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/" for 127.0.0.1 at 2017-11-23 17:47:44 +0100
Processing by RootController#index as HTML
Completed 200 OK in 186ms (Views: 164.5ms | ActiveRecord: 2.6ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:47:44 +0100
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 17:47:44 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.8ms)
Completed 404 Not Found in 5ms (ActiveRecord: 1.0ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:47:44 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:47:44 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:47:44 +0100
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.3ms)
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 17:47:44 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.4ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-23 17:47:44 +0100
Completed 404 Not Found in 5ms (ActiveRecord: 0.3ms)
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 11ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 404 Not Found in 4ms (ActiveRecord: 0.2ms)
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Started GET "/" for 127.0.0.1 at 2017-11-23 17:49:21 +0100
Processing by RootController#index as HTML
Redirected to http://localhost:8080/users/sign_in
Filter chain halted as :redirect_unlogged_user rendered or redirected
Completed 302 Found in 29ms (ActiveRecord: 1.8ms)
Started GET "/users/sign_in" for 127.0.0.1 at 2017-11-23 17:49:22 +0100
Processing by SessionsController#new as HTML
Redirected to http://localhost:8080/users/password/edit?reset_password_token=PJiXRty_My1M7vgyiK4c
Filter chain halted as :check_initial_setup rendered or redirected
Completed 302 Found in 113ms (ActiveRecord: 5.0ms)
Started GET "/users/password/edit?reset_password_token=[FILTERED]" for 127.0.0.1 at 2017-11-23 17:49:22 +0100
Processing by PasswordsController#edit as HTML
  Parameters: {"reset_password_token"=>"[FILTERED]"}
Completed 200 OK in 78ms (Views: 71.3ms | ActiveRecord: 0.4ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 17:49:22 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:49:22 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Completed 401 Unauthorized in 3ms (ActiveRecord: 0.0ms)
Completed 401 Unauthorized in 3ms (ActiveRecord: 0.0ms)
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:49:24 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:49:24 +0100
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 17:49:24 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Completed 401 Unauthorized in 3ms (ActiveRecord: 0.0ms)
Started PUT "/users/password" for 127.0.0.1 at 2017-11-23 17:49:40 +0100
Processing by PasswordsController#update as HTML
  Parameters: {"utf8"=>"✓", "authenticity_token"=>"[FILTERED]", "user"=>{"reset_password_token"=>"[FILTERED]", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Change your password"}
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 1fad4dd2-fb43-48d8-8592-ab7b747adfed) to Sidekiq(mailers) with arguments: "DeviseMailer", "password_change", "deliver_now", gid://gitlab/User/1
[ActiveJob] [ActionMailer::DeliveryJob] [1fad4dd2-fb43-48d8-8592-ab7b747adfed] Performing ActionMailer::DeliveryJob from Sidekiq(mailers) with arguments: "DeviseMailer", "password_change", "deliver_now", gid://gitlab/User/1
Redirected to http://localhost:8080/users/sign_in
Completed 302 Found in 102ms (ActiveRecord: 9.4ms)
Started GET "/users/sign_in" for 127.0.0.1 at 2017-11-23 17:49:40 +0100
Processing by SessionsController#new as HTML
Completed 200 OK in 58ms (Views: 51.1ms | ActiveRecord: 0.7ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:49:40 +0100
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 17:49:40 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
Completed 401 Unauthorized in 3ms (ActiveRecord: 0.0ms)
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:49:40 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:49:40 +0100
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 17:49:40 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
[ActiveJob] [ActionMailer::DeliveryJob] [1fad4dd2-fb43-48d8-8592-ab7b747adfed] 
Sent mail to admin@example.com (4.2ms)
[ActiveJob] [ActionMailer::DeliveryJob] [1fad4dd2-fb43-48d8-8592-ab7b747adfed] Performed ActionMailer::DeliveryJob from Sidekiq(mailers) in 102.29ms
Started POST "/users/sign_in" for 127.0.0.1 at 2017-11-23 17:49:46 +0100
Processing by SessionsController#create as HTML
  Parameters: {"utf8"=>"✓", "authenticity_token"=>"[FILTERED]", "user"=>{"login"=>"root", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Sign in"}
Redirected to http://localhost:8080/
Completed 302 Found in 68ms (ActiveRecord: 4.1ms)
Started GET "/" for 127.0.0.1 at 2017-11-23 17:49:46 +0100
Processing by RootController#index as HTML
Completed 200 OK in 160ms (Views: 147.8ms | ActiveRecord: 2.8ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 17:49:47 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:49:47 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:49:47 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:49:47 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 17:49:47 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.2ms)
Completed 404 Not Found in 46ms (ActiveRecord: 2.6ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 17:49:47 +0100
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-23 17:49:47 +0100
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 17:49:47 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Completed 404 Not Found in 5ms (ActiveRecord: 0.3ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 6ms (ActiveRecord: 0.1ms)
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 17:49:47 +0100

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 38ms (ActiveRecord: 3.7ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Scheduling removal of build artifacts
StuckCiJobsWorker: Cleaning stuck builds
Started GET "/" for 127.0.0.1 at 2017-11-23 18:14:17 +0100
Processing by RootController#index as HTML
Completed 200 OK in 233ms (Views: 207.4ms | ActiveRecord: 6.5ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-23 18:14:17 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-23 18:14:17 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Completed 404 Not Found in 5ms (ActiveRecord: 0.2ms)
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-23 18:14:17 +0100
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 422 Unprocessable Entity in 15ms (ActiveRecord: 1.9ms)
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-23 18:14:17 +0100

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-23 18:14:17 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.6ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 404 Not Found in 5ms (ActiveRecord: 0.5ms)
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-23 18:14:17 +0100
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 6ms (ActiveRecord: 1.1ms)
Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Started GET "/" for 127.0.0.1 at 2017-11-24 11:04:16 +0100
Processing by RootController#index as HTML
Redirected to http://localhost:8080/users/sign_in
Filter chain halted as :redirect_unlogged_user rendered or redirected
Completed 302 Found in 5ms (ActiveRecord: 0.0ms)
Started GET "/users/sign_in" for 127.0.0.1 at 2017-11-24 11:04:18 +0100
Processing by SessionsController#new as HTML
Completed 200 OK in 132ms (Views: 94.5ms | ActiveRecord: 7.2ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 11:04:18 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Completed 401 Unauthorized in 2ms (ActiveRecord: 0.0ms)
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 11:04:18 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Completed 401 Unauthorized in 6ms (ActiveRecord: 0.0ms)
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:04:18 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Completed 401 Unauthorized in 4ms (ActiveRecord: 0.0ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:04:18 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:04:18 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Completed 401 Unauthorized in 3ms (ActiveRecord: 0.0ms)
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Completed 401 Unauthorized in 3ms (ActiveRecord: 0.0ms)
Started GET "/assets/favicon-075eba76312e8421991a0c1f89a89ee81678bcde72319dd3e8047e2a47cd3a42.ico" for 127.0.0.1 at 2017-11-24 11:04:20 +0100
Processing by ApplicationController#route_not_found as 
  Parameters: {"unmatched_route"=>"assets/favicon-075eba76312e8421991a0c1f89a89ee81678bcde72319dd3e8047e2a47cd3a42"}
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
Started POST "/users/sign_in" for 127.0.0.1 at 2017-11-24 11:04:25 +0100
Processing by SessionsController#create as HTML
  Parameters: {"utf8"=>"✓", "authenticity_token"=>"[FILTERED]", "user"=>{"login"=>"root", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Sign in"}
Redirected to http://localhost:8080/
Completed 302 Found in 117ms (ActiveRecord: 14.0ms)
Started GET "/" for 127.0.0.1 at 2017-11-24 11:04:25 +0100
Processing by RootController#index as HTML
Completed 200 OK in 189ms (Views: 166.4ms | ActiveRecord: 12.8ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 11:04:25 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:04:25 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:04:25 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:04:25 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 11:04:25 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Completed 404 Not Found in 34ms (ActiveRecord: 1.8ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:04:25 +0100
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:04:25 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 11:04:25 +0100
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 422 Unprocessable Entity in 6ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 404 Not Found in 5ms (ActiveRecord: 0.2ms)
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:04:25 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 7ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 404 Not Found in 48ms (ActiveRecord: 3.6ms)
Started GET "/assets/favicon-075eba76312e8421991a0c1f89a89ee81678bcde72319dd3e8047e2a47cd3a42.ico" for 127.0.0.1 at 2017-11-24 11:04:25 +0100
Processing by ApplicationController#route_not_found as 
  Parameters: {"unmatched_route"=>"assets/favicon-075eba76312e8421991a0c1f89a89ee81678bcde72319dd3e8047e2a47cd3a42"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.4ms)
Started GET "/" for 127.0.0.1 at 2017-11-24 11:04:27 +0100
Processing by RootController#index as HTML
Completed 200 OK in 222ms (Views: 200.7ms | ActiveRecord: 4.0ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 11:04:27 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:04:27 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.3ms)
Completed 404 Not Found in 5ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:04:27 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:04:27 +0100
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 11:04:27 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 11:04:27 +0100
Completed 422 Unprocessable Entity in 7ms (ActiveRecord: 0.1ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 404 Not Found in 13ms (ActiveRecord: 2.5ms)
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.2ms)
Started GET "/" for 127.0.0.1 at 2017-11-24 11:05:27 +0100
Processing by RootController#index as HTML
Completed 200 OK in 20ms (Views: 13.7ms | ActiveRecord: 0.9ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:05:27 +0100
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 11:05:27 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.3ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 11:05:27 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:05:27 +0100
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:05:27 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Completed 404 Not Found in 5ms (ActiveRecord: 0.2ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 8ms (ActiveRecord: 1.9ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 11:05:27 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Completed 404 Not Found in 6ms (ActiveRecord: 0.3ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 23ms (ActiveRecord: 0.6ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/" for 127.0.0.1 at 2017-11-24 11:05:28 +0100
Processing by RootController#index as HTML
Completed 200 OK in 202ms (Views: 179.6ms | ActiveRecord: 2.9ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:05:29 +0100
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 11:05:29 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 404 Not Found in 5ms (ActiveRecord: 0.2ms)
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:05:29 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:05:29 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 11:05:29 +0100
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 12ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 404 Not Found in 11ms (ActiveRecord: 0.6ms)
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 11:05:29 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Completed 404 Not Found in 22ms (ActiveRecord: 1.6ms)
Started GET "/" for 127.0.0.1 at 2017-11-24 11:05:32 +0100
Processing by RootController#index as HTML
Completed 200 OK in 17ms (Views: 10.9ms | ActiveRecord: 1.1ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 11:05:32 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:05:32 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Completed 404 Not Found in 5ms (ActiveRecord: 0.4ms)
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 11:05:32 +0100
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:05:32 +0100
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 7ms (ActiveRecord: 0.2ms)
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Completed 404 Not Found in 3ms (ActiveRecord: 0.2ms)
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:05:32 +0100
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.2ms)
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 11:05:32 +0100
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 7ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.1ms)
Started GET "/" for 127.0.0.1 at 2017-11-24 11:05:33 +0100
Processing by RootController#index as HTML
Completed 200 OK in 151ms (Views: 131.0ms | ActiveRecord: 2.7ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:05:33 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 3ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:05:33 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:05:33 +0100
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 11:05:33 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 7ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 11:05:33 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Completed 404 Not Found in 5ms (ActiveRecord: 1.1ms)
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Completed 404 Not Found in 24ms (ActiveRecord: 1.7ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:05:35 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:05:35 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 3ms (ActiveRecord: 0.2ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 3ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 11:05:35 +0100
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 3ms (ActiveRecord: 0.3ms)
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:05:35 +0100

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 23ms (ActiveRecord: 1.8ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/" for 127.0.0.1 at 2017-11-24 11:05:42 +0100
Processing by RootController#index as HTML
Completed 200 OK in 144ms (Views: 127.7ms | ActiveRecord: 2.6ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:05:42 +0100
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 11:05:42 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 404 Not Found in 3ms (ActiveRecord: 0.1ms)
Completed 422 Unprocessable Entity in 3ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:05:42 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:05:42 +0100
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 11:05:42 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 1.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 11:05:42 +0100
Completed 404 Not Found in 4ms (ActiveRecord: 0.8ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.5ms)
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 3ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/" for 127.0.0.1 at 2017-11-24 11:05:43 +0100
Processing by RootController#index as HTML
Completed 200 OK in 39ms (Views: 34.7ms | ActiveRecord: 0.9ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 11:05:43 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Completed 404 Not Found in 3ms (ActiveRecord: 0.1ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:05:43 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 11:05:43 +0100
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:05:43 +0100
Processing by ApplicationController#route_not_found as SVG
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 422 Unprocessable Entity in 3ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:05:43 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.1ms)
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 11:05:43 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 8ms (ActiveRecord: 2.0ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 404 Not Found in 3ms (ActiveRecord: 0.2ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 9ms (ActiveRecord: 1.8ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/" for 127.0.0.1 at 2017-11-24 11:05:45 +0100
Processing by RootController#index as HTML
Completed 200 OK in 148ms (Views: 131.8ms | ActiveRecord: 3.0ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 11:05:45 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:05:45 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 404 Not Found in 3ms (ActiveRecord: 0.1ms)
Completed 422 Unprocessable Entity in 3ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:05:45 +0100
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 11:05:45 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:05:45 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 8ms (ActiveRecord: 0.2ms)
Completed 422 Unprocessable Entity in 8ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 11:05:45 +0100

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Completed 404 Not Found in 5ms (ActiveRecord: 0.2ms)
Completed 404 Not Found in 35ms (ActiveRecord: 0.2ms)
Started GET "/" for 127.0.0.1 at 2017-11-24 11:05:49 +0100
Processing by RootController#index as HTML
Completed 200 OK in 13ms (Views: 8.9ms | ActiveRecord: 0.8ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 11:05:49 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:05:49 +0100
Processing by ApplicationController#route_not_found as JS
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 404 Not Found in 3ms (ActiveRecord: 0.1ms)
Completed 422 Unprocessable Entity in 3ms (ActiveRecord: 0.1ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:05:49 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:05:49 +0100
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 11:05:49 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 3ms (ActiveRecord: 0.2ms)
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.1ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'



ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 11:05:49 +0100
Completed 404 Not Found in 4ms (ActiveRecord: 0.1ms)
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.2ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 11:05:55 +0100
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 11:05:55 +0100
Processing by ApplicationController#route_not_found as CSS
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Completed 404 Not Found in 3ms (ActiveRecord: 0.2ms)
Completed 404 Not Found in 3ms (ActiveRecord: 0.1ms)
Started GET "/" for 127.0.0.1 at 2017-11-24 11:05:58 +0100
Processing by RootController#index as HTML
Completed 200 OK in 19ms (Views: 12.2ms | ActiveRecord: 2.1ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 11:05:58 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:05:58 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Completed 404 Not Found in 3ms (ActiveRecord: 0.1ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.1ms)
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:05:58 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:05:58 +0100

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.1ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.1ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'



ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 11:05:58 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Completed 404 Not Found in 7ms (ActiveRecord: 0.1ms)
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 11:05:58 +0100
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 3ms (ActiveRecord: 0.2ms)
Started GET "/" for 127.0.0.1 at 2017-11-24 11:06:01 +0100
Processing by RootController#index as HTML
Completed 200 OK in 181ms (Views: 144.5ms | ActiveRecord: 3.9ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 11:06:02 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.2ms)
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 11:06:03 +0100
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 5ms (ActiveRecord: 0.4ms)
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:06:03 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 3ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:06:03 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.5ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 11:06:03 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:06:03 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Completed 404 Not Found in 3ms (ActiveRecord: 0.3ms)
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 24ms (ActiveRecord: 1.6ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/" for 127.0.0.1 at 2017-11-24 11:17:50 +0100
Processing by RootController#index as HTML
Completed 200 OK in 13ms (Views: 9.0ms | ActiveRecord: 1.0ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:17:50 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 3ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:17:50 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 11:17:50 +0100
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 39ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:17:50 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 11:17:50 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Completed 404 Not Found in 3ms (ActiveRecord: 0.2ms)
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Completed 404 Not Found in 24ms (ActiveRecord: 1.7ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:17:51 +0100
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:17:51 +0100
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 11:17:51 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 7ms (ActiveRecord: 1.9ms)
Completed 422 Unprocessable Entity in 7ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:17:51 +0100

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Completed 404 Not Found in 10ms (ActiveRecord: 0.4ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 3ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/profile" for 127.0.0.1 at 2017-11-24 11:31:38 +0100
Processing by ProfilesController#show as HTML
Completed 200 OK in 91ms (Views: 80.0ms | ActiveRecord: 7.6ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 11:31:38 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:31:38 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 3ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 404 Not Found in 5ms (ActiveRecord: 0.4ms)
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:31:38 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 11:31:38 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:31:38 +0100
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 404 Not Found in 3ms (ActiveRecord: 0.6ms)
Completed 422 Unprocessable Entity in 3ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:31:38 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 11:31:38 +0100
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 3ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/profile.1bccea8465e6dfd0ddb6.bundle.js" for 127.0.0.1 at 2017-11-24 11:31:38 +0100
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 15ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/profile.1bccea8465e6dfd0ddb6.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 404 Not Found in 5ms (ActiveRecord: 0.3ms)
Started GET "/profile/preferences" for 127.0.0.1 at 2017-11-24 11:31:48 +0100
Processing by Profiles::PreferencesController#show as HTML
Completed 200 OK in 180ms (Views: 174.2ms | ActiveRecord: 2.2ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 11:31:49 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:31:49 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Completed 404 Not Found in 3ms (ActiveRecord: 0.2ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 6ms (ActiveRecord: 1.6ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:31:49 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:31:49 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Started GET "/assets/webpack/profile.1bccea8465e6dfd0ddb6.bundle.js" for 127.0.0.1 at 2017-11-24 11:31:49 +0100
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 11:31:49 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/profile.1bccea8465e6dfd0ddb6.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 8ms (ActiveRecord: 3.7ms)
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 11:31:49 +0100
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 10ms (ActiveRecord: 5.3ms)
Completed 404 Not Found in 8ms (ActiveRecord: 1.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 14ms (ActiveRecord: 0.2ms)
Started GET "/profile/applications" for 127.0.0.1 at 2017-11-24 11:32:11 +0100
Processing by Oauth::ApplicationsController#index as HTML
Completed 200 OK in 55ms (Views: 40.4ms | ActiveRecord: 6.6ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:32:12 +0100
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 11:32:12 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 3ms (ActiveRecord: 0.2ms)
Completed 404 Not Found in 4ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:32:12 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:32:12 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.1ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 3ms (ActiveRecord: 0.1ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 11:32:12 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 11:32:12 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:32:12 +0100
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.2ms)
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 3ms (ActiveRecord: 0.1ms)
Completed 404 Not Found in 8ms (ActiveRecord: 4.9ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Started GET "/" for 127.0.0.1 at 2017-11-24 11:36:14 +0100
Processing by RootController#index as HTML
Completed 200 OK in 230ms (Views: 190.8ms | ActiveRecord: 4.0ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 11:36:16 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Completed 404 Not Found in 5ms (ActiveRecord: 1.3ms)
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:36:16 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 9ms (ActiveRecord: 0.6ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 11:36:16 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Completed 404 Not Found in 8ms (ActiveRecord: 0.4ms)
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 11:36:16 +0100
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:36:16 +0100
Completed 404 Not Found in 10ms (ActiveRecord: 0.6ms)
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:36:16 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 27ms (ActiveRecord: 1.7ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 27ms (ActiveRecord: 2.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/" for 127.0.0.1 at 2017-11-24 11:36:18 +0100
Processing by RootController#index as HTML
Completed 200 OK in 213ms (Views: 195.4ms | ActiveRecord: 2.8ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 11:36:18 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:36:18 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.2ms)
Completed 404 Not Found in 5ms (ActiveRecord: 1.0ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:36:18 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:36:18 +0100
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 11:36:18 +0100
Processing by ApplicationController#route_not_found as JS
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 1.1ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 11:36:18 +0100
Completed 404 Not Found in 5ms (ActiveRecord: 0.2ms)
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 6ms (ActiveRecord: 1.4ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 404 Not Found in 6ms (ActiveRecord: 0.3ms)
Started GET "/assets" for 127.0.0.1 at 2017-11-24 11:36:28 +0100
Processing by ApplicationController#route_not_found as HTML
  Parameters: {"unmatched_route"=>"assets"}
Completed 404 Not Found in 18ms (Views: 13.5ms | ActiveRecord: 0.2ms)
Started GET "/favicon.ico" for 127.0.0.1 at 2017-11-24 11:36:28 +0100
Processing by ApplicationController#route_not_found as 
  Parameters: {"unmatched_route"=>"favicon"}
Completed 404 Not Found in 7ms (ActiveRecord: 0.4ms)
Started GET "/assets/application" for 127.0.0.1 at 2017-11-24 11:36:44 +0100
Processing by ApplicationController#route_not_found as HTML
  Parameters: {"unmatched_route"=>"assets/application"}
Completed 404 Not Found in 8ms (Views: 0.5ms | ActiveRecord: 0.5ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 11:36:53 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Completed 404 Not Found in 3ms (ActiveRecord: 0.3ms)
Started GET "/public/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 11:37:04 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"public/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Completed 404 Not Found in 3ms (ActiveRecord: 0.3ms)
Started GET "/" for 127.0.0.1 at 2017-11-24 11:38:50 +0100
Processing by RootController#index as HTML
Completed 200 OK in 253ms (Views: 209.7ms | ActiveRecord: 4.5ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 11:38:52 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Completed 404 Not Found in 6ms (ActiveRecord: 1.8ms)
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:38:52 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:38:52 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 11:38:52 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.6ms)
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 11:38:52 +0100
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 5ms (ActiveRecord: 0.6ms)
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:38:52 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 27ms (ActiveRecord: 1.7ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 33ms (ActiveRecord: 1.8ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/profile" for 127.0.0.1 at 2017-11-24 11:38:58 +0100
Processing by ProfilesController#show as HTML
Completed 200 OK in 105ms (Views: 97.5ms | ActiveRecord: 2.8ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:38:58 +0100
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 11:38:58 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:38:58 +0100
Completed 404 Not Found in 9ms (ActiveRecord: 0.3ms)
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:38:58 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.1ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:38:58 +0100
Started GET "/assets/webpack/profile.1bccea8465e6dfd0ddb6.bundle.js" for 127.0.0.1 at 2017-11-24 11:38:58 +0100
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.3ms)
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/profile.1bccea8465e6dfd0ddb6.bundle"}

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 11:38:58 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.2ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 11:38:58 +0100

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 404 Not Found in 4ms (ActiveRecord: 0.3ms)
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 8ms (ActiveRecord: 0.5ms)
Started GET "/profile/account" for 127.0.0.1 at 2017-11-24 11:39:02 +0100
Processing by Profiles::AccountsController#show as HTML
Completed 200 OK in 133ms (Views: 120.5ms | ActiveRecord: 8.7ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:39:02 +0100
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 11:39:02 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.4ms)
Completed 404 Not Found in 4ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:39:02 +0100
Started GET "/assets/webpack/account.8f82d5ebb2d490f8c460.bundle.js" for 127.0.0.1 at 2017-11-24 11:39:02 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:39:02 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/account.8f82d5ebb2d490f8c460.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.3ms)
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.1ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Started GET "/assets/webpack/profile.1bccea8465e6dfd0ddb6.bundle.js" for 127.0.0.1 at 2017-11-24 11:39:02 +0100

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 11:39:02 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/profile.1bccea8465e6dfd0ddb6.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.2ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 11:39:02 +0100

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 7ms (ActiveRecord: 0.3ms)
Completed 404 Not Found in 4ms (ActiveRecord: 0.7ms)
Started GET "/root" for 127.0.0.1 at 2017-11-24 11:39:38 +0100
Processing by UsersController#show as HTML
  Parameters: {"username"=>"root"}
Completed 200 OK in 187ms (Views: 182.1ms | ActiveRecord: 0.6ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 11:39:38 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:39:38 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 404 Not Found in 3ms (ActiveRecord: 0.1ms)
Completed 422 Unprocessable Entity in 3ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:39:38 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:39:38 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 11:39:38 +0100
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 6ms (ActiveRecord: 0.1ms)
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:39:38 +0100

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 11:39:38 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Completed 404 Not Found in 6ms (ActiveRecord: 0.2ms)
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 6ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 404 Not Found in 6ms (ActiveRecord: 0.5ms)
Started GET "/profile" for 127.0.0.1 at 2017-11-24 11:39:47 +0100
Processing by ProfilesController#show as HTML
Completed 200 OK in 24ms (Views: 19.3ms | ActiveRecord: 1.1ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 11:39:47 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:39:47 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.2ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.1ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 11:39:47 +0100
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:39:47 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:39:47 +0100
Processing by ApplicationController#route_not_found as SVG
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Completed 404 Not Found in 3ms (ActiveRecord: 0.2ms)
Started GET "/assets/webpack/profile.1bccea8465e6dfd0ddb6.bundle.js" for 127.0.0.1 at 2017-11-24 11:39:47 +0100
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.1ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 6ms (ActiveRecord: 0.4ms)
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/profile.1bccea8465e6dfd0ddb6.bundle"}

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 11:39:47 +0100

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.1ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Completed 404 Not Found in 7ms (ActiveRecord: 0.4ms)
Started PUT "/profile" for 127.0.0.1 at 2017-11-24 11:40:06 +0100
Processing by ProfilesController#update as HTML
  Parameters: {"utf8"=>"✓", "authenticity_token"=>"[FILTERED]", "user"=>{"name"=>"Administrator", "id"=>"1", "email"=>"admin@example.com", "public_email"=>"", "preferred_language"=>"de", "skype"=>"", "linkedin"=>"", "twitter"=>"", "website_url"=>"", "location"=>"", "organization"=>"", "bio"=>""}, "commit"=>"Update profile settings"}
Redirected to http://localhost:8080/profile
Completed 302 Found in 16ms (ActiveRecord: 2.1ms)
Started GET "/profile" for 127.0.0.1 at 2017-11-24 11:40:06 +0100
Processing by ProfilesController#show as HTML
Completed 200 OK in 229ms (Views: 222.6ms | ActiveRecord: 2.0ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 11:40:06 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.2ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:40:06 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.1ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:40:06 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:40:06 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/locale/de/app-32ca45f8490de6f52c33ecde57e808c51f912ef4363da85cd36514387da0762f.js" for 127.0.0.1 at 2017-11-24 11:40:06 +0100
Started GET "/assets/webpack/profile.1bccea8465e6dfd0ddb6.bundle.js" for 127.0.0.1 at 2017-11-24 11:40:06 +0100
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 11:40:07 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/locale/de/app-32ca45f8490de6f52c33ecde57e808c51f912ef4363da85cd36514387da0762f"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 27ms (ActiveRecord: 1.8ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 11:40:08 +0100
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 6ms (ActiveRecord: 0.3ms)
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/profile.1bccea8465e6dfd0ddb6.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 28ms (ActiveRecord: 1.6ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Completed 404 Not Found in 27ms (ActiveRecord: 2.0ms)
Started GET "/" for 127.0.0.1 at 2017-11-24 11:40:12 +0100
Processing by RootController#index as HTML
Completed 200 OK in 239ms (Views: 207.5ms | ActiveRecord: 2.6ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 11:40:12 +0100
Started GET "/assets/locale/de/app-32ca45f8490de6f52c33ecde57e808c51f912ef4363da85cd36514387da0762f.js" for 127.0.0.1 at 2017-11-24 11:40:12 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/locale/de/app-32ca45f8490de6f52c33ecde57e808c51f912ef4363da85cd36514387da0762f"}
Completed 404 Not Found in 5ms (ActiveRecord: 0.6ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 11:40:12 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:40:12 +0100
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:40:12 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Completed 404 Not Found in 7ms (ActiveRecord: 0.3ms)
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:40:12 +0100
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 6ms (ActiveRecord: 1.2ms)
Completed 422 Unprocessable Entity in 7ms (ActiveRecord: 1.0ms)
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'



ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 11:40:12 +0100
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 404 Not Found in 4ms (ActiveRecord: 0.7ms)
Started GET "/profile" for 127.0.0.1 at 2017-11-24 11:40:54 +0100
Processing by ProfilesController#show as HTML
Completed 200 OK in 101ms (Views: 94.3ms | ActiveRecord: 2.4ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 11:40:54 +0100
Started GET "/assets/locale/de/app-32ca45f8490de6f52c33ecde57e808c51f912ef4363da85cd36514387da0762f.js" for 127.0.0.1 at 2017-11-24 11:40:54 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/locale/de/app-32ca45f8490de6f52c33ecde57e808c51f912ef4363da85cd36514387da0762f"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.3ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 1.1ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:40:54 +0100
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:40:54 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:40:54 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.2ms)
Completed 422 Unprocessable Entity in 7ms (ActiveRecord: 3.1ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/profile.1bccea8465e6dfd0ddb6.bundle.js" for 127.0.0.1 at 2017-11-24 11:40:54 +0100

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 11:40:54 +0100
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 9ms (ActiveRecord: 3.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 11:40:54 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/profile.1bccea8465e6dfd0ddb6.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 6ms (ActiveRecord: 1.5ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 404 Not Found in 4ms (ActiveRecord: 0.4ms)
Completed 404 Not Found in 6ms (ActiveRecord: 0.7ms)
Started PUT "/profile" for 127.0.0.1 at 2017-11-24 11:41:11 +0100
Processing by ProfilesController#update as HTML
  Parameters: {"utf8"=>"✓", "authenticity_token"=>"[FILTERED]", "user"=>{"name"=>"Administrator", "id"=>"1", "email"=>"admin@example.com", "public_email"=>"", "preferred_language"=>"en", "skype"=>"", "linkedin"=>"", "twitter"=>"", "website_url"=>"", "location"=>"", "organization"=>"", "bio"=>""}, "commit"=>"Update profile settings"}
Redirected to http://localhost:8080/profile
Completed 302 Found in 25ms (ActiveRecord: 8.2ms)
Started GET "/profile" for 127.0.0.1 at 2017-11-24 11:41:11 +0100
Processing by ProfilesController#show as HTML
Completed 200 OK in 210ms (Views: 203.6ms | ActiveRecord: 1.2ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 11:41:11 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:41:11 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 404 Not Found in 4ms (ActiveRecord: 0.3ms)
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:41:11 +0100
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 11:41:11 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 6ms (ActiveRecord: 0.1ms)
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:41:11 +0100
Started GET "/assets/webpack/profile.1bccea8465e6dfd0ddb6.bundle.js" for 127.0.0.1 at 2017-11-24 11:41:11 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/profile.1bccea8465e6dfd0ddb6.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 16ms (ActiveRecord: 5.7ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 11:41:11 +0100

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 6ms (ActiveRecord: 0.1ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Completed 404 Not Found in 6ms (ActiveRecord: 0.2ms)
Started GET "/" for 127.0.0.1 at 2017-11-24 11:41:24 +0100
Processing by RootController#index as HTML
Completed 200 OK in 240ms (Views: 208.3ms | ActiveRecord: 2.8ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 11:41:24 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:41:24 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 404 Not Found in 6ms (ActiveRecord: 0.1ms)
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:41:24 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:41:24 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:41:24 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 6ms (ActiveRecord: 0.2ms)
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.4ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'



ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 11:41:24 +0100
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 11:41:24 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 6ms (ActiveRecord: 0.1ms)
Completed 404 Not Found in 4ms (ActiveRecord: 0.4ms)
Completed 404 Not Found in 4ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/" for 127.0.0.1 at 2017-11-24 11:48:21 +0100
Processing by RootController#index as HTML
Completed 200 OK in 17ms (Views: 11.3ms | ActiveRecord: 1.5ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:48:21 +0100
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 11:48:21 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.2ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:48:21 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:48:21 +0100
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 11:48:21 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 6ms (ActiveRecord: 0.9ms)
Completed 404 Not Found in 6ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 11:48:21 +0100
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 15ms (ActiveRecord: 1.8ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 404 Not Found in 6ms (ActiveRecord: 2.7ms)
Started GET "/" for 127.0.0.1 at 2017-11-24 11:50:01 +0100
Processing by RootController#index as HTML
Completed 200 OK in 19ms (Views: 11.7ms | ActiveRecord: 1.0ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 11:50:01 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:50:01 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Completed 404 Not Found in 26ms (ActiveRecord: 1.6ms)
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:50:02 +0100
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 11:50:02 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.3ms)
Completed 404 Not Found in 4ms (ActiveRecord: 0.1ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:50:02 +0100
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 11:50:02 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 404 Not Found in 5ms (ActiveRecord: 0.2ms)
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 29ms (ActiveRecord: 1.9ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/" for 127.0.0.1 at 2017-11-24 11:50:04 +0100
Processing by RootController#index as HTML
Completed 200 OK in 214ms (Views: 196.2ms | ActiveRecord: 2.5ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:50:04 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:50:04 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 3ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:50:04 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 11:50:04 +0100
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.4ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 11:50:04 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.3ms)
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Completed 404 Not Found in 26ms (ActiveRecord: 1.8ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:50:05 +0100
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:50:05 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:50:05 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 6ms (ActiveRecord: 0.3ms)
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.6ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 11:50:05 +0100

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 10ms (ActiveRecord: 6.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.3ms)
Started GET "/" for 127.0.0.1 at 2017-11-24 11:50:26 +0100
Processing by RootController#index as HTML
Completed 200 OK in 26ms (Views: 19.6ms | ActiveRecord: 1.5ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 11:50:26 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:50:26 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 404 Not Found in 3ms (ActiveRecord: 0.2ms)
Completed 422 Unprocessable Entity in 3ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:50:26 +0100
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 11:50:26 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:50:26 +0100
Processing by ApplicationController#route_not_found as SVG
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 404 Not Found in 3ms (ActiveRecord: 0.4ms)
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 11:50:26 +0100
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 6ms (ActiveRecord: 1.5ms)
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 404 Not Found in 5ms (ActiveRecord: 0.3ms)
Started GET "/" for 127.0.0.1 at 2017-11-24 11:50:27 +0100
Processing by RootController#index as HTML
Completed 200 OK in 212ms (Views: 194.6ms | ActiveRecord: 2.5ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 11:50:27 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:50:27 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 404 Not Found in 4ms (ActiveRecord: 0.2ms)
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:50:27 +0100
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:50:27 +0100
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 11:50:27 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.2ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.4ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 422 Unprocessable Entity in 6ms (ActiveRecord: 0.1ms)
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 11:50:27 +0100

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.2ms)
Started GET "/" for 127.0.0.1 at 2017-11-24 11:50:27 +0100
Processing by RootController#index as HTML
Completed 200 OK in 214ms (Views: 195.7ms | ActiveRecord: 3.1ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 11:50:28 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:50:28 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.4ms)
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:50:28 +0100
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:50:28 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 10ms (ActiveRecord: 0.5ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 11:50:28 +0100
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 10ms (ActiveRecord: 3.2ms)
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'



ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 11:50:28 +0100
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 6ms (ActiveRecord: 0.2ms)
Completed 404 Not Found in 6ms (ActiveRecord: 1.4ms)
Started GET "/" for 127.0.0.1 at 2017-11-24 11:50:35 +0100
Processing by RootController#index as HTML
Completed 200 OK in 18ms (Views: 13.0ms | ActiveRecord: 1.2ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:50:35 +0100
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 11:50:35 +0100
Processing by ApplicationController#route_not_found as CSS
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 404 Not Found in 5ms (ActiveRecord: 0.2ms)
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:50:35 +0100
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 11:50:35 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 404 Not Found in 7ms (ActiveRecord: 0.4ms)
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:50:35 +0100
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 11:50:35 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Completed 404 Not Found in 5ms (ActiveRecord: 1.1ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 14ms (ActiveRecord: 9.8ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/" for 127.0.0.1 at 2017-11-24 11:50:36 +0100
Processing by RootController#index as HTML
Completed 200 OK in 17ms (Views: 10.9ms | ActiveRecord: 1.6ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:50:36 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:50:36 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:50:36 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 11:50:36 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.1ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 11:50:36 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Completed 404 Not Found in 26ms (ActiveRecord: 1.7ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:50:37 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:50:37 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.3ms)
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 11:50:37 +0100
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.3ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 11ms (ActiveRecord: 0.4ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:50:37 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 27ms (ActiveRecord: 1.6ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Scheduling removal of build artifacts
Started GET "/" for 127.0.0.1 at 2017-11-24 11:50:49 +0100
Processing by RootController#index as HTML
Completed 200 OK in 217ms (Views: 196.9ms | ActiveRecord: 2.7ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 11:50:49 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Completed 404 Not Found in 9ms (ActiveRecord: 3.2ms)
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:50:49 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:50:49 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 11:50:49 +0100
Completed 422 Unprocessable Entity in 7ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 11:50:49 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.3ms)
Completed 404 Not Found in 7ms (ActiveRecord: 0.3ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:50:49 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 28ms (ActiveRecord: 1.9ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Started GET "/" for 127.0.0.1 at 2017-11-24 11:59:54 +0100
Processing by RootController#index as HTML
Completed 200 OK in 233ms (Views: 187.1ms | ActiveRecord: 7.5ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 11:59:55 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:59:55 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 29ms (ActiveRecord: 1.7ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:59:57 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:59:57 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 11:59:57 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.3ms)
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Completed 404 Not Found in 31ms (ActiveRecord: 1.7ms)
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 11:59:57 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 11:59:57 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 11:59:57 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.3ms)
Completed 422 Unprocessable Entity in 6ms (ActiveRecord: 0.3ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 11:59:57 +0100
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'



ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 5ms (ActiveRecord: 0.9ms)
StuckCiJobsWorker: Cleaning stuck builds
Started GET "/" for 127.0.0.1 at 2017-11-24 12:00:07 +0100
Processing by RootController#index as HTML
Completed 200 OK in 203ms (Views: 182.7ms | ActiveRecord: 3.1ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 12:00:07 +0100
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 12:00:07 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 404 Not Found in 6ms (ActiveRecord: 0.3ms)
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 12:00:07 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 12:00:07 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 12:00:07 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 7ms (ActiveRecord: 0.3ms)
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 12:00:07 +0100
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 8ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 12:00:07 +0100
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 7ms (ActiveRecord: 3.0ms)
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 404 Not Found in 5ms (ActiveRecord: 0.1ms)
Completed 404 Not Found in 7ms (ActiveRecord: 0.5ms)
Started GET "/" for 127.0.0.1 at 2017-11-24 12:00:28 +0100
Processing by RootController#index as HTML
Completed 200 OK in 22ms (Views: 14.9ms | ActiveRecord: 1.2ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 12:00:28 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 12:00:28 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.2ms)
Completed 404 Not Found in 4ms (ActiveRecord: 0.7ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 12:00:28 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 12:00:28 +0100
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 12:00:28 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 12:00:28 +0100
Completed 404 Not Found in 5ms (ActiveRecord: 0.5ms)
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.4ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 404 Not Found in 5ms (ActiveRecord: 0.2ms)
Started GET "/" for 127.0.0.1 at 2017-11-24 12:01:47 +0100
Processing by RootController#index as HTML
Completed 200 OK in 18ms (Views: 12.1ms | ActiveRecord: 1.0ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 12:01:47 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 12:01:47 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 404 Not Found in 3ms (ActiveRecord: 0.1ms)
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 12:01:47 +0100
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 12:01:47 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 12:01:47 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 404 Not Found in 4ms (ActiveRecord: 0.2ms)
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.3ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 12:01:47 +0100
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.4ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 404 Not Found in 5ms (ActiveRecord: 0.9ms)
Started GET "/" for 127.0.0.1 at 2017-11-24 12:01:47 +0100
Processing by RootController#index as HTML
Completed 200 OK in 199ms (Views: 178.8ms | ActiveRecord: 2.9ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 12:01:48 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 12:01:48 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Completed 404 Not Found in 6ms (ActiveRecord: 1.7ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 12:01:48 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 12:01:48 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 12:01:48 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.2ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.3ms)
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 12:01:48 +0100

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 12:01:48 +0100
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 7ms (ActiveRecord: 3.6ms)
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 5ms (ActiveRecord: 0.2ms)
Completed 404 Not Found in 5ms (ActiveRecord: 1.1ms)
Started GET "/" for 127.0.0.1 at 2017-11-24 12:01:49 +0100
Processing by RootController#index as HTML
Completed 200 OK in 21ms (Views: 15.3ms | ActiveRecord: 1.0ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 12:01:49 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 12:01:49 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 404 Not Found in 5ms (ActiveRecord: 0.1ms)
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.1ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 12:01:49 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 6ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 12:01:49 +0100
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 12:01:49 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.2ms)
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 12:01:49 +0100
Completed 404 Not Found in 11ms (ActiveRecord: 3.3ms)
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 31ms (ActiveRecord: 1.8ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/" for 127.0.0.1 at 2017-11-24 12:01:51 +0100
Processing by RootController#index as HTML
Completed 200 OK in 18ms (Views: 12.0ms | ActiveRecord: 1.1ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 12:01:51 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.4ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 12:01:51 +0100
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 12:01:51 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 6ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 12:01:51 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 7ms (ActiveRecord: 2.5ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 12:01:51 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Completed 404 Not Found in 8ms (ActiveRecord: 3.5ms)
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Completed 404 Not Found in 30ms (ActiveRecord: 1.7ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 12:01:53 +0100
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 12:01:53 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 6ms (ActiveRecord: 1.5ms)
Completed 404 Not Found in 6ms (ActiveRecord: 0.9ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 12:01:53 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.9ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 12:01:53 +0100
Started GET "/" for 127.0.0.1 at 2017-11-24 12:01:53 +0100
Processing by RootController#index as HTML
Completed 200 OK in 204ms (Views: 182.3ms | ActiveRecord: 2.8ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 12:01:54 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 12:01:54 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.3ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 12:01:54 +0100
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 12:01:54 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 6ms (ActiveRecord: 0.6ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 12:01:54 +0100
Completed 404 Not Found in 5ms (ActiveRecord: 0.2ms)
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 12:01:54 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 404 Not Found in 5ms (ActiveRecord: 0.2ms)
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 46ms (ActiveRecord: 1.6ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/" for 127.0.0.1 at 2017-11-24 12:01:55 +0100
Processing by RootController#index as HTML
Completed 200 OK in 19ms (Views: 13.2ms | ActiveRecord: 1.0ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 12:01:55 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 12:01:55 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.2ms)
Completed 404 Not Found in 4ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 12:01:55 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 12:01:55 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 12:01:55 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 7ms (ActiveRecord: 1.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 12:01:55 +0100
Completed 404 Not Found in 5ms (ActiveRecord: 0.6ms)
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 12:01:55 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 11ms (ActiveRecord: 1.3ms)
Processing by ApplicationController#route_not_found as SVG

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.4ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 404 Not Found in 4ms (ActiveRecord: 0.5ms)
Started GET "/" for 127.0.0.1 at 2017-11-24 12:01:56 +0100
Processing by RootController#index as HTML
Completed 200 OK in 17ms (Views: 10.8ms | ActiveRecord: 0.9ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 12:01:56 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 12:01:56 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.3ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 6ms (ActiveRecord: 0.1ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 12:01:56 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 12:01:56 +0100
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 12:01:56 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.5ms)
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'



ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 12:01:56 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 7ms (ActiveRecord: 2.6ms)
Completed 404 Not Found in 4ms (ActiveRecord: 0.4ms)
Started GET "/" for 127.0.0.1 at 2017-11-24 12:01:56 +0100
Processing by RootController#index as HTML
Completed 200 OK in 22ms (Views: 15.6ms | ActiveRecord: 1.2ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 12:01:56 +0100
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 12:01:56 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.3ms)
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 12:01:56 +0100
Completed 404 Not Found in 6ms (ActiveRecord: 0.3ms)
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 12:01:56 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 6ms (ActiveRecord: 1.1ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 12:01:56 +0100
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 6ms (ActiveRecord: 1.5ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 12:01:56 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.5ms)
Completed 404 Not Found in 5ms (ActiveRecord: 0.8ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 12:01:56 +0100
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 7ms (ActiveRecord: 1.0ms)
Started GET "/" for 127.0.0.1 at 2017-11-24 12:01:57 +0100
Processing by RootController#index as HTML
Started GET "/" for 127.0.0.1 at 2017-11-24 12:01:58 +0100
Completed 200 OK in 236ms (Views: 188.8ms | ActiveRecord: 4.2ms)
Processing by RootController#index as HTML
Completed 200 OK in 222ms (Views: 178.2ms | ActiveRecord: 4.2ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 12:02:00 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 12:02:00 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Completed 404 Not Found in 5ms (ActiveRecord: 1.1ms)
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 12:02:00 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 12:02:00 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 12:02:00 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 15ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 12:02:00 +0100
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 9ms (ActiveRecord: 4.8ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 404 Not Found in 6ms (ActiveRecord: 0.3ms)
Completed 422 Unprocessable Entity in 15ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/" for 127.0.0.1 at 2017-11-24 12:02:01 +0100
Processing by RootController#index as HTML
Completed 200 OK in 21ms (Views: 13.8ms | ActiveRecord: 1.2ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 12:02:01 +0100
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 12:02:01 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.2ms)
Completed 404 Not Found in 3ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 12:02:01 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 12:02:01 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 12:02:01 +0100
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 6ms (ActiveRecord: 0.4ms)
Completed 422 Unprocessable Entity in 6ms (ActiveRecord: 0.5ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 12:02:01 +0100

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 5ms (ActiveRecord: 0.2ms)
Completed 404 Not Found in 7ms (ActiveRecord: 2.8ms)
Started GET "/" for 127.0.0.1 at 2017-11-24 12:02:02 +0100
Processing by RootController#index as HTML
Completed 200 OK in 17ms (Views: 12.0ms | ActiveRecord: 1.0ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 12:02:02 +0100
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 12:02:02 +0100
Processing by ApplicationController#route_not_found as CSS
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.3ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 1.0ms)
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 12:02:02 +0100

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 12:02:02 +0100
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 12:02:02 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 12:02:02 +0100
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 9ms (ActiveRecord: 4.5ms)
Completed 404 Not Found in 5ms (ActiveRecord: 0.2ms)
Completed 404 Not Found in 13ms (ActiveRecord: 3.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/" for 127.0.0.1 at 2017-11-24 12:02:50 +0100
Processing by RootController#index as HTML
Completed 200 OK in 19ms (Views: 13.9ms | ActiveRecord: 1.1ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 12:02:50 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 12:02:50 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.3ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 9ms (ActiveRecord: 4.1ms)
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 12:02:50 +0100

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 12:02:50 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 12:02:50 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.3ms)
Completed 404 Not Found in 4ms (ActiveRecord: 0.2ms)
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 12:02:50 +0100
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 11ms (ActiveRecord: 1.4ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 404 Not Found in 7ms (ActiveRecord: 3.0ms)
Started GET "/" for 127.0.0.1 at 2017-11-24 12:02:52 +0100
Processing by RootController#index as HTML
Completed 200 OK in 16ms (Views: 10.9ms | ActiveRecord: 0.9ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 12:02:52 +0100
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 12:02:52 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 404 Not Found in 6ms (ActiveRecord: 0.4ms)
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.4ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 12:02:52 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.2ms)
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 12:02:52 +0100

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 11ms (ActiveRecord: 6.7ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 12:02:52 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 12:02:52 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Completed 404 Not Found in 5ms (ActiveRecord: 0.2ms)
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 12:02:52 +0100
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.2ms)
Started GET "/" for 127.0.0.1 at 2017-11-24 12:02:53 +0100
Processing by RootController#index as HTML
Completed 200 OK in 18ms (Views: 11.0ms | ActiveRecord: 1.0ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 12:02:53 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 12:02:53 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 48ms (ActiveRecord: 1.8ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 12:02:54 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 12:02:54 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 8ms (ActiveRecord: 1.9ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 12:02:54 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Completed 404 Not Found in 5ms (ActiveRecord: 1.3ms)
Completed 404 Not Found in 56ms (ActiveRecord: 1.8ms)
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 12:02:54 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 12:02:54 +0100
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 12:02:54 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 12:02:54 +0100
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 9ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 14ms (ActiveRecord: 1.8ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 404 Not Found in 6ms (ActiveRecord: 1.1ms)
Started GET "/" for 127.0.0.1 at 2017-11-24 12:02:54 +0100
Processing by RootController#index as HTML
Completed 200 OK in 198ms (Views: 177.6ms | ActiveRecord: 2.9ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 12:02:55 +0100
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 12:02:55 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.3ms)
Completed 404 Not Found in 4ms (ActiveRecord: 0.5ms)
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 12:02:55 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 12:02:55 +0100

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 12:02:55 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.2ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 404 Not Found in 6ms (ActiveRecord: 0.3ms)
Completed 422 Unprocessable Entity in 8ms (ActiveRecord: 2.2ms)
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 12:02:55 +0100

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 11ms (ActiveRecord: 0.3ms)
Started GET "/" for 127.0.0.1 at 2017-11-24 12:02:58 +0100
Processing by RootController#index as HTML
Completed 200 OK in 226ms (Views: 167.3ms | ActiveRecord: 4.2ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 12:02:59 +0100
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 12:02:59 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 6ms (ActiveRecord: 2.0ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Completed 404 Not Found in 4ms (ActiveRecord: 0.2ms)
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 12:02:59 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 12:02:59 +0100
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 12:02:59 +0100
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 7ms (ActiveRecord: 0.1ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 12:02:59 +0100
Completed 404 Not Found in 8ms (ActiveRecord: 1.6ms)
Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 12:02:59 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Completed 404 Not Found in 6ms (ActiveRecord: 0.3ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 6ms (ActiveRecord: 0.3ms)
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 7ms (ActiveRecord: 0.5ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'



ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Raven 2.5.3 configured not to capture errors: DSN not set
Raven 2.5.3 configured not to capture errors: DSN not set
Started GET "/" for 127.0.0.1 at 2017-11-24 12:03:23 +0100
Processing by RootController#index as HTML
Completed 200 OK in 203ms (Views: 161.8ms | ActiveRecord: 3.7ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 12:03:25 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Completed 404 Not Found in 5ms (ActiveRecord: 0.3ms)
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 12:03:25 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.7ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 12:03:25 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.4ms)
Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 12:03:25 +0100
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 4ms (ActiveRecord: 0.5ms)
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 12:03:25 +0100
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 12:03:25 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 29ms (ActiveRecord: 1.6ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 30ms (ActiveRecord: 1.7ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/" for 127.0.0.1 at 2017-11-24 12:13:40 +0100
Processing by RootController#index as HTML
Completed 200 OK in 21ms (Views: 15.0ms | ActiveRecord: 1.1ms)
Started GET "/assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99.css" for 127.0.0.1 at 2017-11-24 12:13:40 +0100
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/application-e1315cca43956f4f06252f5517b9f0f335acc69a8eec408a40d2ad7736199e99"}
Started GET "/assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle.js" for 127.0.0.1 at 2017-11-24 12:13:40 +0100
Completed 404 Not Found in 4ms (ActiveRecord: 0.3ms)
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/webpack_runtime.e35ac11bd0158cdd4fe7.bundle"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Started GET "/assets/webpack/common.6f239be7166c827d3505.bundle.js" for 127.0.0.1 at 2017-11-24 12:13:40 +0100
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.3ms)
Started GET "/assets/webpack/main.6bf7a72be051a431982d.bundle.js" for 127.0.0.1 at 2017-11-24 12:13:40 +0100

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132.css" for 127.0.0.1 at 2017-11-24 12:13:40 +0100
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/common.6f239be7166c827d3505.bundle"}
Processing by ApplicationController#route_not_found as JS
  Parameters: {"unmatched_route"=>"assets/webpack/main.6bf7a72be051a431982d.bundle"}
Processing by ApplicationController#route_not_found as CSS
  Parameters: {"unmatched_route"=>"assets/print-74b3d49adeaada27337e759b75a34af7cf3d80051de91d60d40570f5a382e132"}
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.
Completed 422 Unprocessable Entity in 4ms (ActiveRecord: 0.1ms)
Completed 422 Unprocessable Entity in 5ms (ActiveRecord: 0.5ms)
Completed 404 Not Found in 4ms (ActiveRecord: 0.3ms)

ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'



ActionController::InvalidCrossOriginRequest (Security warning: an embedded <script> tag on another site requested protected JavaScript. If you know what you're doing, go ahead and disable forgery protection on this action to permit cross-origin JavaScript embedding.):
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:337:in `set_locale'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:30:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Started GET "/assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f.svg" for 127.0.0.1 at 2017-11-24 12:13:40 +0100
Processing by ApplicationController#route_not_found as SVG
  Parameters: {"unmatched_route"=>"assets/icons-76c4a61a43b91bb8e4cde6ba509e3919850e80bc83382ff1f8bce2ef19a1b33f"}
Completed 404 Not Found in 5ms (ActiveRecord: 0.4ms)

/var/log/gitlab/unicorn.stderr.log

I, [2017-11-23T17:11:40.206457 #1089]  INFO -- : Refreshing Gem list
I, [2017-11-23T17:11:49.038119 #1089]  INFO -- : listening on addr=/run/gitlab/gitlab.socket fd=16
I, [2017-11-23T17:11:49.038231 #1089]  INFO -- : listening on addr=127.0.0.1:8080 fd=17
I, [2017-11-23T17:11:49.043658 #1089]  INFO -- : master process ready
I, [2017-11-23T17:11:49.081507 #1096]  INFO -- : worker=0 ready
I, [2017-11-23T17:11:49.081883 #1099]  INFO -- : worker=1 ready
I, [2017-11-23T17:11:49.083196 #1102]  INFO -- : worker=2 ready
W, [2017-11-23T17:12:59.627098 #1099]  WARN -- : #<Unicorn::HttpServer:0x0000563f7aae0ca8>: worker (pid: 1099) exceeds memory limit (446705664.0 bytes > 366769516 bytes)
W, [2017-11-23T17:12:59.627155 #1099]  WARN -- : Unicorn::WorkerKiller send SIGQUIT (pid: 1099) alive: 59 sec (trial 1)
I, [2017-11-23T17:12:59.841621 #1089]  INFO -- : reaped #<Process::Status: pid 1099 exit 0> worker=1
I, [2017-11-23T17:12:59.886063 #1216]  INFO -- : worker=1 ready
I, [2017-11-23T17:17:07.687503 #1089]  INFO -- : reaped #<Process::Status: pid 1096 exit 0> worker=0
I, [2017-11-23T17:17:07.687558 #1089]  INFO -- : reaped #<Process::Status: pid 1102 exit 0> worker=2
I, [2017-11-23T17:17:07.790479 #1089]  INFO -- : reaped #<Process::Status: pid 1216 exit 0> worker=1
I, [2017-11-23T17:17:07.790589 #1089]  INFO -- : master complete
I, [2017-11-23T17:17:08.284477 #1351]  INFO -- : Refreshing Gem list
I, [2017-11-23T17:17:17.230638 #1351]  INFO -- : listening on addr=/run/gitlab/gitlab.socket fd=16
I, [2017-11-23T17:17:17.230762 #1351]  INFO -- : listening on addr=127.0.0.1:8080 fd=17
I, [2017-11-23T17:17:17.237534 #1351]  INFO -- : master process ready
I, [2017-11-23T17:17:17.277303 #1383]  INFO -- : worker=2 ready
I, [2017-11-23T17:17:17.277366 #1380]  INFO -- : worker=1 ready
I, [2017-11-23T17:17:17.277615 #1377]  INFO -- : worker=0 ready
I, [2017-11-23T17:19:21.806740 #1351]  INFO -- : reaped #<Process::Status: pid 1377 exit 0> worker=0
I, [2017-11-23T17:19:21.806787 #1351]  INFO -- : reaped #<Process::Status: pid 1380 exit 0> worker=1
I, [2017-11-23T17:19:21.806815 #1351]  INFO -- : reaped #<Process::Status: pid 1383 exit 0> worker=2
I, [2017-11-23T17:19:21.806842 #1351]  INFO -- : master complete
I, [2017-11-23T17:19:22.234805 #1543]  INFO -- : Refreshing Gem list
I, [2017-11-23T17:19:31.227366 #1543]  INFO -- : listening on addr=/run/gitlab/gitlab.socket fd=9
I, [2017-11-23T17:19:33.158148 #1578]  INFO -- : Refreshing Gem list
I, [2017-11-23T17:19:42.066537 #1578]  INFO -- : listening on addr=/run/gitlab/gitlab.socket fd=16
F, [2017-11-23T17:19:42.066629 #1578] FATAL -- : error adding listener addr=127.0.0.1:8080/
I, [2017-11-23T17:19:45.388214 #1627]  INFO -- : Refreshing Gem list
I, [2017-11-23T17:19:54.297002 #1627]  INFO -- : listening on addr=/run/gitlab/gitlab.socket fd=16
I, [2017-11-23T17:19:57.151237 #1674]  INFO -- : Refreshing Gem list
I, [2017-11-23T17:20:05.998920 #1674]  INFO -- : listening on addr=/run/gitlab/gitlab.socket fd=16
I, [2017-11-23T17:20:05.999038 #1674]  INFO -- : listening on addr=127.0.0.1:8080 fd=17
I, [2017-11-23T17:20:06.010433 #1674]  INFO -- : master process ready
I, [2017-11-23T17:20:06.010504 #1674]  INFO -- : reaped #<Process::Status: pid 1694 exit 0> worker=0
I, [2017-11-23T17:20:06.010528 #1674]  INFO -- : reaped #<Process::Status: pid 1697 exit 0> worker=1
I, [2017-11-23T17:20:06.113328 #1674]  INFO -- : reaped #<Process::Status: pid 1701 exit 0> worker=2
I, [2017-11-23T17:20:06.113427 #1674]  INFO -- : master complete
I, [2017-11-23T17:20:06.562884 #1706]  INFO -- : Refreshing Gem list
I, [2017-11-23T17:20:15.547805 #1706]  INFO -- : listening on addr=/run/gitlab/gitlab.socket fd=16
I, [2017-11-23T17:20:15.547920 #1706]  INFO -- : listening on addr=127.0.0.1:8080 fd=17
I, [2017-11-23T17:20:15.554832 #1706]  INFO -- : master process ready
I, [2017-11-23T17:20:15.586979 #1735]  INFO -- : worker=0 ready
I, [2017-11-23T17:20:15.588745 #1738]  INFO -- : worker=1 ready
I, [2017-11-23T17:20:15.590497 #1741]  INFO -- : worker=2 ready
I, [2017-11-23T17:21:33.697476 #1706]  INFO -- : reaped #<Process::Status: pid 1735 exit 0> worker=0
I, [2017-11-23T17:21:33.697523 #1706]  INFO -- : reaped #<Process::Status: pid 1738 exit 0> worker=1
I, [2017-11-23T17:21:33.697549 #1706]  INFO -- : reaped #<Process::Status: pid 1741 exit 0> worker=2
I, [2017-11-23T17:21:33.697575 #1706]  INFO -- : master complete
I, [2017-11-23T17:21:34.153174 #1849]  INFO -- : Refreshing Gem list
I, [2017-11-23T17:21:43.046667 #1849]  INFO -- : listening on addr=/run/gitlab/gitlab.socket fd=16
I, [2017-11-23T17:21:43.046844 #1849]  INFO -- : listening on addr=127.0.0.1:8080 fd=17
I, [2017-11-23T17:21:43.053731 #1849]  INFO -- : master process ready
I, [2017-11-23T17:21:43.092729 #1872]  INFO -- : worker=0 ready
I, [2017-11-23T17:21:43.099540 #1878]  INFO -- : worker=2 ready
I, [2017-11-23T17:21:43.111593 #1875]  INFO -- : worker=1 ready
W, [2017-11-23T17:27:47.190538 #1875]  WARN -- : #<Unicorn::HttpServer:0x00005585df1d0fc8>: worker (pid: 1875) exceeds memory limit (439392256.0 bytes > 328757559 bytes)
W, [2017-11-23T17:27:47.190599 #1875]  WARN -- : Unicorn::WorkerKiller send SIGQUIT (pid: 1875) alive: 361 sec (trial 1)
I, [2017-11-23T17:27:47.299871 #1849]  INFO -- : reaped #<Process::Status: pid 1875 exit 0> worker=1
I, [2017-11-23T17:27:47.343860 #2110]  INFO -- : worker=1 ready
W, [2017-11-23T17:28:15.638017 #1872]  WARN -- : #<Unicorn::HttpServer:0x00005585df1d0fc8>: worker (pid: 1872) exceeds memory limit (438994944.0 bytes > 340343792 bytes)
W, [2017-11-23T17:28:15.638097 #1872]  WARN -- : Unicorn::WorkerKiller send SIGQUIT (pid: 1872) alive: 391 sec (trial 1)
W, [2017-11-23T17:28:15.689841 #1878]  WARN -- : #<Unicorn::HttpServer:0x00005585df1d0fc8>: worker (pid: 1878) exceeds memory limit (438802432.0 bytes > 318664060 bytes)
W, [2017-11-23T17:28:15.690024 #1878]  WARN -- : Unicorn::WorkerKiller send SIGQUIT (pid: 1878) alive: 389 sec (trial 1)
I, [2017-11-23T17:28:15.796571 #1849]  INFO -- : reaped #<Process::Status: pid 1878 exit 0> worker=2
I, [2017-11-23T17:28:15.844479 #2133]  INFO -- : worker=2 ready
I, [2017-11-23T17:28:15.913540 #1849]  INFO -- : reaped #<Process::Status: pid 1872 exit 0> worker=0
I, [2017-11-23T17:28:15.961215 #2148]  INFO -- : worker=0 ready
I, [2017-11-23T17:28:36.851677 #1849]  INFO -- : reaped #<Process::Status: pid 2110 exit 0> worker=1
I, [2017-11-23T17:28:36.851724 #1849]  INFO -- : reaped #<Process::Status: pid 2133 exit 0> worker=2
I, [2017-11-23T17:28:36.851743 #1849]  INFO -- : reaped #<Process::Status: pid 2148 exit 0> worker=0
I, [2017-11-23T17:28:36.851773 #1849]  INFO -- : master complete
I, [2017-11-23T17:28:37.289410 #2176]  INFO -- : Refreshing Gem list
I, [2017-11-23T17:28:46.188784 #2176]  INFO -- : listening on addr=/run/gitlab/gitlab.socket fd=16
I, [2017-11-23T17:28:46.188945 #2176]  INFO -- : listening on addr=127.0.0.1:8080 fd=17
I, [2017-11-23T17:28:46.197181 #2176]  INFO -- : master process ready
I, [2017-11-23T17:28:46.235854 #2199]  INFO -- : worker=0 ready
I, [2017-11-23T17:28:46.238427 #2205]  INFO -- : worker=2 ready
I, [2017-11-23T17:28:46.239092 #2202]  INFO -- : worker=1 ready
I, [2017-11-23T17:30:19.736105 #2176]  INFO -- : reaped #<Process::Status: pid 2199 exit 0> worker=0
I, [2017-11-23T17:30:19.736151 #2176]  INFO -- : reaped #<Process::Status: pid 2202 exit 0> worker=1
I, [2017-11-23T17:30:19.736177 #2176]  INFO -- : reaped #<Process::Status: pid 2205 exit 0> worker=2
I, [2017-11-23T17:30:19.736204 #2176]  INFO -- : master complete
I, [2017-11-23T17:30:20.216798 #2316]  INFO -- : Refreshing Gem list
I, [2017-11-23T17:30:28.976963 #2316]  INFO -- : listening on addr=/run/gitlab/gitlab.socket fd=16
I, [2017-11-23T17:30:28.977074 #2316]  INFO -- : listening on addr=127.0.0.1:8080 fd=17
I, [2017-11-23T17:30:28.998887 #2316]  INFO -- : master process ready
I, [2017-11-23T17:30:29.065066 #2345]  INFO -- : worker=0 ready
I, [2017-11-23T17:30:29.065930 #2348]  INFO -- : worker=1 ready
I, [2017-11-23T17:30:29.083941 #2351]  INFO -- : worker=2 ready
W, [2017-11-23T17:35:53.762102 #2351]  WARN -- : #<Unicorn::HttpServer:0x000055a291cb4ab0>: worker (pid: 2351) exceeds memory limit (444381184.0 bytes > 350017397 bytes)
W, [2017-11-23T17:35:53.762151 #2351]  WARN -- : Unicorn::WorkerKiller send SIGQUIT (pid: 2351) alive: 323 sec (trial 1)
I, [2017-11-23T17:35:53.910383 #2316]  INFO -- : reaped #<Process::Status: pid 2351 exit 0> worker=2
I, [2017-11-23T17:35:53.952003 #2578]  INFO -- : worker=2 ready
W, [2017-11-23T17:36:30.558207 #2348]  WARN -- : #<Unicorn::HttpServer:0x000055a291cb4ab0>: worker (pid: 2348) exceeds memory limit (444184576.0 bytes > 329589995 bytes)
W, [2017-11-23T17:36:30.558257 #2348]  WARN -- : Unicorn::WorkerKiller send SIGQUIT (pid: 2348) alive: 358 sec (trial 1)
I, [2017-11-23T17:36:30.713076 #2316]  INFO -- : reaped #<Process::Status: pid 2348 exit 0> worker=1
I, [2017-11-23T17:36:30.753820 #2605]  INFO -- : worker=1 ready
W, [2017-11-23T17:36:50.598437 #2345]  WARN -- : #<Unicorn::HttpServer:0x000055a291cb4ab0>: worker (pid: 2345) exceeds memory limit (444295168.0 bytes > 352210161 bytes)
W, [2017-11-23T17:36:50.598544 #2345]  WARN -- : Unicorn::WorkerKiller send SIGQUIT (pid: 2345) alive: 378 sec (trial 1)
I, [2017-11-23T17:36:50.739566 #2316]  INFO -- : reaped #<Process::Status: pid 2345 exit 0> worker=0
I, [2017-11-23T17:36:50.783033 #2624]  INFO -- : worker=0 ready
W, [2017-11-23T17:43:00.214975 #2578]  WARN -- : #<Unicorn::HttpServer:0x000055a291cb4ab0>: worker (pid: 2578) exceeds memory limit (445351936.0 bytes > 361328485 bytes)
W, [2017-11-23T17:43:00.215064 #2578]  WARN -- : Unicorn::WorkerKiller send SIGQUIT (pid: 2578) alive: 418 sec (trial 1)
I, [2017-11-23T17:43:00.270146 #2316]  INFO -- : reaped #<Process::Status: pid 2578 exit 0> worker=2
I, [2017-11-23T17:43:00.313875 #2821]  INFO -- : worker=2 ready
W, [2017-11-23T17:43:01.783862 #2605]  WARN -- : #<Unicorn::HttpServer:0x000055a291cb4ab0>: worker (pid: 2605) exceeds memory limit (445597696.0 bytes > 330923075 bytes)
W, [2017-11-23T17:43:01.783950 #2605]  WARN -- : Unicorn::WorkerKiller send SIGQUIT (pid: 2605) alive: 371 sec (trial 1)
W, [2017-11-23T17:43:01.812882 #2624]  WARN -- : #<Unicorn::HttpServer:0x000055a291cb4ab0>: worker (pid: 2624) exceeds memory limit (446023680.0 bytes > 316042336 bytes)
W, [2017-11-23T17:43:01.812961 #2624]  WARN -- : Unicorn::WorkerKiller send SIGQUIT (pid: 2624) alive: 271 sec (trial 1)
I, [2017-11-23T17:43:01.924211 #2316]  INFO -- : reaped #<Process::Status: pid 2605 exit 0> worker=1
I, [2017-11-23T17:43:01.967494 #2837]  INFO -- : worker=1 ready
I, [2017-11-23T17:43:01.971232 #2316]  INFO -- : reaped #<Process::Status: pid 2624 exit 0> worker=0
I, [2017-11-23T17:43:02.013034 #2840]  INFO -- : worker=0 ready
I, [2017-11-23T17:45:12.752467 #2316]  INFO -- : reaped #<Process::Status: pid 2821 exit 0> worker=2
I, [2017-11-23T17:45:12.752525 #2316]  INFO -- : reaped #<Process::Status: pid 2837 exit 0> worker=1
I, [2017-11-23T17:45:12.752548 #2316]  INFO -- : reaped #<Process::Status: pid 2840 exit 0> worker=0
I, [2017-11-23T17:45:12.752582 #2316]  INFO -- : master complete
I, [2017-11-23T17:45:13.196397 #2915]  INFO -- : Refreshing Gem list
I, [2017-11-23T17:45:22.202482 #2915]  INFO -- : listening on addr=/run/gitlab/gitlab.socket fd=16
I, [2017-11-23T17:45:22.202639 #2915]  INFO -- : listening on addr=127.0.0.1:8080 fd=17
I, [2017-11-23T17:45:22.212383 #2915]  INFO -- : master process ready
I, [2017-11-23T17:45:22.247829 #2971]  INFO -- : worker=0 ready
I, [2017-11-23T17:45:22.251640 #2974]  INFO -- : worker=1 ready
I, [2017-11-23T17:45:22.254346 #2977]  INFO -- : worker=2 ready
I, [2017-11-23T17:49:11.351061 #2915]  INFO -- : reaped #<Process::Status: pid 2971 exit 0> worker=0
I, [2017-11-23T17:49:11.351111 #2915]  INFO -- : reaped #<Process::Status: pid 2974 exit 0> worker=1
I, [2017-11-23T17:49:11.351136 #2915]  INFO -- : reaped #<Process::Status: pid 2977 exit 0> worker=2
I, [2017-11-23T17:49:11.351161 #2915]  INFO -- : master complete
I, [2017-11-23T17:49:11.786562 #3118]  INFO -- : Refreshing Gem list
I, [2017-11-23T17:49:20.725799 #3118]  INFO -- : listening on addr=/run/gitlab/gitlab.socket fd=16
I, [2017-11-23T17:49:20.725953 #3118]  INFO -- : listening on addr=127.0.0.1:8080 fd=17
I, [2017-11-23T17:49:20.733009 #3118]  INFO -- : master process ready
I, [2017-11-23T17:49:20.769350 #3179]  INFO -- : worker=0 ready
I, [2017-11-23T17:49:20.771782 #3182]  INFO -- : worker=1 ready
I, [2017-11-23T17:49:20.774094 #3185]  INFO -- : worker=2 ready
W, [2017-11-23T18:14:17.940178 #3185]  WARN -- : #<Unicorn::HttpServer:0x000055d2c5cd8fc8>: worker (pid: 3185) exceeds memory limit (445874176.0 bytes > 353481880 bytes)
W, [2017-11-23T18:14:17.940253 #3185]  WARN -- : Unicorn::WorkerKiller send SIGQUIT (pid: 3185) alive: 1495 sec (trial 1)
I, [2017-11-23T18:14:18.178161 #3118]  INFO -- : reaped #<Process::Status: pid 3185 exit 0> worker=2
I, [2017-11-23T18:14:18.290736 #3390]  INFO -- : worker=2 ready
I, [2017-11-23T18:14:27.972522 #3118]  INFO -- : reaped #<Process::Status: pid 3179 exit 0> worker=0
I, [2017-11-23T18:14:27.972572 #3118]  INFO -- : reaped #<Process::Status: pid 3182 exit 0> worker=1
I, [2017-11-23T18:14:27.972592 #3118]  INFO -- : reaped #<Process::Status: pid 3390 exit 0> worker=2
I, [2017-11-23T18:14:27.972623 #3118]  INFO -- : master complete
I, [2017-11-24T11:04:05.284745 #6537]  INFO -- : Refreshing Gem list
I, [2017-11-24T11:04:16.197377 #6537]  INFO -- : listening on addr=/run/gitlab/gitlab.socket fd=16
I, [2017-11-24T11:04:16.197503 #6537]  INFO -- : listening on addr=127.0.0.1:8080 fd=17
I, [2017-11-24T11:04:16.203899 #6537]  INFO -- : master process ready
I, [2017-11-24T11:04:16.240610 #6632]  INFO -- : worker=0 ready
I, [2017-11-24T11:04:16.244923 #6635]  INFO -- : worker=1 ready
I, [2017-11-24T11:04:16.246349 #6638]  INFO -- : worker=2 ready
W, [2017-11-24T11:05:27.899350 #6638]  WARN -- : #<Unicorn::HttpServer:0x000055f1b7423480>: worker (pid: 6638) exceeds memory limit (446496768.0 bytes > 334410453 bytes)
W, [2017-11-24T11:05:27.899419 #6638]  WARN -- : Unicorn::WorkerKiller send SIGQUIT (pid: 6638) alive: 70 sec (trial 1)
I, [2017-11-24T11:05:28.153561 #6537]  INFO -- : reaped #<Process::Status: pid 6638 exit 0> worker=2
I, [2017-11-24T11:05:28.271708 #6770]  INFO -- : worker=2 ready
W, [2017-11-24T11:05:32.215301 #6632]  WARN -- : #<Unicorn::HttpServer:0x000055f1b7423480>: worker (pid: 6632) exceeds memory limit (441403392.0 bytes > 358024410 bytes)
W, [2017-11-24T11:05:32.215346 #6632]  WARN -- : Unicorn::WorkerKiller send SIGQUIT (pid: 6632) alive: 72 sec (trial 1)
I, [2017-11-24T11:05:32.472900 #6537]  INFO -- : reaped #<Process::Status: pid 6632 exit 0> worker=0
I, [2017-11-24T11:05:32.587746 #6787]  INFO -- : worker=0 ready
W, [2017-11-24T11:05:33.992503 #6635]  WARN -- : #<Unicorn::HttpServer:0x000055f1b7423480>: worker (pid: 6635) exceeds memory limit (441350144.0 bytes > 356769853 bytes)
W, [2017-11-24T11:05:33.992559 #6635]  WARN -- : Unicorn::WorkerKiller send SIGQUIT (pid: 6635) alive: 74 sec (trial 1)
I, [2017-11-24T11:05:34.111378 #6537]  INFO -- : reaped #<Process::Status: pid 6635 exit 0> worker=1
I, [2017-11-24T11:05:34.242568 #6802]  INFO -- : worker=1 ready
W, [2017-11-24T11:05:58.378691 #6770]  WARN -- : #<Unicorn::HttpServer:0x000055f1b7423480>: worker (pid: 6770) exceeds memory limit (446818304.0 bytes > 345053529 bytes)
W, [2017-11-24T11:05:58.378748 #6770]  WARN -- : Unicorn::WorkerKiller send SIGQUIT (pid: 6770) alive: 28 sec (trial 1)
W, [2017-11-24T11:05:58.384388 #6787]  WARN -- : #<Unicorn::HttpServer:0x000055f1b7423480>: worker (pid: 6787) exceeds memory limit (447137792.0 bytes > 328641732 bytes)
W, [2017-11-24T11:05:58.384441 #6787]  WARN -- : Unicorn::WorkerKiller send SIGQUIT (pid: 6787) alive: 23 sec (trial 1)
I, [2017-11-24T11:05:58.559788 #6537]  INFO -- : reaped #<Process::Status: pid 6787 exit 0> worker=0
I, [2017-11-24T11:05:58.579060 #6537]  INFO -- : reaped #<Process::Status: pid 6770 exit 0> worker=2
I, [2017-11-24T11:05:58.691883 #6852]  INFO -- : worker=0 ready
I, [2017-11-24T11:05:58.703503 #6855]  INFO -- : worker=2 ready
W, [2017-11-24T11:06:03.015290 #6802]  WARN -- : #<Unicorn::HttpServer:0x000055f1b7423480>: worker (pid: 6802) exceeds memory limit (446609408.0 bytes > 332931172 bytes)
W, [2017-11-24T11:06:03.015352 #6802]  WARN -- : Unicorn::WorkerKiller send SIGQUIT (pid: 6802) alive: 26 sec (trial 1)
I, [2017-11-24T11:06:03.211580 #6537]  INFO -- : reaped #<Process::Status: pid 6802 exit 0> worker=1
I, [2017-11-24T11:06:03.333141 #6882]  INFO -- : worker=1 ready
W, [2017-11-24T11:32:12.085933 #6855]  WARN -- : #<Unicorn::HttpServer:0x000055f1b7423480>: worker (pid: 6855) exceeds memory limit (447084544.0 bytes > 328291900 bytes)
W, [2017-11-24T11:32:12.086024 #6855]  WARN -- : Unicorn::WorkerKiller send SIGQUIT (pid: 6855) alive: 1569 sec (trial 1)
I, [2017-11-24T11:32:12.236615 #6537]  INFO -- : reaped #<Process::Status: pid 6855 exit 0> worker=2
I, [2017-11-24T11:32:12.352285 #7592]  INFO -- : worker=2 ready
I, [2017-11-24T11:36:03.916004 #6537]  INFO -- : reaped #<Process::Status: pid 6852 exit 0> worker=0
I, [2017-11-24T11:36:03.916060 #6537]  INFO -- : reaped #<Process::Status: pid 6882 exit 0> worker=1
I, [2017-11-24T11:36:03.916082 #6537]  INFO -- : reaped #<Process::Status: pid 7592 exit 0> worker=2
I, [2017-11-24T11:36:03.916152 #6537]  INFO -- : master complete
I, [2017-11-24T11:36:04.391966 #7702]  INFO -- : Refreshing Gem list
I, [2017-11-24T11:36:13.995176 #7702]  INFO -- : listening on addr=/run/gitlab/gitlab.socket fd=16
I, [2017-11-24T11:36:13.995563 #7702]  INFO -- : listening on addr=127.0.0.1:8080 fd=17
I, [2017-11-24T11:36:14.002631 #7702]  INFO -- : master process ready
I, [2017-11-24T11:36:14.054938 #7805]  INFO -- : worker=0 ready
I, [2017-11-24T11:36:14.057305 #7808]  INFO -- : worker=1 ready
I, [2017-11-24T11:36:14.058835 #7811]  INFO -- : worker=2 ready
E, [2017-11-24T11:38:07.019882 #7702] ERROR -- : worker=0 PID:7805 timeout (61s > 60s), killing
E, [2017-11-24T11:38:07.019990 #7702] ERROR -- : worker=1 PID:7808 timeout (61s > 60s), killing
E, [2017-11-24T11:38:07.020024 #7702] ERROR -- : worker=2 PID:7811 timeout (61s > 60s), killing
E, [2017-11-24T11:38:07.032666 #7702] ERROR -- : reaped #<Process::Status: pid 7805 SIGKILL (signal 9)> worker=0
E, [2017-11-24T11:38:07.032810 #7702] ERROR -- : worker=1 PID:7808 timeout (61s > 60s), killing
E, [2017-11-24T11:38:07.032841 #7702] ERROR -- : worker=2 PID:7811 timeout (61s > 60s), killing
E, [2017-11-24T11:38:07.040153 #7702] ERROR -- : reaped #<Process::Status: pid 7811 SIGKILL (signal 9)> worker=2
E, [2017-11-24T11:38:07.040252 #7702] ERROR -- : reaped #<Process::Status: pid 7808 SIGKILL (signal 9)> worker=1
I, [2017-11-24T11:38:07.090140 #7886]  INFO -- : worker=0 ready
I, [2017-11-24T11:38:07.092450 #7892]  INFO -- : worker=2 ready
I, [2017-11-24T11:38:07.092450 #7889]  INFO -- : worker=1 ready
W, [2017-11-24T11:39:48.008447 #7886]  WARN -- : #<Unicorn::HttpServer:0x00005621d45b8d98>: worker (pid: 7886) exceeds memory limit (441182208.0 bytes > 336543622 bytes)
W, [2017-11-24T11:39:48.008525 #7886]  WARN -- : Unicorn::WorkerKiller send SIGQUIT (pid: 7886) alive: 92 sec (trial 1)
I, [2017-11-24T11:39:48.171134 #7702]  INFO -- : reaped #<Process::Status: pid 7886 exit 0> worker=0
I, [2017-11-24T11:39:48.214975 #8016]  INFO -- : worker=0 ready
Warning: fuzzy message was ignored.
  : msgid 'AutoDevOps|Learn more in the %{link_to_documentation}'
Warning: fuzzy message was ignored.
  : msgid 'Clone repository'
Warning: fuzzy message was ignored.
  : msgid 'Commit Message'
Warning: fuzzy message was ignored.
  : msgid 'DashboardProjects|All'
Warning: fuzzy message was ignored.
  : msgid 'ForkedFromProjectPath|Forked from %{project_name} (deleted)'
Warning: fuzzy message was ignored.
  : msgid 'Last update'
Warning: fuzzy message was ignored.
  : msgid 'Last updated'
Warning: fuzzy message was ignored.
  : msgid 'Timeago|in a while'
Warning: fuzzy message was ignored.
  : msgid 'WikiPageConfirmDelete|Are you sure you want to delete this page?'
Warning: fuzzy message was ignored.
  : msgid 'WikiPageEdit|Update %{page_title}'
Warning: fuzzy message was ignored.
  : msgid 'Wiki|Edit Page'
W, [2017-11-24T11:40:06.783245 #7892]  WARN -- : #<Unicorn::HttpServer:0x00005621d45b8d98>: worker (pid: 7892) exceeds memory limit (440383488.0 bytes > 328833708 bytes)
W, [2017-11-24T11:40:06.783500 #7892]  WARN -- : Unicorn::WorkerKiller send SIGQUIT (pid: 7892) alive: 73 sec (trial 1)
W, [2017-11-24T11:40:06.837279 #7889]  WARN -- : #<Unicorn::HttpServer:0x00005621d45b8d98>: worker (pid: 7889) exceeds memory limit (439142400.0 bytes > 354276380 bytes)
W, [2017-11-24T11:40:06.837335 #7889]  WARN -- : Unicorn::WorkerKiller send SIGQUIT (pid: 7889) alive: 73 sec (trial 1)
I, [2017-11-24T11:40:06.921748 #7702]  INFO -- : reaped #<Process::Status: pid 7889 exit 0> worker=1
I, [2017-11-24T11:40:06.968567 #8039]  INFO -- : worker=1 ready
I, [2017-11-24T11:40:07.146506 #7702]  INFO -- : reaped #<Process::Status: pid 7892 exit 0> worker=2
I, [2017-11-24T11:40:07.190910 #8054]  INFO -- : worker=2 ready
Warning: fuzzy message was ignored.
  : msgid 'AutoDevOps|Learn more in the %{link_to_documentation}'
Warning: fuzzy message was ignored.
  : msgid 'Clone repository'
Warning: fuzzy message was ignored.
  : msgid 'Commit Message'
Warning: fuzzy message was ignored.
  : msgid 'DashboardProjects|All'
Warning: fuzzy message was ignored.
  : msgid 'ForkedFromProjectPath|Forked from %{project_name} (deleted)'
Warning: fuzzy message was ignored.
  : msgid 'Last update'
Warning: fuzzy message was ignored.
  : msgid 'Last updated'
Warning: fuzzy message was ignored.
  : msgid 'Timeago|in a while'
Warning: fuzzy message was ignored.
  : msgid 'WikiPageConfirmDelete|Are you sure you want to delete this page?'
Warning: fuzzy message was ignored.
  : msgid 'WikiPageEdit|Update %{page_title}'
Warning: fuzzy message was ignored.
  : msgid 'Wiki|Edit Page'
W, [2017-11-24T11:48:21.582620 #8016]  WARN -- : #<Unicorn::HttpServer:0x00005621d45b8d98>: worker (pid: 8016) exceeds memory limit (440506368.0 bytes > 342644278 bytes)
W, [2017-11-24T11:48:21.582699 #8016]  WARN -- : Unicorn::WorkerKiller send SIGQUIT (pid: 8016) alive: 493 sec (trial 1)
W, [2017-11-24T11:48:21.584277 #8054]  WARN -- : #<Unicorn::HttpServer:0x00005621d45b8d98>: worker (pid: 8054) exceeds memory limit (439142400.0 bytes > 342536011 bytes)
W, [2017-11-24T11:48:21.584326 #8054]  WARN -- : Unicorn::WorkerKiller send SIGQUIT (pid: 8054) alive: 493 sec (trial 1)
I, [2017-11-24T11:48:21.659367 #7702]  INFO -- : reaped #<Process::Status: pid 8054 exit 0> worker=2
I, [2017-11-24T11:48:21.704471 #8446]  INFO -- : worker=2 ready
I, [2017-11-24T11:48:21.890037 #7702]  INFO -- : reaped #<Process::Status: pid 8016 exit 0> worker=0
I, [2017-11-24T11:48:21.937236 #8449]  INFO -- : worker=0 ready
W, [2017-11-24T11:50:02.964550 #8039]  WARN -- : #<Unicorn::HttpServer:0x00005621d45b8d98>: worker (pid: 8039) exceeds memory limit (440690688.0 bytes > 320266930 bytes)
W, [2017-11-24T11:50:02.964609 #8039]  WARN -- : Unicorn::WorkerKiller send SIGQUIT (pid: 8039) alive: 594 sec (trial 1)
I, [2017-11-24T11:50:03.118859 #7702]  INFO -- : reaped #<Process::Status: pid 8039 exit 0> worker=1
I, [2017-11-24T11:50:03.163094 #8526]  INFO -- : worker=1 ready
W, [2017-11-24T11:50:35.541229 #8446]  WARN -- : #<Unicorn::HttpServer:0x00005621d45b8d98>: worker (pid: 8446) exceeds memory limit (442636288.0 bytes > 326877586 bytes)
W, [2017-11-24T11:50:35.541284 #8446]  WARN -- : Unicorn::WorkerKiller send SIGQUIT (pid: 8446) alive: 33 sec (trial 1)
I, [2017-11-24T11:50:35.706364 #7702]  INFO -- : reaped #<Process::Status: pid 8446 exit 0> worker=2
I, [2017-11-24T11:50:35.751068 #8562]  INFO -- : worker=2 ready
W, [2017-11-24T11:50:36.298834 #8526]  WARN -- : #<Unicorn::HttpServer:0x00005621d45b8d98>: worker (pid: 8526) exceeds memory limit (443398144.0 bytes > 339498157 bytes)
W, [2017-11-24T11:50:36.298917 #8526]  WARN -- : Unicorn::WorkerKiller send SIGQUIT (pid: 8526) alive: 31 sec (trial 1)
I, [2017-11-24T11:50:36.468397 #7702]  INFO -- : reaped #<Process::Status: pid 8526 exit 0> worker=1
I, [2017-11-24T11:50:36.513096 #8577]  INFO -- : worker=1 ready
W, [2017-11-24T11:50:37.802262 #8449]  WARN -- : #<Unicorn::HttpServer:0x00005621d45b8d98>: worker (pid: 8449) exceeds memory limit (442460160.0 bytes > 331632525 bytes)
W, [2017-11-24T11:50:37.802303 #8449]  WARN -- : Unicorn::WorkerKiller send SIGQUIT (pid: 8449) alive: 35 sec (trial 1)
I, [2017-11-24T11:50:37.956703 #7702]  INFO -- : reaped #<Process::Status: pid 8449 exit 0> worker=0
I, [2017-11-24T11:50:38.001628 #8592]  INFO -- : worker=0 ready
I, [2017-11-24T11:59:43.914562 #7702]  INFO -- : reaped #<Process::Status: pid 8562 exit 0> worker=2
I, [2017-11-24T11:59:43.914615 #7702]  INFO -- : reaped #<Process::Status: pid 8577 exit 0> worker=1
I, [2017-11-24T11:59:43.914639 #7702]  INFO -- : reaped #<Process::Status: pid 8592 exit 0> worker=0
I, [2017-11-24T11:59:43.914671 #7702]  INFO -- : master complete
I, [2017-11-24T11:59:44.419693 #8939]  INFO -- : Refreshing Gem list
I, [2017-11-24T11:59:53.604159 #8939]  INFO -- : listening on addr=/run/gitlab/gitlab.socket fd=16
I, [2017-11-24T11:59:53.604312 #8939]  INFO -- : listening on addr=127.0.0.1:8080 fd=17
I, [2017-11-24T11:59:53.611632 #8939]  INFO -- : master process ready
I, [2017-11-24T11:59:53.648297 #9046]  INFO -- : worker=0 ready
I, [2017-11-24T11:59:53.653806 #9052]  INFO -- : worker=2 ready
I, [2017-11-24T11:59:53.654953 #9049]  INFO -- : worker=1 ready
W, [2017-11-24T12:01:48.256392 #9049]  WARN -- : #<Unicorn::HttpServer:0x0000561c3741c540>: worker (pid: 9049) exceeds memory limit (438994944.0 bytes > 348661931 bytes)
W, [2017-11-24T12:01:48.256472 #9049]  WARN -- : Unicorn::WorkerKiller send SIGQUIT (pid: 9049) alive: 111 sec (trial 1)
I, [2017-11-24T12:01:48.362176 #8939]  INFO -- : reaped #<Process::Status: pid 9049 exit 0> worker=1
I, [2017-11-24T12:01:48.407333 #9185]  INFO -- : worker=1 ready
W, [2017-11-24T12:01:49.146663 #9052]  WARN -- : #<Unicorn::HttpServer:0x0000561c3741c540>: worker (pid: 9052) exceeds memory limit (438986752.0 bytes > 331476291 bytes)
W, [2017-11-24T12:01:49.146746 #9052]  WARN -- : Unicorn::WorkerKiller send SIGQUIT (pid: 9052) alive: 113 sec (trial 1)
I, [2017-11-24T12:01:49.405290 #8939]  INFO -- : reaped #<Process::Status: pid 9052 exit 0> worker=2
I, [2017-11-24T12:01:49.451858 #9202]  INFO -- : worker=2 ready
W, [2017-11-24T12:01:51.513166 #9046]  WARN -- : #<Unicorn::HttpServer:0x0000561c3741c540>: worker (pid: 9046) exceeds memory limit (439064576.0 bytes > 344583340 bytes)
W, [2017-11-24T12:01:51.513777 #9046]  WARN -- : Unicorn::WorkerKiller send SIGQUIT (pid: 9046) alive: 114 sec (trial 1)
I, [2017-11-24T12:01:51.763945 #8939]  INFO -- : reaped #<Process::Status: pid 9046 exit 0> worker=0
I, [2017-11-24T12:01:51.808303 #9217]  INFO -- : worker=0 ready
W, [2017-11-24T12:01:56.779578 #9202]  WARN -- : #<Unicorn::HttpServer:0x0000561c3741c540>: worker (pid: 9202) exceeds memory limit (439318528.0 bytes > 317450523 bytes)
W, [2017-11-24T12:01:56.779626 #9202]  WARN -- : Unicorn::WorkerKiller send SIGQUIT (pid: 9202) alive: 4 sec (trial 1)
W, [2017-11-24T12:01:56.813330 #9185]  WARN -- : #<Unicorn::HttpServer:0x0000561c3741c540>: worker (pid: 9185) exceeds memory limit (438446080.0 bytes > 366053737 bytes)
W, [2017-11-24T12:01:56.813407 #9185]  WARN -- : Unicorn::WorkerKiller send SIGQUIT (pid: 9185) alive: 6 sec (trial 1)
I, [2017-11-24T12:01:56.926471 #8939]  INFO -- : reaped #<Process::Status: pid 9185 exit 0> worker=1
I, [2017-11-24T12:01:56.970293 #9237]  INFO -- : worker=1 ready
I, [2017-11-24T12:01:57.024242 #8939]  INFO -- : reaped #<Process::Status: pid 9202 exit 0> worker=2
I, [2017-11-24T12:01:57.069606 #9240]  INFO -- : worker=2 ready
W, [2017-11-24T12:02:52.214202 #9240]  WARN -- : #<Unicorn::HttpServer:0x0000561c3741c540>: worker (pid: 9240) exceeds memory limit (439396352.0 bytes > 330090898 bytes)
W, [2017-11-24T12:02:52.214474 #9240]  WARN -- : Unicorn::WorkerKiller send SIGQUIT (pid: 9240) alive: 52 sec (trial 1)
W, [2017-11-24T12:02:52.236712 #9217]  WARN -- : #<Unicorn::HttpServer:0x0000561c3741c540>: worker (pid: 9217) exceeds memory limit (439351296.0 bytes > 348798851 bytes)
W, [2017-11-24T12:02:52.240966 #9217]  WARN -- : Unicorn::WorkerKiller send SIGQUIT (pid: 9217) alive: 58 sec (trial 1)
I, [2017-11-24T12:02:52.368558 #8939]  INFO -- : reaped #<Process::Status: pid 9217 exit 0> worker=0
I, [2017-11-24T12:02:52.415588 #9294]  INFO -- : worker=0 ready
I, [2017-11-24T12:02:52.502687 #8939]  INFO -- : reaped #<Process::Status: pid 9240 exit 0> worker=2
I, [2017-11-24T12:02:52.547162 #9297]  INFO -- : worker=2 ready
W, [2017-11-24T12:02:55.076420 #9237]  WARN -- : #<Unicorn::HttpServer:0x0000561c3741c540>: worker (pid: 9237) exceeds memory limit (439101440.0 bytes > 325040156 bytes)
W, [2017-11-24T12:02:55.076495 #9237]  WARN -- : Unicorn::WorkerKiller send SIGQUIT (pid: 9237) alive: 56 sec (trial 1)
I, [2017-11-24T12:02:55.194126 #8939]  INFO -- : reaped #<Process::Status: pid 9237 exit 0> worker=1
I, [2017-11-24T12:02:55.238163 #9324]  INFO -- : worker=1 ready
I, [2017-11-24T12:03:13.935421 #8939]  INFO -- : reaped #<Process::Status: pid 9294 exit 0> worker=0
I, [2017-11-24T12:03:13.935475 #8939]  INFO -- : reaped #<Process::Status: pid 9297 exit 0> worker=2
I, [2017-11-24T12:03:13.935497 #8939]  INFO -- : reaped #<Process::Status: pid 9324 exit 0> worker=1
I, [2017-11-24T12:03:13.935527 #8939]  INFO -- : master complete
I, [2017-11-24T12:03:14.367130 #9353]  INFO -- : Refreshing Gem list
I, [2017-11-24T12:03:23.395612 #9353]  INFO -- : listening on addr=/run/gitlab/gitlab.socket fd=10
I, [2017-11-24T12:03:23.395756 #9353]  INFO -- : listening on addr=127.0.0.1:8080 fd=17
I, [2017-11-24T12:03:23.406398 #9353]  INFO -- : master process ready
I, [2017-11-24T12:03:23.443691 #9463]  INFO -- : worker=1 ready
I, [2017-11-24T12:03:23.450483 #9449]  INFO -- : worker=0 ready
I, [2017-11-24T12:03:23.452214 #9466]  INFO -- : worker=2 ready

/etc/redis.conf

# Redis configuration file example.
#
# Note that in order to read the configuration file, Redis must be
# started with the file path as first argument:
#
# ./redis-server /path/to/redis.conf

# Note on units: when memory size is needed, it is possible to specify
# it in the usual form of 1k 5GB 4M and so forth:
#
# 1k => 1000 bytes
# 1kb => 1024 bytes
# 1m => 1000000 bytes
# 1mb => 1024*1024 bytes
# 1g => 1000000000 bytes
# 1gb => 1024*1024*1024 bytes
#
# units are case insensitive so 1GB 1Gb 1gB are all the same.

################################## INCLUDES ###################################

# Include one or more other config files here.  This is useful if you
# have a standard template that goes to all Redis servers but also need
# to customize a few per-server settings.  Include files can include
# other files, so use this wisely.
#
# Notice option "include" won't be rewritten by command "CONFIG REWRITE"
# from admin or Redis Sentinel. Since Redis always uses the last processed
# line as value of a configuration directive, you'd better put includes
# at the beginning of this file to avoid overwriting config change at runtime.
#
# If instead you are interested in using includes to override configuration
# options, it is better to use include as the last line.
#
# include /path/to/local.conf
# include /path/to/other.conf

################################## MODULES #####################################

# Load modules at startup. If the server is not able to load modules
# it will abort. It is possible to use multiple loadmodule directives.
#
# loadmodule /path/to/my_module.so
# loadmodule /path/to/other_module.so

################################## NETWORK #####################################

# By default, if no "bind" configuration directive is specified, Redis listens
# for connections from all the network interfaces available on the server.
# It is possible to listen to just one or multiple selected interfaces using
# the "bind" configuration directive, followed by one or more IP addresses.
#
# Examples:
#
# bind 192.168.1.100 10.0.0.1
# bind 127.0.0.1 ::1
#
# ~~~ WARNING ~~~ If the computer running Redis is directly exposed to the
# internet, binding to all the interfaces is dangerous and will expose the
# instance to everybody on the internet. So by default we uncomment the
# following bind directive, that will force Redis to listen only into
# the IPv4 lookback interface address (this means Redis will be able to
# accept connections only from clients running into the same computer it
# is running).
#
# IF YOU ARE SURE YOU WANT YOUR INSTANCE TO LISTEN TO ALL THE INTERFACES
# JUST COMMENT THE FOLLOWING LINE.
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
bind 127.0.0.1

# Protected mode is a layer of security protection, in order to avoid that
# Redis instances left open on the internet are accessed and exploited.
#
# When protected mode is on and if:
#
# 1) The server is not binding explicitly to a set of addresses using the
#    "bind" directive.
# 2) No password is configured.
#
# The server only accepts connections from clients connecting from the
# IPv4 and IPv6 loopback addresses 127.0.0.1 and ::1, and from Unix domain
# sockets.
#
# By default protected mode is enabled. You should disable it only if
# you are sure you want clients from other hosts to connect to Redis
# even if no authentication is configured, nor a specific set of interfaces
# are explicitly listed using the "bind" directive.
protected-mode yes

# Accept connections on the specified port, default is 6379 (IANA #815344).
# If port 0 is specified Redis will not listen on a TCP socket.
port 6379

# TCP listen() backlog.
#
# In high requests-per-second environments you need an high backlog in order
# to avoid slow clients connections issues. Note that the Linux kernel
# will silently truncate it to the value of /proc/sys/net/core/somaxconn so
# make sure to raise both the value of somaxconn and tcp_max_syn_backlog
# in order to get the desired effect.
tcp-backlog 511

# Unix socket.
#
# Specify the path for the Unix socket that will be used to listen for
# incoming connections. There is no default, so Redis will not listen
# on a unix socket when not specified.
#
unixsocket /var/run/redis/redis.sock
unixsocketperm 770

# Close the connection after a client is idle for N seconds (0 to disable)
timeout 0

# TCP keepalive.
#
# If non-zero, use SO_KEEPALIVE to send TCP ACKs to clients in absence
# of communication. This is useful for two reasons:
#
# 1) Detect dead peers.
# 2) Take the connection alive from the point of view of network
#    equipment in the middle.
#
# On Linux, the specified value (in seconds) is the period used to send ACKs.
# Note that to close the connection the double of the time is needed.
# On other kernels the period depends on the kernel configuration.
#
# A reasonable value for this option is 300 seconds, which is the new
# Redis default starting with Redis 3.2.1.
tcp-keepalive 300

################################# GENERAL #####################################

# By default Redis does not run as a daemon. Use 'yes' if you need it.
# Note that Redis will write a pid file in /var/run/redis.pid when daemonized.
daemonize no

# If you run Redis from upstart or systemd, Redis can interact with your
# supervision tree. Options:
#   supervised no      - no supervision interaction
#   supervised upstart - signal upstart by putting Redis into SIGSTOP mode
#   supervised systemd - signal systemd by writing READY=1 to $NOTIFY_SOCKET
#   supervised auto    - detect upstart or systemd method based on
#                        UPSTART_JOB or NOTIFY_SOCKET environment variables
# Note: these supervision methods only signal "process is ready."
#       They do not enable continuous liveness pings back to your supervisor.
supervised no

# If a pid file is specified, Redis writes it where specified at startup
# and removes it at exit.
#
# When the server runs non daemonized, no pid file is created if none is
# specified in the configuration. When the server is daemonized, the pid file
# is used even if not specified, defaulting to "/var/run/redis.pid".
#
# Creating a pid file is best effort: if Redis is not able to create it
# nothing bad happens, the server will start and run normally.
pidfile /var/run/redis_6379.pid

# Specify the server verbosity level.
# This can be one of:
# debug (a lot of information, useful for development/testing)
# verbose (many rarely useful info, but not a mess like the debug level)
# notice (moderately verbose, what you want in production probably)
# warning (only very important / critical messages are logged)
loglevel notice

# Specify the log file name. Also the empty string can be used to force
# Redis to log on the standard output. Note that if you use standard
# output for logging but daemonize, logs will be sent to /dev/null
logfile ""

# To enable logging to the system logger, just set 'syslog-enabled' to yes,
# and optionally update the other syslog parameters to suit your needs.
# syslog-enabled no

# Specify the syslog identity.
# syslog-ident redis

# Specify the syslog facility. Must be USER or between LOCAL0-LOCAL7.
# syslog-facility local0

# Set the number of databases. The default database is DB 0, you can select
# a different one on a per-connection basis using SELECT <dbid> where
# dbid is a number between 0 and 'databases'-1
databases 16

# By default Redis shows an ASCII art logo only when started to log to the
# standard output and if the standard output is a TTY. Basically this means
# that normally a logo is displayed only in interactive sessions.
#
# However it is possible to force the pre-4.0 behavior and always show a
# ASCII art logo in startup logs by setting the following option to yes.
always-show-logo yes

################################ SNAPSHOTTING  ################################
#
# Save the DB on disk:
#
#   save <seconds> <changes>
#
#   Will save the DB if both the given number of seconds and the given
#   number of write operations against the DB occurred.
#
#   In the example below the behaviour will be to save:
#   after 900 sec (15 min) if at least 1 key changed
#   after 300 sec (5 min) if at least 10 keys changed
#   after 60 sec if at least 10000 keys changed
#
#   Note: you can disable saving completely by commenting out all "save" lines.
#
#   It is also possible to remove all the previously configured save
#   points by adding a save directive with a single empty string argument
#   like in the following example:
#
#   save ""

save 900 1
save 300 10
save 60 10000

# By default Redis will stop accepting writes if RDB snapshots are enabled
# (at least one save point) and the latest background save failed.
# This will make the user aware (in a hard way) that data is not persisting
# on disk properly, otherwise chances are that no one will notice and some
# disaster will happen.
#
# If the background saving process will start working again Redis will
# automatically allow writes again.
#
# However if you have setup your proper monitoring of the Redis server
# and persistence, you may want to disable this feature so that Redis will
# continue to work as usual even if there are problems with disk,
# permissions, and so forth.
stop-writes-on-bgsave-error yes

# Compress string objects using LZF when dump .rdb databases?
# For default that's set to 'yes' as it's almost always a win.
# If you want to save some CPU in the saving child set it to 'no' but
# the dataset will likely be bigger if you have compressible values or keys.
rdbcompression yes

# Since version 5 of RDB a CRC64 checksum is placed at the end of the file.
# This makes the format more resistant to corruption but there is a performance
# hit to pay (around 10%) when saving and loading RDB files, so you can disable it
# for maximum performances.
#
# RDB files created with checksum disabled have a checksum of zero that will
# tell the loading code to skip the check.
rdbchecksum yes

# The filename where to dump the DB
dbfilename dump.rdb

# The working directory.
#
# The DB will be written inside this directory, with the filename specified
# above using the 'dbfilename' configuration directive.
#
# The Append Only File will also be created inside this directory.
#
# Note that you must specify a directory here, not a file name.
dir /var/lib/redis/

################################# REPLICATION #################################

# Master-Slave replication. Use slaveof to make a Redis instance a copy of
# another Redis server. A few things to understand ASAP about Redis replication.
#
# 1) Redis replication is asynchronous, but you can configure a master to
#    stop accepting writes if it appears to be not connected with at least
#    a given number of slaves.
# 2) Redis slaves are able to perform a partial resynchronization with the
#    master if the replication link is lost for a relatively small amount of
#    time. You may want to configure the replication backlog size (see the next
#    sections of this file) with a sensible value depending on your needs.
# 3) Replication is automatic and does not need user intervention. After a
#    network partition slaves automatically try to reconnect to masters
#    and resynchronize with them.
#
# slaveof <masterip> <masterport>

# If the master is password protected (using the "requirepass" configuration
# directive below) it is possible to tell the slave to authenticate before
# starting the replication synchronization process, otherwise the master will
# refuse the slave request.
#
# masterauth <master-password>

# When a slave loses its connection with the master, or when the replication
# is still in progress, the slave can act in two different ways:
#
# 1) if slave-serve-stale-data is set to 'yes' (the default) the slave will
#    still reply to client requests, possibly with out of date data, or the
#    data set may just be empty if this is the first synchronization.
#
# 2) if slave-serve-stale-data is set to 'no' the slave will reply with
#    an error "SYNC with master in progress" to all the kind of commands
#    but to INFO and SLAVEOF.
#
slave-serve-stale-data yes

# You can configure a slave instance to accept writes or not. Writing against
# a slave instance may be useful to store some ephemeral data (because data
# written on a slave will be easily deleted after resync with the master) but
# may also cause problems if clients are writing to it because of a
# misconfiguration.
#
# Since Redis 2.6 by default slaves are read-only.
#
# Note: read only slaves are not designed to be exposed to untrusted clients
# on the internet. It's just a protection layer against misuse of the instance.
# Still a read only slave exports by default all the administrative commands
# such as CONFIG, DEBUG, and so forth. To a limited extent you can improve
# security of read only slaves using 'rename-command' to shadow all the
# administrative / dangerous commands.
slave-read-only yes

# Replication SYNC strategy: disk or socket.
#
# -------------------------------------------------------
# WARNING: DISKLESS REPLICATION IS EXPERIMENTAL CURRENTLY
# -------------------------------------------------------
#
# New slaves and reconnecting slaves that are not able to continue the replication
# process just receiving differences, need to do what is called a "full
# synchronization". An RDB file is transmitted from the master to the slaves.
# The transmission can happen in two different ways:
#
# 1) Disk-backed: The Redis master creates a new process that writes the RDB
#                 file on disk. Later the file is transferred by the parent
#                 process to the slaves incrementally.
# 2) Diskless: The Redis master creates a new process that directly writes the
#              RDB file to slave sockets, without touching the disk at all.
#
# With disk-backed replication, while the RDB file is generated, more slaves
# can be queued and served with the RDB file as soon as the current child producing
# the RDB file finishes its work. With diskless replication instead once
# the transfer starts, new slaves arriving will be queued and a new transfer
# will start when the current one terminates.
#
# When diskless replication is used, the master waits a configurable amount of
# time (in seconds) before starting the transfer in the hope that multiple slaves
# will arrive and the transfer can be parallelized.
#
# With slow disks and fast (large bandwidth) networks, diskless replication
# works better.
repl-diskless-sync no

# When diskless replication is enabled, it is possible to configure the delay
# the server waits in order to spawn the child that transfers the RDB via socket
# to the slaves.
#
# This is important since once the transfer starts, it is not possible to serve
# new slaves arriving, that will be queued for the next RDB transfer, so the server
# waits a delay in order to let more slaves arrive.
#
# The delay is specified in seconds, and by default is 5 seconds. To disable
# it entirely just set it to 0 seconds and the transfer will start ASAP.
repl-diskless-sync-delay 5

# Slaves send PINGs to server in a predefined interval. It's possible to change
# this interval with the repl_ping_slave_period option. The default value is 10
# seconds.
#
# repl-ping-slave-period 10

# The following option sets the replication timeout for:
#
# 1) Bulk transfer I/O during SYNC, from the point of view of slave.
# 2) Master timeout from the point of view of slaves (data, pings).
# 3) Slave timeout from the point of view of masters (REPLCONF ACK pings).
#
# It is important to make sure that this value is greater than the value
# specified for repl-ping-slave-period otherwise a timeout will be detected
# every time there is low traffic between the master and the slave.
#
# repl-timeout 60

# Disable TCP_NODELAY on the slave socket after SYNC?
#
# If you select "yes" Redis will use a smaller number of TCP packets and
# less bandwidth to send data to slaves. But this can add a delay for
# the data to appear on the slave side, up to 40 milliseconds with
# Linux kernels using a default configuration.
#
# If you select "no" the delay for data to appear on the slave side will
# be reduced but more bandwidth will be used for replication.
#
# By default we optimize for low latency, but in very high traffic conditions
# or when the master and slaves are many hops away, turning this to "yes" may
# be a good idea.
repl-disable-tcp-nodelay no

# Set the replication backlog size. The backlog is a buffer that accumulates
# slave data when slaves are disconnected for some time, so that when a slave
# wants to reconnect again, often a full resync is not needed, but a partial
# resync is enough, just passing the portion of data the slave missed while
# disconnected.
#
# The bigger the replication backlog, the longer the time the slave can be
# disconnected and later be able to perform a partial resynchronization.
#
# The backlog is only allocated once there is at least a slave connected.
#
# repl-backlog-size 1mb

# After a master has no longer connected slaves for some time, the backlog
# will be freed. The following option configures the amount of seconds that
# need to elapse, starting from the time the last slave disconnected, for
# the backlog buffer to be freed.
#
# Note that slaves never free the backlog for timeout, since they may be
# promoted to masters later, and should be able to correctly "partially
# resynchronize" with the slaves: hence they should always accumulate backlog.
#
# A value of 0 means to never release the backlog.
#
# repl-backlog-ttl 3600

# The slave priority is an integer number published by Redis in the INFO output.
# It is used by Redis Sentinel in order to select a slave to promote into a
# master if the master is no longer working correctly.
#
# A slave with a low priority number is considered better for promotion, so
# for instance if there are three slaves with priority 10, 100, 25 Sentinel will
# pick the one with priority 10, that is the lowest.
#
# However a special priority of 0 marks the slave as not able to perform the
# role of master, so a slave with priority of 0 will never be selected by
# Redis Sentinel for promotion.
#
# By default the priority is 100.
slave-priority 100

# It is possible for a master to stop accepting writes if there are less than
# N slaves connected, having a lag less or equal than M seconds.
#
# The N slaves need to be in "online" state.
#
# The lag in seconds, that must be <= the specified value, is calculated from
# the last ping received from the slave, that is usually sent every second.
#
# This option does not GUARANTEE that N replicas will accept the write, but
# will limit the window of exposure for lost writes in case not enough slaves
# are available, to the specified number of seconds.
#
# For example to require at least 3 slaves with a lag <= 10 seconds use:
#
# min-slaves-to-write 3
# min-slaves-max-lag 10
#
# Setting one or the other to 0 disables the feature.
#
# By default min-slaves-to-write is set to 0 (feature disabled) and
# min-slaves-max-lag is set to 10.

# A Redis master is able to list the address and port of the attached
# slaves in different ways. For example the "INFO replication" section
# offers this information, which is used, among other tools, by
# Redis Sentinel in order to discover slave instances.
# Another place where this info is available is in the output of the
# "ROLE" command of a master.
#
# The listed IP and address normally reported by a slave is obtained
# in the following way:
#
#   IP: The address is auto detected by checking the peer address
#   of the socket used by the slave to connect with the master.
#
#   Port: The port is communicated by the slave during the replication
#   handshake, and is normally the port that the slave is using to
#   list for connections.
#
# However when port forwarding or Network Address Translation (NAT) is
# used, the slave may be actually reachable via different IP and port
# pairs. The following two options can be used by a slave in order to
# report to its master a specific set of IP and port, so that both INFO
# and ROLE will report those values.
#
# There is no need to use both the options if you need to override just
# the port or the IP address.
#
# slave-announce-ip 5.5.5.5
# slave-announce-port 1234

################################## SECURITY ###################################

# Require clients to issue AUTH <PASSWORD> before processing any other
# commands.  This might be useful in environments in which you do not trust
# others with access to the host running redis-server.
#
# This should stay commented out for backward compatibility and because most
# people do not need auth (e.g. they run their own servers).
#
# Warning: since Redis is pretty fast an outside user can try up to
# 150k passwords per second against a good box. This means that you should
# use a very strong password otherwise it will be very easy to break.
#
# requirepass foobared

# Command renaming.
#
# It is possible to change the name of dangerous commands in a shared
# environment. For instance the CONFIG command may be renamed into something
# hard to guess so that it will still be available for internal-use tools
# but not available for general clients.
#
# Example:
#
# rename-command CONFIG b840fc02d524045429941cc15f59e41cb7be6c52
#
# It is also possible to completely kill a command by renaming it into
# an empty string:
#
# rename-command CONFIG ""
#
# Please note that changing the name of commands that are logged into the
# AOF file or transmitted to slaves may cause problems.

################################### CLIENTS ####################################

# Set the max number of connected clients at the same time. By default
# this limit is set to 10000 clients, however if the Redis server is not
# able to configure the process file limit to allow for the specified limit
# the max number of allowed clients is set to the current file limit
# minus 32 (as Redis reserves a few file descriptors for internal uses).
#
# Once the limit is reached Redis will close all the new connections sending
# an error 'max number of clients reached'.
#
# maxclients 10000

############################## MEMORY MANAGEMENT ################################

# Set a memory usage limit to the specified amount of bytes.
# When the memory limit is reached Redis will try to remove keys
# according to the eviction policy selected (see maxmemory-policy).
#
# If Redis can't remove keys according to the policy, or if the policy is
# set to 'noeviction', Redis will start to reply with errors to commands
# that would use more memory, like SET, LPUSH, and so on, and will continue
# to reply to read-only commands like GET.
#
# This option is usually useful when using Redis as an LRU or LFU cache, or to
# set a hard memory limit for an instance (using the 'noeviction' policy).
#
# WARNING: If you have slaves attached to an instance with maxmemory on,
# the size of the output buffers needed to feed the slaves are subtracted
# from the used memory count, so that network problems / resyncs will
# not trigger a loop where keys are evicted, and in turn the output
# buffer of slaves is full with DELs of keys evicted triggering the deletion
# of more keys, and so forth until the database is completely emptied.
#
# In short... if you have slaves attached it is suggested that you set a lower
# limit for maxmemory so that there is some free RAM on the system for slave
# output buffers (but this is not needed if the policy is 'noeviction').
#
# maxmemory <bytes>

# MAXMEMORY POLICY: how Redis will select what to remove when maxmemory
# is reached. You can select among five behaviors:
#
# volatile-lru -> Evict using approximated LRU among the keys with an expire set.
# allkeys-lru -> Evict any key using approximated LRU.
# volatile-lfu -> Evict using approximated LFU among the keys with an expire set.
# allkeys-lfu -> Evict any key using approximated LFU.
# volatile-random -> Remove a random key among the ones with an expire set.
# allkeys-random -> Remove a random key, any key.
# volatile-ttl -> Remove the key with the nearest expire time (minor TTL)
# noeviction -> Don't evict anything, just return an error on write operations.
#
# LRU means Least Recently Used
# LFU means Least Frequently Used
#
# Both LRU, LFU and volatile-ttl are implemented using approximated
# randomized algorithms.
#
# Note: with any of the above policies, Redis will return an error on write
#       operations, when there are no suitable keys for eviction.
#
#       At the date of writing these commands are: set setnx setex append
#       incr decr rpush lpush rpushx lpushx linsert lset rpoplpush sadd
#       sinter sinterstore sunion sunionstore sdiff sdiffstore zadd zincrby
#       zunionstore zinterstore hset hsetnx hmset hincrby incrby decrby
#       getset mset msetnx exec sort
#
# The default is:
#
# maxmemory-policy noeviction

# LRU, LFU and minimal TTL algorithms are not precise algorithms but approximated
# algorithms (in order to save memory), so you can tune it for speed or
# accuracy. For default Redis will check five keys and pick the one that was
# used less recently, you can change the sample size using the following
# configuration directive.
#
# The default of 5 produces good enough results. 10 Approximates very closely
# true LRU but costs more CPU. 3 is faster but not very accurate.
#
# maxmemory-samples 5

############################# LAZY FREEING ####################################

# Redis has two primitives to delete keys. One is called DEL and is a blocking
# deletion of the object. It means that the server stops processing new commands
# in order to reclaim all the memory associated with an object in a synchronous
# way. If the key deleted is associated with a small object, the time needed
# in order to execute th DEL command is very small and comparable to most other
# O(1) or O(log_N) commands in Redis. However if the key is associated with an
# aggregated value containing millions of elements, the server can block for
# a long time (even seconds) in order to complete the operation.
#
# For the above reasons Redis also offers non blocking deletion primitives
# such as UNLINK (non blocking DEL) and the ASYNC option of FLUSHALL and
# FLUSHDB commands, in order to reclaim memory in background. Those commands
# are executed in constant time. Another thread will incrementally free the
# object in the background as fast as possible.
#
# DEL, UNLINK and ASYNC option of FLUSHALL and FLUSHDB are user-controlled.
# It's up to the design of the application to understand when it is a good
# idea to use one or the other. However the Redis server sometimes has to
# delete keys or flush the whole database as a side effect of other operations.
# Specifically Redis deletes objects independently of an user call in the
# following scenarios:
#
# 1) On eviction, because of the maxmemory and maxmemory policy configurations,
#    in order to make room for new data, without going over the specified
#    memory limit.
# 2) Because of expire: when a key with an associated time to live (see the
#    EXPIRE command) must be deleted from memory.
# 3) Because of a side effect of a command that stores data on a key that may
#    already exist. For example the RENAME command may delete the old key
#    content when it is replaced with another one. Similarly SUNIONSTORE
#    or SORT with STORE option may delete existing keys. The SET command
#    itself removes any old content of the specified key in order to replace
#    it with the specified string.
# 4) During replication, when a slave performs a full resynchronization with
#    its master, the content of the whole database is removed in order to
#    load the RDB file just transfered.
#
# In all the above cases the default is to delete objects in a blocking way,
# like if DEL was called. However you can configure each case specifically
# in order to instead release memory in a non-blocking way like if UNLINK
# was called, using the following configuration directives:

lazyfree-lazy-eviction no
lazyfree-lazy-expire no
lazyfree-lazy-server-del no
slave-lazy-flush no

############################## APPEND ONLY MODE ###############################

# By default Redis asynchronously dumps the dataset on disk. This mode is
# good enough in many applications, but an issue with the Redis process or
# a power outage may result into a few minutes of writes lost (depending on
# the configured save points).
#
# The Append Only File is an alternative persistence mode that provides
# much better durability. For instance using the default data fsync policy
# (see later in the config file) Redis can lose just one second of writes in a
# dramatic event like a server power outage, or a single write if something
# wrong with the Redis process itself happens, but the operating system is
# still running correctly.
#
# AOF and RDB persistence can be enabled at the same time without problems.
# If the AOF is enabled on startup Redis will load the AOF, that is the file
# with the better durability guarantees.
#
# Please check http://redis.io/topics/persistence for more information.

appendonly no

# The name of the append only file (default: "appendonly.aof")

appendfilename "appendonly.aof"

# The fsync() call tells the Operating System to actually write data on disk
# instead of waiting for more data in the output buffer. Some OS will really flush
# data on disk, some other OS will just try to do it ASAP.
#
# Redis supports three different modes:
#
# no: don't fsync, just let the OS flush the data when it wants. Faster.
# always: fsync after every write to the append only log. Slow, Safest.
# everysec: fsync only one time every second. Compromise.
#
# The default is "everysec", as that's usually the right compromise between
# speed and data safety. It's up to you to understand if you can relax this to
# "no" that will let the operating system flush the output buffer when
# it wants, for better performances (but if you can live with the idea of
# some data loss consider the default persistence mode that's snapshotting),
# or on the contrary, use "always" that's very slow but a bit safer than
# everysec.
#
# More details please check the following article:
# http://antirez.com/post/redis-persistence-demystified.html
#
# If unsure, use "everysec".

# appendfsync always
appendfsync everysec
# appendfsync no

# When the AOF fsync policy is set to always or everysec, and a background
# saving process (a background save or AOF log background rewriting) is
# performing a lot of I/O against the disk, in some Linux configurations
# Redis may block too long on the fsync() call. Note that there is no fix for
# this currently, as even performing fsync in a different thread will block
# our synchronous write(2) call.
#
# In order to mitigate this problem it's possible to use the following option
# that will prevent fsync() from being called in the main process while a
# BGSAVE or BGREWRITEAOF is in progress.
#
# This means that while another child is saving, the durability of Redis is
# the same as "appendfsync none". In practical terms, this means that it is
# possible to lose up to 30 seconds of log in the worst scenario (with the
# default Linux settings).
#
# If you have latency problems turn this to "yes". Otherwise leave it as
# "no" that is the safest pick from the point of view of durability.

no-appendfsync-on-rewrite no

# Automatic rewrite of the append only file.
# Redis is able to automatically rewrite the log file implicitly calling
# BGREWRITEAOF when the AOF log size grows by the specified percentage.
#
# This is how it works: Redis remembers the size of the AOF file after the
# latest rewrite (if no rewrite has happened since the restart, the size of
# the AOF at startup is used).
#
# This base size is compared to the current size. If the current size is
# bigger than the specified percentage, the rewrite is triggered. Also
# you need to specify a minimal size for the AOF file to be rewritten, this
# is useful to avoid rewriting the AOF file even if the percentage increase
# is reached but it is still pretty small.
#
# Specify a percentage of zero in order to disable the automatic AOF
# rewrite feature.

auto-aof-rewrite-percentage 100
auto-aof-rewrite-min-size 64mb

# An AOF file may be found to be truncated at the end during the Redis
# startup process, when the AOF data gets loaded back into memory.
# This may happen when the system where Redis is running
# crashes, especially when an ext4 filesystem is mounted without the
# data=ordered option (however this can't happen when Redis itself
# crashes or aborts but the operating system still works correctly).
#
# Redis can either exit with an error when this happens, or load as much
# data as possible (the default now) and start if the AOF file is found
# to be truncated at the end. The following option controls this behavior.
#
# If aof-load-truncated is set to yes, a truncated AOF file is loaded and
# the Redis server starts emitting a log to inform the user of the event.
# Otherwise if the option is set to no, the server aborts with an error
# and refuses to start. When the option is set to no, the user requires
# to fix the AOF file using the "redis-check-aof" utility before to restart
# the server.
#
# Note that if the AOF file will be found to be corrupted in the middle
# the server will still exit with an error. This option only applies when
# Redis will try to read more data from the AOF file but not enough bytes
# will be found.
aof-load-truncated yes

# When rewriting the AOF file, Redis is able to use an RDB preamble in the
# AOF file for faster rewrites and recoveries. When this option is turned
# on the rewritten AOF file is composed of two different stanzas:
#
#   [RDB file][AOF tail]
#
# When loading Redis recognizes that the AOF file starts with the "REDIS"
# string and loads the prefixed RDB file, and continues loading the AOF
# tail.
#
# This is currently turned off by default in order to avoid the surprise
# of a format change, but will at some point be used as the default.
aof-use-rdb-preamble no

################################ LUA SCRIPTING  ###############################

# Max execution time of a Lua script in milliseconds.
#
# If the maximum execution time is reached Redis will log that a script is
# still in execution after the maximum allowed time and will start to
# reply to queries with an error.
#
# When a long running script exceeds the maximum execution time only the
# SCRIPT KILL and SHUTDOWN NOSAVE commands are available. The first can be
# used to stop a script that did not yet called write commands. The second
# is the only way to shut down the server in the case a write command was
# already issued by the script but the user doesn't want to wait for the natural
# termination of the script.
#
# Set it to 0 or a negative value for unlimited execution without warnings.
lua-time-limit 5000

################################ REDIS CLUSTER  ###############################
#
# ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# WARNING EXPERIMENTAL: Redis Cluster is considered to be stable code, however
# in order to mark it as "mature" we need to wait for a non trivial percentage
# of users to deploy it in production.
# ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
#
# Normal Redis instances can't be part of a Redis Cluster; only nodes that are
# started as cluster nodes can. In order to start a Redis instance as a
# cluster node enable the cluster support uncommenting the following:
#
# cluster-enabled yes

# Every cluster node has a cluster configuration file. This file is not
# intended to be edited by hand. It is created and updated by Redis nodes.
# Every Redis Cluster node requires a different cluster configuration file.
# Make sure that instances running in the same system do not have
# overlapping cluster configuration file names.
#
# cluster-config-file nodes-6379.conf

# Cluster node timeout is the amount of milliseconds a node must be unreachable
# for it to be considered in failure state.
# Most other internal time limits are multiple of the node timeout.
#
# cluster-node-timeout 15000

# A slave of a failing master will avoid to start a failover if its data
# looks too old.
#
# There is no simple way for a slave to actually have an exact measure of
# its "data age", so the following two checks are performed:
#
# 1) If there are multiple slaves able to failover, they exchange messages
#    in order to try to give an advantage to the slave with the best
#    replication offset (more data from the master processed).
#    Slaves will try to get their rank by offset, and apply to the start
#    of the failover a delay proportional to their rank.
#
# 2) Every single slave computes the time of the last interaction with
#    its master. This can be the last ping or command received (if the master
#    is still in the "connected" state), or the time that elapsed since the
#    disconnection with the master (if the replication link is currently down).
#    If the last interaction is too old, the slave will not try to failover
#    at all.
#
# The point "2" can be tuned by user. Specifically a slave will not perform
# the failover if, since the last interaction with the master, the time
# elapsed is greater than:
#
#   (node-timeout * slave-validity-factor) + repl-ping-slave-period
#
# So for example if node-timeout is 30 seconds, and the slave-validity-factor
# is 10, and assuming a default repl-ping-slave-period of 10 seconds, the
# slave will not try to failover if it was not able to talk with the master
# for longer than 310 seconds.
#
# A large slave-validity-factor may allow slaves with too old data to failover
# a master, while a too small value may prevent the cluster from being able to
# elect a slave at all.
#
# For maximum availability, it is possible to set the slave-validity-factor
# to a value of 0, which means, that slaves will always try to failover the
# master regardless of the last time they interacted with the master.
# (However they'll always try to apply a delay proportional to their
# offset rank).
#
# Zero is the only value able to guarantee that when all the partitions heal
# the cluster will always be able to continue.
#
# cluster-slave-validity-factor 10

# Cluster slaves are able to migrate to orphaned masters, that are masters
# that are left without working slaves. This improves the cluster ability
# to resist to failures as otherwise an orphaned master can't be failed over
# in case of failure if it has no working slaves.
#
# Slaves migrate to orphaned masters only if there are still at least a
# given number of other working slaves for their old master. This number
# is the "migration barrier". A migration barrier of 1 means that a slave
# will migrate only if there is at least 1 other working slave for its master
# and so forth. It usually reflects the number of slaves you want for every
# master in your cluster.
#
# Default is 1 (slaves migrate only if their masters remain with at least
# one slave). To disable migration just set it to a very large value.
# A value of 0 can be set but is useful only for debugging and dangerous
# in production.
#
# cluster-migration-barrier 1

# By default Redis Cluster nodes stop accepting queries if they detect there
# is at least an hash slot uncovered (no available node is serving it).
# This way if the cluster is partially down (for example a range of hash slots
# are no longer covered) all the cluster becomes, eventually, unavailable.
# It automatically returns available as soon as all the slots are covered again.
#
# However sometimes you want the subset of the cluster which is working,
# to continue to accept queries for the part of the key space that is still
# covered. In order to do so, just set the cluster-require-full-coverage
# option to no.
#
# cluster-require-full-coverage yes

# In order to setup your cluster make sure to read the documentation
# available at http://redis.io web site.

########################## CLUSTER DOCKER/NAT support  ########################

# In certain deployments, Redis Cluster nodes address discovery fails, because
# addresses are NAT-ted or because ports are forwarded (the typical case is
# Docker and other containers).
#
# In order to make Redis Cluster working in such environments, a static
# configuration where each node known its public address is needed. The
# following two options are used for this scope, and are:
#
# * cluster-announce-ip
# * cluster-announce-port
# * cluster-announce-bus-port
#
# Each instruct the node about its address, client port, and cluster message
# bus port. The information is then published in the header of the bus packets
# so that other nodes will be able to correctly map the address of the node
# publishing the information.
#
# If the above options are not used, the normal Redis Cluster auto-detection
# will be used instead.
#
# Note that when remapped, the bus port may not be at the fixed offset of
# clients port + 10000, so you can specify any port and bus-port depending
# on how they get remapped. If the bus-port is not set, a fixed offset of
# 10000 will be used as usually.
#
# Example:
#
# cluster-announce-ip 10.1.1.5
# cluster-announce-port 6379
# cluster-announce-bus-port 6380

################################## SLOW LOG ###################################

# The Redis Slow Log is a system to log queries that exceeded a specified
# execution time. The execution time does not include the I/O operations
# like talking with the client, sending the reply and so forth,
# but just the time needed to actually execute the command (this is the only
# stage of command execution where the thread is blocked and can not serve
# other requests in the meantime).
#
# You can configure the slow log with two parameters: one tells Redis
# what is the execution time, in microseconds, to exceed in order for the
# command to get logged, and the other parameter is the length of the
# slow log. When a new command is logged the oldest one is removed from the
# queue of logged commands.

# The following time is expressed in microseconds, so 1000000 is equivalent
# to one second. Note that a negative number disables the slow log, while
# a value of zero forces the logging of every command.
slowlog-log-slower-than 10000

# There is no limit to this length. Just be aware that it will consume memory.
# You can reclaim memory used by the slow log with SLOWLOG RESET.
slowlog-max-len 128

################################ LATENCY MONITOR ##############################

# The Redis latency monitoring subsystem samples different operations
# at runtime in order to collect data related to possible sources of
# latency of a Redis instance.
#
# Via the LATENCY command this information is available to the user that can
# print graphs and obtain reports.
#
# The system only logs operations that were performed in a time equal or
# greater than the amount of milliseconds specified via the
# latency-monitor-threshold configuration directive. When its value is set
# to zero, the latency monitor is turned off.
#
# By default latency monitoring is disabled since it is mostly not needed
# if you don't have latency issues, and collecting data has a performance
# impact, that while very small, can be measured under big load. Latency
# monitoring can easily be enabled at runtime using the command
# "CONFIG SET latency-monitor-threshold <milliseconds>" if needed.
latency-monitor-threshold 0

############################# EVENT NOTIFICATION ##############################

# Redis can notify Pub/Sub clients about events happening in the key space.
# This feature is documented at http://redis.io/topics/notifications
#
# For instance if keyspace events notification is enabled, and a client
# performs a DEL operation on key "foo" stored in the Database 0, two
# messages will be published via Pub/Sub:
#
# PUBLISH __keyspace@0__:foo del
# PUBLISH __keyevent@0__:del foo
#
# It is possible to select the events that Redis will notify among a set
# of classes. Every class is identified by a single character:
#
#  K     Keyspace events, published with __keyspace@<db>__ prefix.
#  E     Keyevent events, published with __keyevent@<db>__ prefix.
#  g     Generic commands (non-type specific) like DEL, EXPIRE, RENAME, ...
#  $     String commands
#  l     List commands
#  s     Set commands
#  h     Hash commands
#  z     Sorted set commands
#  x     Expired events (events generated every time a key expires)
#  e     Evicted events (events generated when a key is evicted for maxmemory)
#  A     Alias for g$lshzxe, so that the "AKE" string means all the events.
#
#  The "notify-keyspace-events" takes as argument a string that is composed
#  of zero or multiple characters. The empty string means that notifications
#  are disabled.
#
#  Example: to enable list and generic events, from the point of view of the
#           event name, use:
#
#  notify-keyspace-events Elg
#
#  Example 2: to get the stream of the expired keys subscribing to channel
#             name __keyevent@0__:expired use:
#
#  notify-keyspace-events Ex
#
#  By default all notifications are disabled because most users don't need
#  this feature and the feature has some overhead. Note that if you don't
#  specify at least one of K or E, no events will be delivered.
notify-keyspace-events ""

############################### ADVANCED CONFIG ###############################

# Hashes are encoded using a memory efficient data structure when they have a
# small number of entries, and the biggest entry does not exceed a given
# threshold. These thresholds can be configured using the following directives.
hash-max-ziplist-entries 512
hash-max-ziplist-value 64

# Lists are also encoded in a special way to save a lot of space.
# The number of entries allowed per internal list node can be specified
# as a fixed maximum size or a maximum number of elements.
# For a fixed maximum size, use -5 through -1, meaning:
# -5: max size: 64 Kb  <-- not recommended for normal workloads
# -4: max size: 32 Kb  <-- not recommended
# -3: max size: 16 Kb  <-- probably not recommended
# -2: max size: 8 Kb   <-- good
# -1: max size: 4 Kb   <-- good
# Positive numbers mean store up to _exactly_ that number of elements
# per list node.
# The highest performing option is usually -2 (8 Kb size) or -1 (4 Kb size),
# but if your use case is unique, adjust the settings as necessary.
list-max-ziplist-size -2

# Lists may also be compressed.
# Compress depth is the number of quicklist ziplist nodes from *each* side of
# the list to *exclude* from compression.  The head and tail of the list
# are always uncompressed for fast push/pop operations.  Settings are:
# 0: disable all list compression
# 1: depth 1 means "don't start compressing until after 1 node into the list,
#    going from either the head or tail"
#    So: [head]->node->node->...->node->[tail]
#    [head], [tail] will always be uncompressed; inner nodes will compress.
# 2: [head]->[next]->node->node->...->node->[prev]->[tail]
#    2 here means: don't compress head or head->next or tail->prev or tail,
#    but compress all nodes between them.
# 3: [head]->[next]->[next]->node->node->...->node->[prev]->[prev]->[tail]
# etc.
list-compress-depth 0

# Sets have a special encoding in just one case: when a set is composed
# of just strings that happen to be integers in radix 10 in the range
# of 64 bit signed integers.
# The following configuration setting sets the limit in the size of the
# set in order to use this special memory saving encoding.
set-max-intset-entries 512

# Similarly to hashes and lists, sorted sets are also specially encoded in
# order to save a lot of space. This encoding is only used when the length and
# elements of a sorted set are below the following limits:
zset-max-ziplist-entries 128
zset-max-ziplist-value 64

# HyperLogLog sparse representation bytes limit. The limit includes the
# 16 bytes header. When an HyperLogLog using the sparse representation crosses
# this limit, it is converted into the dense representation.
#
# A value greater than 16000 is totally useless, since at that point the
# dense representation is more memory efficient.
#
# The suggested value is ~ 3000 in order to have the benefits of
# the space efficient encoding without slowing down too much PFADD,
# which is O(N) with the sparse encoding. The value can be raised to
# ~ 10000 when CPU is not a concern, but space is, and the data set is
# composed of many HyperLogLogs with cardinality in the 0 - 15000 range.
hll-sparse-max-bytes 3000

# Active rehashing uses 1 millisecond every 100 milliseconds of CPU time in
# order to help rehashing the main Redis hash table (the one mapping top-level
# keys to values). The hash table implementation Redis uses (see dict.c)
# performs a lazy rehashing: the more operation you run into a hash table
# that is rehashing, the more rehashing "steps" are performed, so if the
# server is idle the rehashing is never complete and some more memory is used
# by the hash table.
#
# The default is to use this millisecond 10 times every second in order to
# actively rehash the main dictionaries, freeing memory when possible.
#
# If unsure:
# use "activerehashing no" if you have hard latency requirements and it is
# not a good thing in your environment that Redis can reply from time to time
# to queries with 2 milliseconds delay.
#
# use "activerehashing yes" if you don't have such hard requirements but
# want to free memory asap when possible.
activerehashing yes

# The client output buffer limits can be used to force disconnection of clients
# that are not reading data from the server fast enough for some reason (a
# common reason is that a Pub/Sub client can't consume messages as fast as the
# publisher can produce them).
#
# The limit can be set differently for the three different classes of clients:
#
# normal -> normal clients including MONITOR clients
# slave  -> slave clients
# pubsub -> clients subscribed to at least one pubsub channel or pattern
#
# The syntax of every client-output-buffer-limit directive is the following:
#
# client-output-buffer-limit <class> <hard limit> <soft limit> <soft seconds>
#
# A client is immediately disconnected once the hard limit is reached, or if
# the soft limit is reached and remains reached for the specified number of
# seconds (continuously).
# So for instance if the hard limit is 32 megabytes and the soft limit is
# 16 megabytes / 10 seconds, the client will get disconnected immediately
# if the size of the output buffers reach 32 megabytes, but will also get
# disconnected if the client reaches 16 megabytes and continuously overcomes
# the limit for 10 seconds.
#
# By default normal clients are not limited because they don't receive data
# without asking (in a push way), but just after a request, so only
# asynchronous clients may create a scenario where data is requested faster
# than it can read.
#
# Instead there is a default limit for pubsub and slave clients, since
# subscribers and slaves receive data in a push fashion.
#
# Both the hard or the soft limit can be disabled by setting them to zero.
client-output-buffer-limit normal 0 0 0
client-output-buffer-limit slave 256mb 64mb 60
client-output-buffer-limit pubsub 32mb 8mb 60

# Redis calls an internal function to perform many background tasks, like
# closing connections of clients in timeout, purging expired keys that are
# never requested, and so forth.
#
# Not all tasks are performed with the same frequency, but Redis checks for
# tasks to perform according to the specified "hz" value.
#
# By default "hz" is set to 10. Raising the value will use more CPU when
# Redis is idle, but at the same time will make Redis more responsive when
# there are many keys expiring at the same time, and timeouts may be
# handled with more precision.
#
# The range is between 1 and 500, however a value over 100 is usually not
# a good idea. Most users should use the default of 10 and raise this up to
# 100 only in environments where very low latency is required.
hz 10

# When a child rewrites the AOF file, if the following option is enabled
# the file will be fsync-ed every 32 MB of data generated. This is useful
# in order to commit the file to the disk more incrementally and avoid
# big latency spikes.
aof-rewrite-incremental-fsync yes

# Redis LFU eviction (see maxmemory setting) can be tuned. However it is a good
# idea to start with the default settings and only change them after investigating
# how to improve the performances and how the keys LFU change over time, which
# is possible to inspect via the OBJECT FREQ command.
#
# There are two tunable parameters in the Redis LFU implementation: the
# counter logarithm factor and the counter decay time. It is important to
# understand what the two parameters mean before changing them.
#
# The LFU counter is just 8 bits per key, it's maximum value is 255, so Redis
# uses a probabilistic increment with logarithmic behavior. Given the value
# of the old counter, when a key is accessed, the counter is incremented in
# this way:
#
# 1. A random number R between 0 and 1 is extracted.
# 2. A probability P is calculated as 1/(old_value*lfu_log_factor+1).
# 3. The counter is incremented only if R < P.
#
# The default lfu-log-factor is 10. This is a table of how the frequency
# counter changes with a different number of accesses with different
# logarithmic factors:
#
# +--------+------------+------------+------------+------------+------------+
# | factor | 100 hits   | 1000 hits  | 100K hits  | 1M hits    | 10M hits   |
# +--------+------------+------------+------------+------------+------------+
# | 0      | 104        | 255        | 255        | 255        | 255        |
# +--------+------------+------------+------------+------------+------------+
# | 1      | 18         | 49         | 255        | 255        | 255        |
# +--------+------------+------------+------------+------------+------------+
# | 10     | 10         | 18         | 142        | 255        | 255        |
# +--------+------------+------------+------------+------------+------------+
# | 100    | 8          | 11         | 49         | 143        | 255        |
# +--------+------------+------------+------------+------------+------------+
#
# NOTE: The above table was obtained by running the following commands:
#
#   redis-benchmark -n 1000000 incr foo
#   redis-cli object freq foo
#
# NOTE 2: The counter initial value is 5 in order to give new objects a chance
# to accumulate hits.
#
# The counter decay time is the time, in minutes, that must elapse in order
# for the key counter to be divided by two (or decremented if it has a value
# less <= 10).
#
# The default value for the lfu-decay-time is 1. A Special value of 0 means to
# decay the counter every time it happens to be scanned.
#
# lfu-log-factor 10
# lfu-decay-time 1

########################### ACTIVE DEFRAGMENTATION #######################
#
# WARNING THIS FEATURE IS EXPERIMENTAL. However it was stress tested
# even in production and manually tested by multiple engineers for some
# time.
#
# What is active defragmentation?
# -------------------------------
#
# Active (online) defragmentation allows a Redis server to compact the
# spaces left between small allocations and deallocations of data in memory,
# thus allowing to reclaim back memory.
#
# Fragmentation is a natural process that happens with every allocator (but
# less so with Jemalloc, fortunately) and certain workloads. Normally a server
# restart is needed in order to lower the fragmentation, or at least to flush
# away all the data and create it again. However thanks to this feature
# implemented by Oran Agra for Redis 4.0 this process can happen at runtime
# in an "hot" way, while the server is running.
#
# Basically when the fragmentation is over a certain level (see the
# configuration options below) Redis will start to create new copies of the
# values in contiguous memory regions by exploiting certain specific Jemalloc
# features (in order to understand if an allocation is causing fragmentation
# and to allocate it in a better place), and at the same time, will release the
# old copies of the data. This process, repeated incrementally for all the keys
# will cause the fragmentation to drop back to normal values.
#
# Important things to understand:
#
# 1. This feature is disabled by default, and only works if you compiled Redis
#    to use the copy of Jemalloc we ship with the source code of Redis.
#    This is the default with Linux builds.
#
# 2. You never need to enable this feature if you don't have fragmentation
#    issues.
#
# 3. Once you experience fragmentation, you can enable this feature when
#    needed with the command "CONFIG SET activedefrag yes".
#
# The configuration parameters are able to fine tune the behavior of the
# defragmentation process. If you are not sure about what they mean it is
# a good idea to leave the defaults untouched.

# Enabled active defragmentation
# activedefrag yes

# Minimum amount of fragmentation waste to start active defrag
# active-defrag-ignore-bytes 100mb

# Minimum percentage of fragmentation to start active defrag
# active-defrag-threshold-lower 10

# Maximum percentage of fragmentation at which we use maximum effort
# active-defrag-threshold-upper 100

# Minimal effort for defrag in CPU percentage
# active-defrag-cycle-min 25

# Maximal effort for defrag in CPU percentage
# active-defrag-cycle-max 75

Output from su - gitlab -s /bin/sh -c "cd '/usr/share/webapps/gitlab'; bundle-2.3 exec rake gitlab:env:info RAILS_ENV=production"

System information
System:		
Current User:	gitlab
Using RVM:	no
Ruby Version:	2.3.5p376
Gem Version:	2.5.2.1
Bundler Version:1.15.4
Rake Version:	12.1.0
Redis Version:	4.0.2
Git Version:	2.15.0
Sidekiq Version:5.0.4
Go Version:	unknown

GitLab information
Version:	10.1.4
Revision:	c887c03
Directory:	/usr/share/webapps/gitlab
DB Adapter:	postgresql
URL:		http://localhost
HTTP Clone URL:	http://localhost/some-group/some-project.git
SSH Clone URL:	gitlab@localhost:some-group/some-project.git
Using LDAP:	no
Using Omniauth:	no

GitLab Shell
Version:	5.9.3
Repository storage paths:
- default: 	/var/lib/gitlab/repositories
Hooks:		/usr/share/webapps/gitlab-shell/hooks
Git:		/usr/bin/git

Output from su - gitlab -s /bin/sh -c "cd '/usr/share/webapps/gitlab'; bundle-2.3 exec rake gitlab:check RAILS_ENV=production"

Checking GitLab Shell ...

GitLab Shell version >= 5.9.3 ? ... OK (5.9.3)
Repo base directory exists?
default... yes
Repo storage directories are symlinks?
default... no
Repo paths owned by gitlab:root, or gitlab:gitlab?
default... yes
Repo paths access is drwxrws---?
default... yes
hooks directories in repos are links: ... can't check, you have no projects
Running /usr/share/webapps/gitlab-shell/bin/check
Check GitLab API access: OK
Redis available via internal API: OK

Access to /var/lib/gitlab/.ssh/authorized_keys: OK
gitlab-shell self-check successful

Checking GitLab Shell ... Finished

Checking Sidekiq ...

Running? ... yes
Number of Sidekiq processes ... 1

Checking Sidekiq ... Finished

Reply by email is disabled in config/gitlab.yml
Checking LDAP ...

LDAP is disabled in config/gitlab.yml

Checking LDAP ... Finished

Checking GitLab ...

Git configured correctly? ... yes
Database config exists? ... yes
All migrations up? ... Exception: No such file or directory - bundle
Database contains orphaned GroupMembers? ... no
GitLab config exists? ... yes
GitLab config up to date? ... yes
Log directory writable? ... yes
Tmp directory writable? ... yes
Uploads directory exists? ... yes
Uploads directory has correct permissions? ... yes
Uploads directory tmp has correct permissions? ... skipped (no tmp uploads folder yet)
Init script exists? ... no
  Try fixing it:
  Install the init script
  For more information see:
  doc/install/installation.md in section "Install Init Script"
  Please fix the error above and rerun the checks.
Init script up-to-date? ... can't check because of previous errors
Projects have namespace: ... can't check, you have no projects
Redis version >= 2.8.0? ... yes
Ruby version >= 2.3.3 ? ... no
  Try fixing it:
  Update your ruby to a version >= 2.3.3 from Unknown
  Please fix the error above and rerun the checks.
Git version >= 2.7.3 ? ... yes (2.15.0)
Git user has default SSH configuration? ... yes
Active users: ... 1

Checking GitLab ... Finished

Running su - gitlab -s /bin/sh -c "cd '/usr/share/webapps/gitlab'; bundle-2.3 exec rake gitlab:setup RAILS_ENV=production" succeeds without errors.

GitLab is started with systemctl start gitlab-unicorn gitlab-sidekiq gitlab-workhorse gitlab-gitaly.


Searching through google indicates that it could be in relation with using a relative url, but as far as I see I am not using a relative url.


If I forgot anything or any more information is needed I will gladly provide them as fast as possible.


Thanks in advance and best regards,

dNhax.

Mod note: the attached image was indeed too big. Please see the Code of Conduct and only post thumbnails. -- WorMzy

Last edited by dNhax (2017-11-26 17:57:22)

Offline

#2 2017-11-26 18:01:16

dNhax
Member
Registered: 2017-11-23
Posts: 3

Re: [SOLVED] GitLab does not load assets

So, I solved the issue.

In the file /usr/share/webapps/gitlab/config/environments/production.rb I changed

# Disable Rails's static asset server (Apache or nginx will already do this)
config.serve_static_files = false

to

# Disable Rails's static asset server (Apache or nginx will already do this)
config.serve_static_files = true

I hope this solution will help others who might have the same problem.


Best regards,

dNhax.

Last edited by dNhax (2017-11-26 18:01:38)

Offline

#3 2018-08-01 06:17:34

ArchBoxHero
Member
From: New Jersey
Registered: 2017-09-25
Posts: 10

Re: [SOLVED] GitLab does not load assets

Just want to say thanks dNhax. Saved me some time. Nice job.


"Ms. Pacman" should be the cleanup manager....

Offline

#4 2018-08-29 15:13:40

TheGoliath
Member
From: Germany
Registered: 2017-03-24
Posts: 51
Website

Re: [SOLVED] GitLab does not load assets

Also so wanted to say thank you.
Worked perfectly!

Offline

Board footer

Powered by FluxBB