Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

webkit-based browsers don't work #304

Closed
isabel-amon opened this issue Jan 25, 2019 · 8 comments
Closed

webkit-based browsers don't work #304

isabel-amon opened this issue Jan 25, 2019 · 8 comments
Assignees
Labels
bug Something isn't working prio: critical This issue is blocking our progress and needs to be resolved asap. Review Required

Comments

@isabel-amon
Copy link

isabel-amon commented Jan 25, 2019

Summary

In chrome and safari, oAuth logout doesn't work, as well as starting and stopping vms and the display of vms. Also, you can't change roles of users.

I'm not sure if more is broken, but please try and get behind the issue.
Maybe we can do a check together.

@isabel-amon isabel-amon added bug Something isn't working team login labels Jan 25, 2019
@isabel-amon isabel-amon added the prio: critical This issue is blocking our progress and needs to be resolved asap. label Jan 25, 2019
@lassesteffen
Copy link
Contributor

For the logout: https://stackoverflow.com/questions/7465919/rails-link-to-method-geting-when-it-should-delete
Maybe we failed to correctly include jquery?

@marcfreiheit
Copy link
Contributor

I've investigated the issue a bit. @lassesteffen suggestion by requiring the .js sounded good, but this was already done. That can't be the problem. I even tried bringing the javascript files into correct order, just in case.

Loading of js files look good. Rails even recognises the request as a DELETE request. Then, after the request was handled successfully, a redirect is created. That looks good, as well. The session cookie is refreshed. But there seems to be an error, or at least the refresh is not valid.

production log files

I, [2019-02-05T08:22:11.405664 #22994]  INFO -- : [1bbfef3d-37c5-4ac3-b5e9-0e4a61cbc96b] Started DELETE "/users/sign_out" for 127.0.0.1 at 2019-02-05 08:22:11 +0000
I, [2019-02-05T08:22:11.407130 #22994]  INFO -- : [1bbfef3d-37c5-4ac3-b5e9-0e4a61cbc96b] Processing by Devise::SessionsController#destroy as HTML
I, [2019-02-05T08:22:11.407202 #22994]  INFO -- : [1bbfef3d-37c5-4ac3-b5e9-0e4a61cbc96b]   Parameters: {"authenticity_token"=>"UdsAbRjwkN2m4m7Lp7Htm9oKlKB4EKl3zBlTcET/KQz8El8AqXGBHf/FvL3m51MiHhVlpclKbP2qcweE70LxDQ=="}
D, [2019-02-05T08:22:11.409539 #22994] DEBUG -- : [1bbfef3d-37c5-4ac3-b5e9-0e4a61cbc96b]   User Load (0.6ms)  SELECT  "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2  [["id", 19], ["LIMIT", 1]]
W, [2019-02-05T08:22:11.410275 #22994]  WARN -- : [1bbfef3d-37c5-4ac3-b5e9-0e4a61cbc96b] HTTP Origin header (https://hart-dev.epic-hpi.de) didn't match request.base_url (http://hart-dev.epic-hpi.de)
D, [2019-02-05T08:22:11.410891 #22994] DEBUG -- : [1bbfef3d-37c5-4ac3-b5e9-0e4a61cbc96b]    (0.2ms)  BEGIN
D, [2019-02-05T08:22:11.412243 #22994] DEBUG -- : [1bbfef3d-37c5-4ac3-b5e9-0e4a61cbc96b]    (0.1ms)  COMMIT
I, [2019-02-05T08:22:11.413071 #22994]  INFO -- : [1bbfef3d-37c5-4ac3-b5e9-0e4a61cbc96b] Redirected to http://hart-dev.epic-hpi.de/
I, [2019-02-05T08:22:11.413281 #22994]  INFO -- : [1bbfef3d-37c5-4ac3-b5e9-0e4a61cbc96b] Completed 302 Found in 6ms (ActiveRecord: 0.9ms)
I, [2019-02-05T08:22:11.495465 #22994]  INFO -- : [e3443bba-218b-4fea-9c9a-911163f77003] Started GET "/" for 127.0.0.1 at 2019-02-05 08:22:11 +0000
I, [2019-02-05T08:22:11.496659 #22994]  INFO -- : [e3443bba-218b-4fea-9c9a-911163f77003] Processing by LandingController#index as HTML
D, [2019-02-05T08:22:11.498716 #22994] DEBUG -- : [e3443bba-218b-4fea-9c9a-911163f77003]   User Load (0.5ms)  SELECT  "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2  [["id", 19], ["LIMIT", 1]]
I, [2019-02-05T08:22:11.499466 #22994]  INFO -- : [e3443bba-218b-4fea-9c9a-911163f77003] Redirected to http://hart-dev.epic-hpi.de/dashboard
I, [2019-02-05T08:22:11.499664 #22994]  INFO -- : [e3443bba-218b-4fea-9c9a-911163f77003] Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
I, [2019-02-05T08:22:11.550717 #22994]  INFO -- : [61fd1a2d-3eff-45e5-82c3-3acc9ae1452a] Started GET "/dashboard" for 127.0.0.1 at 2019-02-05 08:22:11 +0000
I, [2019-02-05T08:22:11.551491 #22994]  INFO -- : [61fd1a2d-3eff-45e5-82c3-3acc9ae1452a] Processing by DashboardController#index as HTML
D, [2019-02-05T08:22:11.552916 #22994] DEBUG -- : [61fd1a2d-3eff-45e5-82c3-3acc9ae1452a]   User Load (0.3ms)  SELECT  "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2  [["id", 19], ["LIMIT", 1]]
D, [2019-02-05T08:22:11.918616 #22994] DEBUG -- : [61fd1a2d-3eff-45e5-82c3-3acc9ae1452a]   Notification Load (2.6ms)  SELECT "notifications".* FROM "notifications" WHERE "notifications"."user_id" = $1 ORDER BY "notifications"."read" ASC, "notifications"."created_at" DESC  [["user_id", 19]]
I, [2019-02-05T08:22:11.923734 #22994]  INFO -- : [61fd1a2d-3eff-45e5-82c3-3acc9ae1452a]   Rendering dashboard/index.html.erb within layouts/application
I, [2019-02-05T08:22:12.518531 #22994]  INFO -- : [61fd1a2d-3eff-45e5-82c3-3acc9ae1452a]   Rendered notifications/_list.html.erb (0.1ms)
I, [2019-02-05T08:22:12.518716 #22994]  INFO -- : [61fd1a2d-3eff-45e5-82c3-3acc9ae1452a]   Rendered dashboard/index.html.erb within layouts/application (594.9ms)
I, [2019-02-05T08:22:12.521169 #22994]  INFO -- : [61fd1a2d-3eff-45e5-82c3-3acc9ae1452a]   Rendered application/_navbar.html.erb (1.0ms)
I, [2019-02-05T08:22:12.521522 #22994]  INFO -- : [61fd1a2d-3eff-45e5-82c3-3acc9ae1452a]   Rendered layouts/_flash_message.html.erb (0.2ms)
I, [2019-02-05T08:22:12.521912 #22994]  INFO -- : [61fd1a2d-3eff-45e5-82c3-3acc9ae1452a]   Rendered application/_footer.html.erb (0.1ms)
I, [2019-02-05T08:22:12.522604 #22994]  INFO -- : [61fd1a2d-3eff-45e5-82c3-3acc9ae1452a] Completed 200 OK in 971ms (Views: 600.4ms | ActiveRecord: 2.9ms)
I, [2019-02-05T08:22:12.751473 #22994]  INFO -- : [e407d78f-dc9e-4c7d-a4f9-dab37efae5b9] Started GET "/notifications/has_any" for 127.0.0.1 at 2019-02-05 08:22:12 +0000
I, [2019-02-05T08:22:12.753589 #22994]  INFO -- : [e407d78f-dc9e-4c7d-a4f9-dab37efae5b9] Processing by NotificationsController#any? as */*
D, [2019-02-05T08:22:12.757543 #22994] DEBUG -- : [e407d78f-dc9e-4c7d-a4f9-dab37efae5b9]   User Load (0.6ms)  SELECT  "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2  [["id", 19], ["LIMIT", 1]]
D, [2019-02-05T08:22:12.759712 #22994] DEBUG -- : [e407d78f-dc9e-4c7d-a4f9-dab37efae5b9]   Notification Exists (0.3ms)  SELECT  1 AS one FROM "notifications" WHERE "notifications"."user_id" = $1 AND "notifications"."read" = $2 LIMIT $3  [["user_id", 19], ["read", false], ["LIMIT", 1]]
I, [2019-02-05T08:22:12.760376 #22994]  INFO -- : [e407d78f-dc9e-4c7d-a4f9-dab37efae5b9] Completed 200 OK in 7ms (Views: 0.3ms | ActiveRecord: 1.0ms)

request headers

POST /users/sign_out HTTP/1.1
Host: hart-dev.epic-hpi.de
Connection: keep-alive
Content-Length: 128
Cache-Control: max-age=0
Origin: https://hart-dev.epic-hpi.de
Upgrade-Insecure-Requests: 1
Content-Type: application/x-www-form-urlencoded
User-Agent: Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Mobile Safari/537.36
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8
Referer: https://hart-dev.epic-hpi.de/dashboard
Accept-Encoding: gzip, deflate, br
Accept-Language: en-GB,en-US;q=0.9,en;q=0.8,und;q=0.7,de;q=0.6
Cookie: _vm_portal_session=i5ZYku%2Ban0O4dpKPpgOJHm22sUTZFVgcoZX7ffMlv2qyYtvp6cVCXVxViKU4UnFfOLbpzQsIRYC8wDDFYEVbFWC7484qrcPqb3lWSz9StnmdBPUpjwUmL3ZQJZllO0pFtRJA8SSjENTsOjhfTqNYKFPUizwo2antUB2udeV%2BM00FWRnrcvGuF5NeVms2NFGSYthIuVwssbAaEwYBjUMn5yDn5jnkN0JABEcMHEUXHghrlha5YrivIs2UqTYgkHx7gIVtuKdRo%2BIVrA%3D%3D--gQyFTrgRvAiDFLaY--5YRbMpw0uBcr9sn5VlOFfQ%3D%3D

response headers

HTTP/1.1 302 Found
Date: Tue, 05 Feb 2019 08:27:12 GMT
Server: nginx/1.14.0 (Ubuntu)
Content-Type: text/html; charset=utf-8
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
X-Content-Type-Options: nosniff
X-Download-Options: noopen
X-Permitted-Cross-Domain-Policies: none
Referrer-Policy: strict-origin-when-cross-origin
Cache-Control: no-cache, no-store
Location: http://hart-dev.epic-hpi.de/
X-Request-Id: 29121bbf-3485-4561-a0b9-1d84f672915d
X-Runtime: 0.008955
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Transfer-Encoding: chunked

@marcfreiheit
Copy link
Contributor

Maybe order matters

@marcfreiheit
Copy link
Contributor

I think it could be related to devise not properly terminating cookie sessions.

@marcfreiheit
Copy link
Contributor

My current suggestion would be to try another session store beside cookies like the ActiveRecord Session Store. But not even sure if that will fix the issue.

@mlichtblau
Copy link
Contributor

So currently we are pretty sure it's due to the https scheme.
See HTTP Origin header (https://hart-dev.epic-hpi.de) didn't match request.base_url (http://hart-dev.epic-hpi.de)

@marcfreiheit
Copy link
Contributor

We've set it on both dev and master. Could you check whether the issue is resolved?

bdaase added a commit that referenced this issue Feb 6, 2019
* 100/vertical/git puppet scripts (#234)

* Add puppet script functionality to request index

* Fix name generation, create puppet scripts in tmp

* Undo file creation, fix modal ids

* Change method names.

* Add puppet name script

* Add Git gem

* Add logic to push created puppet script to git

* Add button and route to push puppetscripts to git and fix code

* Use environment variables for github repository and user

* Add simple test for push_to_git route

* Extract logic to request model

* Add testing environment variables to example.yml and travis.yml

* Add notifications for different git actions

* Change travis.yml to not trigger multiple jobs

* Add more tests

* Add puppet_name_file to git push

* Apply Rubocop autofix

* Refactor request model

* Refactor tests

* Fix tests

* Fix tests

* Add tests for puppet script creation.

* Fix rubocop issues

* Fix tests

* Fix controller linting issues

* Extract request model logic into lib

* Unfix controller linting

* Change puppetscript and fix bugs

* Update tests to puppetscript change

* Uncomment git rescue

* Minor fixes to the server and request input fields (#319)

* Minor fixes

* Removed some dollar signs in puppet script (#325)

* Create Puppetscript init (#324)

* Change puppetscript init when a user is created

* Fix tests refactor git stub and add simple test

* Refactor githelper and tests

* Rubocop auto-correct

* 320/scaffold/Lost information when request is incomplete (#329)

* Should close #320

* Regression tests

* small refactoring

* Small refactoring

* 295/login/make-manage-visible-for-admins (#302)

* Make all manage actions accessible for admins

* make rubocop happy

* fix last specs

* 154/scaffold/email notifications (#338)

* working notifications, need to change seed etc. back when testing is over

* users can enable/disable email notifications, needs some beautyfication

* remove button and submit automatically, still need to remove some testing code

* autocorrect

* remove all test-code, only missing openID support now

* change comment

* add default false, not tested

* This should fix the mailer issues (#340)

* Add os to vm config edit page (#339)

* Add os to vm config edit page and make vm names to lower case when created

* Fix tests

* Make codefactor happy

* Fix some more tests

* Add vm comment to vm edit config page

* Do some refactoring

* Fix some CodeFactor

* update requests list (#330)

* show vm power buttons to admin, fix anchor linking #317 #319

Co-authored-by: tomschw <[email protected]>

* small layout fixes

Co-authored-by: tomschw <[email protected]>

* apply new theme to request list #309

Co-authored-by: tomschw <[email protected]>

* show pending and resolved requests seperately

* remove unnecessary line

* show number of pending and resolved requests

* move anchor reload fix to own file

* fix VM HDD usage

* update failing test

* fix VM CPU usage

* use yet another API value for VM max CPU speed

* remove VM deletion

* remove horizontal line in VM dropdown

* remove another unnecessary horizontal line in dropdown

* 326/scaffold/sudo users not stored (#331)

* Merge dev

* Start adding tests

* Refactor assign_sudo_users

* Should close #326

* Make CodeFactor happy

* Refactor prepare_params

* Small UI changes

* fix puppet script icon (#341)

* use different unicode char for puppet script button

* add icon shadow on hover

* hosts routes and button show only if user is admin (#335)

* add condition for hosts button to show only if user is admin, add restriction to hosts controller to be used by admins only

* 154/scaffold/beautify email notifications (#344)

* change formatting

* fix everything

* brauntoms pleasure

* Add end to end testing with capybara (#334)

* Add end to end test for request process

* Add automatic push when accepting requests (#346)

* Add automatic push when accepting requests

* Remove blank lines

* Add environment variables. (#347)

* Save ram and storage of a request in gb internally (#342)

* Save ram and storage of a request in gb internally

* Fix CodeFactor

* Fix Tests

* Fix same Tests, hopefully

* Forgot Gemfile

* Add some tests for request templates and convert gb to mibi and kibi for vsphere

* Rename comments

* Modify migration

* CodeFactor ...

* Modify migration again

* Refactor os on vm edit config page

* Remove catch in push to git.

* Revert "Remove catch in push to git."

This reverts commit 11f80f4.

* Re-add the Error so Errbit can log it.

* 148/scaffold/Complete VM to responsable relation (#284)

* Associate requests with responsible users

* Refactorings

* Test responsible user access in VSphere::VirtualMachine

* try to fix some issues of CodeFactor

* Refactoring

* Fix tests

* Add responsible users to VMConfigs

* More tests

* Fix potential issue, if a vm is called requests or configs

* Add tests for vm creation

* Responsible users are now also stored in the VM config

* responsible users are now assigned to virtual machines

* Add responsible to notificaiton

* Work on moving into correct subfolder

* VM now moves into the correct subfolder whenever its created, archived, revived or pending

* Move responsibilty for VM creation from folder to request

* Whoops

* Add test for move_into_correct_subfolder

* Migrate

* Fix end to end testing

* Fix some CodeFactor issues

* Remove unneccessary method

* Comment routes to be clearer why the change is neccessary

* Make CodeFactor a bit happy

* Fix in skipped test

* pleasure bjoern (#350)

* Update notify_email.html.erb

* Change request name regex (#352)

* Change request name regex

* Fix tests and remove uppercase letters from regEx

* Fix some more tests

* remove remnants of old vsphere api from hosts

* send notifications after various events (#343)

* send notification when role of an user is changed

* send notifications when new project is created

* fix tests

* add link to user page when role is changed

* try to fix CodeFactor

* second try to fix CodeFactor

* third try to fix CodeFactor

* third try to fix CodeFactor

* fifth try to fix CodeFactor

* sixth try to fix CodeFactor

* seventh try to fix CodeFactor

* consider review comments

* Fix buggy buttons on all requests page (#358)

* Add search bar to users page (#355)

* Add search bar to users page

* Add feature tests

* Fix double quoted strings

* add confirmation prompt before archiving and confiriming archiving (#356)

* Fix/add users to vm pages (#357)

* Add Responsible users to index page

* Fix vms routes

* Add users to show page

* Add links to users

* Readd rescue from Git Errors

* Add error message when git fails to push

* This should fix the tests

* Fix more tests

* Fix last tests

* Fix bug that caused the sudo users to not be udpated correctly

* Address requested changes

* Remove warning message, as its not working

* Remove links

* Restrict original user login to development mode

* Remove original sign in tests

* 340/scaffold/incorrect hdd stats (#361)

* Fix the issue

* Small refactoring

* This should fix the tests

* removed all user related data from seed

* Sort users alphabetically. (#363)

* Small bugfix

* Extend view

* Add test

* 304 - Tackles the webkit-issue by adding another POST-based route for logout (#365)

* Add a POST-based route for log out instead of DELETE-based

* Fix test to check against newly added route

* show VM DNS on detail page #348 (#364)

Co-authored-by: tomschw <[email protected]>

* Add logging for git actions

* Revert changes made to try to fix 304 webkit issue

* Just check if order of requiring js files is important

* Revert related test as well #304

* Remove scope created by first_or_create for User.all

* Fix and handle error with too many resources bug (#337)

fix and handle error with to many resources bug #308

* Add jquery js files at the top of application.js #304

* 238/vertical/import-update-puppet-scripts (#267)

* Add failing tests for puppet file parser [ci skip]

* Adapt puppet_helper tests

* Implement parsing of users and admins from puppet script

* Refactor tests to match rubocop

* Fix rubucop issues for app/helpers/puppet_parser_helper.rb

* Rework api function to get users

* Giving up on writing decent tests

* Fix typo in app/helpers/puppet_parser_helper.rb

* Skip tests that are written for old user management for now

* Repository should now be pulled before accessing [ci skip]

* Add setter for VM user management, revert repo handling

- Setters change the puppet file
- Git.open does not work at the moment

* Fix handling yield blocks

* [wip] merge [ci skip]

* Fix merge´

* [skip ci] Enable mocking of VM user association
Reenable tests

* [wip][ci skip] Add mock to associate user with vms

* [ci skip] Finish adding user connecting mocks

* Finishing up tests

* Rework dashboard test to work with user and vm connection

* Fix bug in getting all vms associated to a user

* [wip][ci skip] still merging

* Fix dashboard test

* Refactoring and rubocop

* Revert _list.html.erb

* debugging puppet script repo interaction #238

* mocking away User.update_repository #238

* Fix puppet parser helper tests

* Fix request spec

* Fix user spec

* Fixes tests and adheres to style guidelines

* Adhere to more style guidelines

* Fix typo

* fix notifications (#359)

* add project name in notification of project creation

* archive notificationwill be sent in 3 days

* fix some CodeFactor issues

* Fix typo

* Pull git repo instead of always deleting it (#369)

* Pull git repo instead of always deleting it

* Adhere to style guidelines

* Fix typo in git_helper.rb

* 237/vertical/Edit vm information (#281)

* Add failing tests for puppet file parser [ci skip]

* Adapt puppet_helper tests

* Implement parsing of users and admins from puppet script

* failing test for edit button

* adding "edit vm information" button, "edit" controller action and view #237

* view test for edit vm information page #237

* experimenting with vSphere API and User selecting on the edit page #237

* Refactor tests to match rubocop

* Fix rubucop issues for app/helpers/puppet_parser_helper.rb

* edit button in manage dropdown #237

* fixing edit tests and cleaning experimental html #237

* sudoers and non sudoers, description #237

* wip: saving the edits #237

* how the controller might should look like #237

* trying to formulate tests for changing a requests users lists #237

* Rework api function to get users

* Giving up on writing decent tests

* Fix typo in app/helpers/puppet_parser_helper.rb

* Skip tests that are written for old user management for now

* fixing view test for vms/:id/edit page #237

* change sudo users working 🎉 #237

* fixing some codefactor problems #237

* changing non-sudo users working 🎉 #237

* trying to see it in browser, too #237

* fixing small stuff #237

* fixing tests #237

* Repository should now be pulled before accessing [ci skip]

* fixing more small stuff #237

* fixing tests #237

* deleting unneccessary code #237

* reworking edit page and controller, ensuring config and description on vm creation

* fixing code style, fixing tests, migrating to config to take description #237

* correcting merge #237

* correcting merge 2/2 #237

* fixing tests #237

* Add setter for VM user management, revert repo handling

- Setters change the puppet file
- Git.open does not work at the moment

* Fix handling yield blocks

* removing request dependencies on the edit page and adding a test #237

* adding tests for notifying users with changed status regarding a VM edit #237

* running rubocop --auto-correct #237

* [wip] merge [ci skip]

* Fix merge´

* leading edit form to the right controller action #237

* removing empty first param on update #237

* [skip ci] Enable mocking of VM user association
Reenable tests

* [wip][ci skip] Add mock to associate user with vms

* [ci skip] Finish adding user connecting mocks

* Finishing up tests

* Rework dashboard test to work with user and vm connection

* Fix bug in getting all vms associated to a user

* [wip][ci skip] still merging

* Fix dashboard test

* Refactoring and rubocop

* Revert _list.html.erb

* debugging puppet script repo interaction #238

* mocking away User.update_repository #238

* edit WORKING when tested manually, notifications still defect #237

* Update virtual_machine.rb

* adding controller test #237

* cleanup with rubocop auto-correct and fixing typo #237

* cleanup #237

* cleanup #237

* cleanup #237

* moving vm mock into vsphere_api_mocker #237

* fixing typo #237

* reverting changes in mocker #237

* 259/vertical/request page refactoring (#367)

* Design requests page based on mockup.

* Add template-filled values.

* Save project with request.

* Add editing of port fowarding.

* Add texts to request form.

* Fix checkbox.

* Remove breakpoints.

* Fix resizing for select2 bootstrap theme.

* Fix request factory.

* Use factories in request tests.

* Update end-to-end tests.

* Fix most request controller tests.

* Fix remaining request controller tests.

* Make codefactor happy.

* Fix git errors (#371)

* Fix git errors

* Remove redundant begin block

* Repair find_or_create_by and change puppetfile path

* change callback set_user_id to before_create

* Moved Puppetscript methods to lib

* Fix: Speed up vms page loading time (#373)

* Fix git errors

* Remove redundant begin block

* Repair find_or_create_by and change puppetfile path

* change callback set_user_id to before_create

* Moved Puppetscript methods to lib

* Speed up dashboard loading times

* Update index.html.erb

* Fix/missing sudo users on create (#374)

* Fix the bug

* Refactoring

* Template selection now also works with keyboard input

* Don't show sudo users in the user field

* Fix error when creating a VM without correct git setup
includes refactorings

* Fix test

* Make CodeFactor happy
@bdaase
Copy link
Contributor

bdaase commented Feb 6, 2019

Thank you, it now works on Dev and Master!

@bdaase bdaase closed this as completed Feb 6, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working prio: critical This issue is blocking our progress and needs to be resolved asap. Review Required
Projects
None yet
Development

No branches or pull requests

5 participants