repo
stringlengths
7
67
org
stringlengths
2
32
issue_id
int64
780k
941M
issue_number
int64
1
134k
pull_request
dict
events
list
user_count
int64
1
77
event_count
int64
1
192
text_size
int64
0
329k
bot_issue
bool
1 class
modified_by_bot
bool
2 classes
text_size_no_bots
int64
0
279k
modified_usernames
bool
2 classes
tj/commander.js
null
665,534,304
1,312
{ "number": 1312, "repo": "commander.js", "user_login": "tj" }
[ { "action": "opened", "author": "michga", "comment_id": null, "datetime": 1595661392000, "masked_author": "username_0", "text": "# Pull Request\r\n\r\n## Problem\r\nI'm proposing a way to remove the use of `// eslint-disable-next-line jest/no-test-callback` in one of the tests.\r\n\r\n## Solution\r\n\r\nWe can use a Promise to remove the use of the callback.\r\nIf `resolve` isn't called for some reason, the test will fail after 5 seconds (timeout).\r\n\r\n## ChangeLog", "title": "tests: remove eslint-disable jest/no-test-callback", "type": "issue" }, { "action": "created", "author": "shadowspawn", "comment_id": 682326862, "datetime": 1598591110000, "masked_author": "username_1", "text": "Released in Commander v6.1\r\nhttps://github.com/tj/commander.js/releases/tag/v6.1.0", "title": null, "type": "comment" } ]
2
2
405
false
false
405
false
iimachines/Maya2glTF
iimachines
664,993,347
133
null
[ { "action": "opened", "author": "1fth3n3ls3", "comment_id": null, "datetime": 1595578091000, "masked_author": "username_0", "text": "When I export a maya scene i obtain several files I don't know if there is implemented somewhere in the exporter to obtain a unique Glb file where all the info is packed.", "title": "Glb file format", "type": "issue" }, { "action": "created", "author": "Ziriax", "comment_id": 663405665, "datetime": 1595578922000, "masked_author": "username_1", "text": "Can you try passing the `-glb` flag in the \"extra flags\" box of the UI?", "title": null, "type": "comment" }, { "action": "created", "author": "1fth3n3ls3", "comment_id": 663415227, "datetime": 1595580237000, "masked_author": "username_0", "text": "Just perfect! It works!", "title": null, "type": "comment" }, { "action": "closed", "author": "1fth3n3ls3", "comment_id": null, "datetime": 1595580238000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
2
4
264
false
false
264
false
keras-team/autokeras
keras-team
462,099,451
686
{ "number": 686, "repo": "autokeras", "user_login": "keras-team" }
[ { "action": "opened", "author": "jhfjhfj1", "comment_id": null, "datetime": 1561737045000, "masked_author": "username_0", "text": "<!--This pull request resolves #ISSUE_NUMBER. Also give a brief\r\ndescription/summary of the pull request here -->\r\n### Which issue(s) does this Pull Request fix?\r\n\r\n<!-- The pull request is in progress.\r\nOR\r\nThe pull request is ready to be merged. \r\n(is it in progress or ready to be merged?) -->\r\n\r\n### Pull Request Status \r\n\r\n\r\n<!-- Any more details/comments on the pull request,\r\ndetailed description of PR goes here -->\r\n### Details of the Pull Request", "title": "Detail Changes for Blocks", "type": "issue" } ]
2
20
11,213
false
true
456
false
symfony/symfony
symfony
617,731,063
36,812
null
[ { "action": "opened", "author": "yyaremenko", "comment_id": null, "datetime": 1589401470000, "masked_author": "username_0", "text": "4. Create a controller, submit the form described above with data\r\n`['title' => '']`\r\n\r\n**Expectation:**\r\nForm is invalid and has a proper error.\r\n\r\n**Reality:**\r\nThe form is valid.\r\n\r\n**The Reason** \r\nCurrently, the code in **LengthValidator** only has the following lines mentioning **allowEmptyString**:\r\n\r\n`\r\n if (null !== $constraint->min && null === $constraint->allowEmptyString) {\r\n @trigger_error(sprintf('Using the \"%s\" constraint with the \"min\" option without setting the \"allowEmptyString\" one is deprecated and defaults to true. In 5.0, it will become optional and default to false.', Length::class), E_USER_DEPRECATED);\r\n }\r\n\r\n if (null === $value || ('' === $value && ($constraint->allowEmptyString ?? true))) {\r\n return;\r\n }\r\n`\r\nThe first block only triggers error if 'min' option is provided. In my example above 'min' is not provided.\r\n\r\nThe second block inner part (return) is not reached as well, because\r\n`null === $value` evaluates to `false`\r\n`('' === $value && ($constraint->allowEmptyString ?? true)))`\r\nevaluates to `false`:\r\n1) `'' === $value` evaluates to `true`\r\n2) `$constraint->allowEmptyString ?? true` evaluates to `false`\r\n3) `true && false` evaluates to `false`\r\n\r\nFurther down the code, **allowEmptyString** is never checked. Only **charset**, **min** and **max** validations are checked.\r\n\r\n**Possible Solution** \r\nWrite code which validates if string is not empty if **allowEmptyString** is false.\r\n**Also, write tests.**", "title": "[Validator] LengthValidator: allowEmptyString option set to false allows empty strings", "type": "issue" }, { "action": "created", "author": "xabbuh", "comment_id": 628372273, "datetime": 1589428810000, "masked_author": "username_1", "text": "I think this was done on purpose (see https://github.com/symfony/symfony/pull/31528#issuecomment-493498538). If you don't want to allow empty strings, it's expected to set the `min` option to `1`.", "title": null, "type": "comment" }, { "action": "created", "author": "yyaremenko", "comment_id": 628464757, "datetime": 1589443256000, "masked_author": "username_0", "text": "I believe it is illogical and confusing to have ```allowEmptyString```, option which can only work in pair with ```min``` option, but not to have an error thrown when ```allowEmptyString``` is used without ```min``` option.\r\nAlso, nothing about the dependence (```allowEmptyString only works when min is given```) is said in the documentation. I would propose one of the following solutions:\r\n\r\n1. Either fix the code so that ```allowEmptyString``` option could work as a stand-alone option.\r\n2. Or, fix the code so that an error is thrown when ```allowEmptyString``` is used without ```min``` option, and also update the documentation correspondingly.", "title": null, "type": "comment" }, { "action": "created", "author": "yyaremenko", "comment_id": 628466800, "datetime": 1589443463000, "masked_author": "username_0", "text": "Otherwise, you end up in the current situation: you provide a constraint option, and that option is just silently ignored by the validation, and you don't have any idea why.", "title": null, "type": "comment" }, { "action": "created", "author": "yyaremenko", "comment_id": 628484596, "datetime": 1589445426000, "masked_author": "username_0", "text": "Also, Christian, could you please give me a hint where can I see the tests for currently available validators? I can't find any, maybe I'm missing a thing, maybe they are in some non-master branch or something.", "title": null, "type": "comment" }, { "action": "created", "author": "xabbuh", "comment_id": 629086447, "datetime": 1589528840000, "masked_author": "username_1", "text": "I submitted a documentation PR to clarify the behaviour: symfony/symfony-docs#13668", "title": null, "type": "comment" }, { "action": "created", "author": "xabbuh", "comment_id": 629089541, "datetime": 1589529271000, "masked_author": "username_1", "text": "@username_0 By the way, you can find the tests here: https://github.com/symfony/symfony/tree/master/src/Symfony/Component/Validator/Tests/Constraints", "title": null, "type": "comment" }, { "action": "created", "author": "xabbuh", "comment_id": 629107575, "datetime": 1589531641000, "masked_author": "username_1", "text": "see also #36818", "title": null, "type": "comment" }, { "action": "created", "author": "yyaremenko", "comment_id": 629115643, "datetime": 1589532641000, "masked_author": "username_0", "text": "@username_1 thank you so much!\r\nCould you also give a comment on the second issue (an empty string being converted to null and thus not handled properly by the LengthValidator)? The problem I encounter right now is that I use the Form component to validate incoming JSON (unserialized to array) data (I write a JSON API), and as I write a test which sends an empty string for a field, which has Length constraint with **min = 3, max = 10 and allowEmptyString = false**, the test passes (but it must fail, as the string is empty). The test only fails when I add NotBlank() constraint - but this is, again, illogical, as the Length constraint with the config I described must not allow empty strings.", "title": null, "type": "comment" }, { "action": "created", "author": "xabbuh", "comment_id": 629120348, "datetime": 1589533194000, "masked_author": "username_1", "text": "Did you set the `empty_data` option to the empty string?", "title": null, "type": "comment" }, { "action": "created", "author": "yyaremenko", "comment_id": 629162926, "datetime": 1589538963000, "masked_author": "username_0", "text": "No, I did not. This is not the solution of the problem.\r\n\r\nThe question here is that the Length validator does not work properly out of the box. If I set a Length constraint with the parameters I described earlier, I expect to get an error whenever I submit an empty string.\r\n\r\nLike, if I say '**do not allow an empty string**' I expect a validator to return an **error when I submit an empty string**. I can't imagine anything more obvious than that.\r\n\r\nIf, in addition to the configuration described earlier, I also have to explicitly set **empty_data** option to an empty string - this means the validator is corrupt. Adding an 'external' option to make validator work properly is a workaround, not a fix.\r\n\r\nIf you can't / don't want to fix this - at least this is expected to be described in the documentation, like 'allowEmptyString only works with min parameter and if empty_data is set to an empty string'.", "title": null, "type": "comment" }, { "action": "created", "author": "xabbuh", "comment_id": 629165282, "datetime": 1589539318000, "masked_author": "username_1", "text": "This is not related to the validator, but to how the Form component works. If you use the validator without the Form component (e.g. when using it in an API context where the input for the validator is coming from the serializer), it will do exactly this.", "title": null, "type": "comment" }, { "action": "created", "author": "yyaremenko", "comment_id": 629168888, "datetime": 1589539870000, "masked_author": "username_0", "text": "Yes, I totally understand everything you describe. The Form component translates a string into null, and then this null is passed to the `LenghtValidator`, which fails the empty string comparison, because, well, it receives null.\r\n\r\nAnd that is exactly the problem - as a developer, I don't know and is not expected to know / remember about this entire process. If a `LengthValidator` expects to have `empty_data` explicitly set, when using in Form, this must be described in the documentation. Does this make sense?", "title": null, "type": "comment" }, { "action": "created", "author": "xabbuh", "comment_id": 629170474, "datetime": 1589540131000, "masked_author": "username_1", "text": "Documenting somewhere that the `TextType` will return `null` by default instead of the empty string does make sense to me.", "title": null, "type": "comment" }, { "action": "created", "author": "yyaremenko", "comment_id": 629172218, "datetime": 1589540411000, "masked_author": "username_0", "text": "But a developer still will encounter the problem - for instance, in my case (REST API), the field type is `null`, because I don't actually have an HTML form, I just need a validation. The developer will look at the `LengthValidator` documentation, not at the Form field types documentation.", "title": null, "type": "comment" }, { "action": "created", "author": "xabbuh", "comment_id": 629178315, "datetime": 1589541323000, "masked_author": "username_1", "text": "Well, but `null` is ignored by nearly all validators and they will need to be combined with `NotNull`. Otherwise, being able to define constraints for optional attributes wouldn't be possible.", "title": null, "type": "comment" }, { "action": "created", "author": "yyaremenko", "comment_id": 629185148, "datetime": 1589542380000, "masked_author": "username_0", "text": "I'm sorry I'm not sure if I either understand you correctly or I express my ideas in an understandable way.\r\n\r\nLet me try to make things clear.\r\n\r\n1. The scope of the problem we are talking about now is exactly the `LengthValidator`, not any other validator.\r\n\r\n2. The problem reason is misleading `allowEmptyString` parameter, which does not work correctly, when set to `false` unless you provide an external `empty_data` parameter with an empty string.\r\n\r\n3. The problem itself is that a developer expects to get an error when he sets `allowEmptyString` to `false` and provides an empty string, but the error is never returned, because of the Form component converting an empty string to `null`.\r\n\r\n4. My exact example\r\nI write a JSON API and use Form component to validate the incoming data, I don't have any HTML form\r\n```\r\n $builder\r\n ->add('title', **null**, [\r\n 'constraints' => [\r\n new Length([\r\n 'min' => 3,\r\n 'max' => 255,\r\n 'allowEmptyString' => false,\r\n ])\r\n ]\r\n ])\r\n```\r\nSee, the form field type here is `null`. The validator does not work (it allows empty string). I go to the LengthValidator documentation, and it says nothing about that I have to also provide `empty_data` parameter with an empty string value.\r\n\r\n5. You can't fix this, because of how Form component works, but you can have the Length constraint documentation updated for `allowEmptyString` parameter, giving a corresponding warning to mandatory provide `empty_data` when using this constraint inside forms.", "title": null, "type": "comment" }, { "action": "created", "author": "xabbuh", "comment_id": 629229064, "datetime": 1589548451000, "masked_author": "username_1", "text": "Sorry, I misread your last comment. To clarify something here: The fact that you pass `null` as the form type here does not mean that no concrete form type will be used. You simply declare that you do not care and let the Form component choose what it thinks matches the best here (which probably is the `TextType` in this case).\r\n\r\nI suggest to open an issue in the documentation repository to discuss your idea so the other documentation maintainers can give their opinion too (as they may not follow all the discussions here).", "title": null, "type": "comment" }, { "action": "created", "author": "yyaremenko", "comment_id": 629651845, "datetime": 1589638217000, "masked_author": "username_0", "text": "Okay, I see. Thank you for the clarification regarding the From component. \r\nYes, I completely agree with you. Should I open an issue and link to this one?", "title": null, "type": "comment" }, { "action": "created", "author": "xabbuh", "comment_id": 629657505, "datetime": 1589640494000, "masked_author": "username_1", "text": "please do so", "title": null, "type": "comment" }, { "action": "closed", "author": "fabpot", "comment_id": null, "datetime": 1590167448000, "masked_author": "username_2", "text": "", "title": null, "type": "issue" } ]
3
21
8,380
false
false
8,380
true
ucla/lti-library-resources
ucla
692,102,332
51
{ "number": 51, "repo": "lti-library-resources", "user_login": "ucla" }
[ { "action": "opened", "author": "finnzink", "comment_id": null, "datetime": 1599149484000, "masked_author": "username_0", "text": "", "title": "CANVAS-105 - Jest tests for Analytics", "type": "issue" }, { "action": "created", "author": "finnzink", "comment_id": 686600067, "datetime": 1599149638000, "masked_author": "username_0", "text": "Looks like it's failing for github actions but working fine locally. Not ready for review yet.", "title": null, "type": "comment" } ]
2
7
2,250
false
true
94
false
mochajs/mocha
mochajs
615,322,900
4,277
null
[ { "action": "opened", "author": "shobhu98", "comment_id": null, "datetime": 1589089712000, "masked_author": "username_0", "text": "THere were some grammatical errors. I have made a pull request. Kindly review and merge.", "title": "Some Grammatical errors (Code of Conduct)", "type": "issue" }, { "action": "created", "author": "outsideris", "comment_id": 633002535, "datetime": 1590219931000, "masked_author": "username_1", "text": "Closed because we closed #4276", "title": null, "type": "comment" }, { "action": "closed", "author": "outsideris", "comment_id": null, "datetime": 1590219931000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
3
118
false
false
118
false
home-assistant/core
home-assistant
598,235,496
34,015
null
[ { "action": "opened", "author": "i00", "comment_id": null, "datetime": 1586599812000, "masked_author": "username_0", "text": "<!-- READ THIS FIRST:\r\n - If you need additional help with this template, please refer to https://www.home-assistant.io/help/reporting_issues/\r\n - Make sure you are running the latest version of Home Assistant before reporting an issue: https://github.com/home-assistant/core/releases\r\n - Do not report issues for integrations if you are using custom components or integrations.\r\n - Provide as many details as possible. Paste logs, configuration samples and code into the backticks.\r\n DO NOT DELETE ANY TEXT from this template! Otherwise, your issue may be closed without comment.\r\n-->\r\n## The problem\r\n<!-- \r\n Describe the issue you are experiencing here to communicate to the\r\n maintainers. Tell us what you were trying to do and what happened.\r\n-->\r\nCurrently a Numeric State has an entity, and value template.\r\nEntity seems to be required; however it should probably be either a value template or entity required and not both.\r\n\r\nThe issue I have is that the value template seems to be being ignored altogether and the entity state is being used to trigger < 1 for 5:00 that I have set.\r\n\r\n## Environment\r\n<!--\r\n Provide details about the versions you are using, which helps us to reproduce\r\n and find the issue quicker. Version information is found in the\r\n Home Assistant frontend: Developer tools -> Info.\r\n-->\r\n\r\n- Home Assistant Core release with the issue: 0.108.1\r\n- Last working Home Assistant Core release (if known): \r\n- Operating environment (Home Assistant/Supervised/Docker/venv): Docker\r\n- Integration causing this issue: Template\r\n- Link to integration documentation on our website: https://www.home-assistant.io/integrations/template/\r\n\r\n## Problem-relevant `configuration.yaml`\r\n<!--\r\n An example configuration that caused the problem for you. Fill this out even\r\n if it seems unimportant to you. Please be sure to remove personal information\r\n like passwords, private URLs and other credentials.\r\n-->\r\n\r\n```yaml\r\nN/A\r\n```\r\n\r\n## Traceback/Error logs\r\n<!--\r\n If you come across any trace or error logs, please provide them.\r\n-->\r\n\r\n```txt\r\nN/A\r\n```\r\n\r\n## Additional information", "title": "Numeric state Trigger not working with value template correctly", "type": "issue" }, { "action": "created", "author": "pnbruckner", "comment_id": 616215432, "datetime": 1587326189000, "masked_author": "username_1", "text": "Please post the YAML code for the trigger. Your description is too vague.", "title": null, "type": "comment" }, { "action": "created", "author": "i00", "comment_id": 660593891, "datetime": 1595138856000, "masked_author": "username_0", "text": "@username_1 I can't show you the yaml because it won't let me save it...\r\nIf you set a \"Numeric State\" trigger, and just fill out a template it complains that you must have entered data into the above or below fields:\r\n```\r\nMessage malformed: must contain at least one of below, above. @ data['trigger'][0]\r\n```\r\nIt should be that either above, below OR value template are required.", "title": null, "type": "comment" }, { "action": "created", "author": "pnbruckner", "comment_id": 660627321, "datetime": 1595157062000, "masked_author": "username_1", "text": "@username_0 I think you misunderstanding what the `value_template` optional config parameter does. Normally the state of the entity is compared to the `above` and/or `below` parameters to determine if the trigger should fire. However, sometimes one wants the trigger to compare some other value to `above`/`below`, e.g., an attribute of the entity. This is where the `value_template` comes in. It determines what value to compare to `above`/`below`, _not_ the above & below values.\r\n\r\nIf you want to use a template for the above/below values, then what you really want to use is a template trigger.", "title": null, "type": "comment" }, { "action": "created", "author": "i00", "comment_id": 661513125, "datetime": 1595293285000, "masked_author": "username_0", "text": "I don't understand what you mean... with templates if it returns true then it triggers generally ... so if the template evaluates to true shouldn't this cause the trigger to fire without requiring a above / below?", "title": null, "type": "comment" }, { "action": "created", "author": "pnbruckner", "comment_id": 661821009, "datetime": 1595333905000, "masked_author": "username_1", "text": "@username_0, no, that's not the purpose of the `value_template` option in the `numeric_state` trigger. As I explained, it's for determining what value should be compared to the `above` and/or `below` parameters. The `value_template` in this case must result in a _numeric value_, not true or false.\r\n\r\nAgain, if you want a trigger the fires when a template evaluates to `'true'`, then that's the [template trigger](https://www.home-assistant.io/docs/automation/trigger/#template-trigger) that does that.", "title": null, "type": "comment" }, { "action": "closed", "author": "pnbruckner", "comment_id": null, "datetime": 1598300643000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
4
9
4,593
false
true
3,866
true
blockchain-certificates/cert-verifier-js
blockchain-certificates
444,072,452
158
{ "number": 158, "repo": "cert-verifier-js", "user_login": "blockchain-certificates" }
[ { "action": "opened", "author": "akodate", "comment_id": null, "datetime": 1557860164000, "masked_author": "username_0", "text": "#157", "title": "Feat/i18n ja update", "type": "issue" }, { "action": "created", "author": "botcerts", "comment_id": 492639958, "datetime": 1557924480000, "masked_author": "username_1", "text": ":tada: This PR is included in version 3.0.0 :tada:\n\nThe release is available on:\n- [npm package (@latest dist-tag)](https://www.npmjs.com/package/@blockcerts/cert-verifier-js)\n- [GitHub release](https://github.com/blockchain-certificates/cert-verifier-js/releases/tag/v3.0.0)\n\nYour **[semantic-release](https://github.com/semantic-release/semantic-release)** bot :package::rocket:", "title": null, "type": "comment" } ]
2
2
384
false
false
384
false
kubernetes/kubernetes
kubernetes
575,040,206
88,786
{ "number": 88786, "repo": "kubernetes", "user_login": "kubernetes" }
[ { "action": "opened", "author": "freehan", "comment_id": null, "datetime": 1583280507000, "masked_author": "username_0", "text": "Fixes #69811", "title": "Fix ExternalTrafficPolicy support for Service ExternalIPs", "type": "issue" }, { "action": "created", "author": "smourapina", "comment_id": 594560322, "datetime": 1583332500000, "masked_author": "username_1", "text": "@username_0, @justinsb & @dchen1107: Bug Triage here for release 1.18, with a friendly reminder that we are 1 day away from code freeze (5 March EOD), so please keep this in mind. Thanks!", "title": null, "type": "comment" }, { "action": "created", "author": "freehan", "comment_id": 594767120, "datetime": 1583349415000, "masked_author": "username_0", "text": "/kind bug", "title": null, "type": "comment" }, { "action": "created", "author": "smourapina", "comment_id": 597189085, "datetime": 1583858515000, "masked_author": "username_1", "text": "Hello again @username_0, @justinsb & @dchen1107: \r\nWe are now in code freeze for 1.18, so I will go ahead and set the milestone to 1.19, since this is still pending approval. Please let me know in case you have any questions!\r\n/milestone v1.19", "title": null, "type": "comment" }, { "action": "created", "author": "freehan", "comment_id": 598402302, "datetime": 1584044627000, "masked_author": "username_0", "text": "/test pull-kubernetes-integration", "title": null, "type": "comment" }, { "action": "created", "author": "freehan", "comment_id": 598420812, "datetime": 1584047598000, "masked_author": "username_0", "text": "/test pull-kubernetes-integration", "title": null, "type": "comment" }, { "action": "created", "author": "freehan", "comment_id": 598978387, "datetime": 1584144365000, "masked_author": "username_0", "text": "/test pull-kubernetes-node-e2e", "title": null, "type": "comment" }, { "action": "created", "author": "andrewsykim", "comment_id": 599050334, "datetime": 1584188172000, "masked_author": "username_2", "text": "/hold cancel", "title": null, "type": "comment" } ]
4
24
18,997
false
true
553
true
eliangcs/http-prompt
null
553,576,277
164
null
[ { "action": "opened", "author": "TheLastProject", "comment_id": null, "datetime": 1579703189000, "masked_author": "username_0", "text": "This seems to happen after setting a proxy. But if you call `--json` after this things start working again.\r\n\r\n```\r\n$ http-prompt httpbin.org\r\nVersion: 1.0.0\r\nhttp://httpbin.org> --proxy=http:socks5://localhost:9050\r\nhttp://httpbin.org> get\r\nusage: http [--json] [--form] [--compress] [--pretty {all,colors,format,none}]\r\n [--style STYLE] [--print WHAT] [--headers] [--body] [--verbose]\r\n [--all] [--history-print WHAT] [--stream] [--output FILE]\r\n [--download] [--continue]\r\n [--session SESSION_NAME_OR_PATH | --session-read-only SESSION_NAME_OR_PATH]\r\n [--auth USER[:PASS]] [--auth-type {basic,digest}] [--ignore-netrc]\r\n [--offline] [--proxy PROTOCOL:PROXY_URL] [--follow]\r\n [--max-redirects MAX_REDIRECTS] [--max-headers MAX_HEADERS]\r\n [--timeout SECONDS] [--check-status] [--verify VERIFY]\r\n [--ssl {ssl2.3,tls1,tls1.1,tls1.2}] [--cert CERT]\r\n [--cert-key CERT_KEY] [--ignore-stdin] [--help] [--version]\r\n [--traceback] [--default-scheme DEFAULT_SCHEME] [--debug]\r\n [METHOD] URL [REQUEST_ITEM [REQUEST_ITEM ...]]\r\nhttp: error: 'GET' is not a valid value\r\n\r\n```", "title": "http: error: 'GET' is not a valid value", "type": "issue" }, { "action": "created", "author": "gurka", "comment_id": 672690163, "datetime": 1597217624000, "masked_author": "username_1", "text": "I guess it is related to http-prompt not sending options correctly to httpie?\r\n\r\n```\r\nsimon@simon-laptop:~$ http-prompt http://localhost\r\nVersion: 1.0.0\r\nhttp://localhost> --auth 'simon:test'\r\nhttp://localhost> get\r\nusage: http [--json] [--form] [--compress] [--pretty {all,colors,format,none}] [--style STYLE] [--unsorted] [--sorted] [--format-options FORMAT_OPTIONS] [--print WHAT]\r\n [--headers] [--body] [--verbose] [--all] [--history-print WHAT] [--stream] [--output FILE] [--download] [--continue]\r\n [--session SESSION_NAME_OR_PATH | --session-read-only SESSION_NAME_OR_PATH] [--auth USER[:PASS]] [--auth-type {basic,digest}] [--ignore-netrc] [--offline]\r\n [--proxy PROTOCOL:PROXY_URL] [--follow] [--max-redirects MAX_REDIRECTS] [--max-headers MAX_HEADERS] [--timeout SECONDS] [--check-status] [--path-as-is]\r\n [--verify VERIFY] [--ssl {ssl2.3,tls1,tls1.1,tls1.2}] [--ciphers CIPHERS] [--cert CERT] [--cert-key CERT_KEY] [--ignore-stdin] [--help] [--version] [--traceback]\r\n [--default-scheme DEFAULT_SCHEME] [--debug]\r\n [METHOD] URL [REQUEST_ITEM [REQUEST_ITEM ...]]\r\nhttp: error: 'GET' is not a valid value\r\n\r\nhttp://localhost> httpie\r\nhttp --auth=simon:test http://localhost\r\n```\r\n\r\nNote that httpie wants the --auth option to be specified like `--auth simon:test`, i.i.e without equal character. Same thing with `--proxy`.\r\nOr is this something that has changed in httpie recently? I'm using version 2.2.0.", "title": null, "type": "comment" }, { "action": "created", "author": "jakubroztocil", "comment_id": 675617666, "datetime": 1597772342000, "masked_author": "username_2", "text": "This should be fixed in `master`. You install & test it via the following command:\r\n\r\n```bash\r\n$ pip install -U https://github.com/httpie/http-prompt/archive/master.zip\r\n```\r\n\r\nv2.0.0 will be released soon.", "title": null, "type": "comment" }, { "action": "closed", "author": "jakubroztocil", "comment_id": null, "datetime": 1597772342000, "masked_author": "username_2", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "gurka", "comment_id": 761212116, "datetime": 1610746711000, "masked_author": "username_1", "text": "Hi,\r\n\r\nSorry for the late response. I've tested with master today and it works fine.\r\nThank you", "title": null, "type": "comment" } ]
4
6
4,031
false
true
2,979
false
kubernetes/website
kubernetes
547,790,171
18,580
{ "number": 18580, "repo": "website", "user_login": "kubernetes" }
[ { "action": "opened", "author": "ysyukr", "comment_id": null, "datetime": 1578614457000, "masked_author": "username_0", "text": "from #18577\r\n/language ko", "title": "Update to Outdated files in dev-1.17-ko.3 branch.", "type": "issue" }, { "action": "created", "author": "ClaudiaJKang", "comment_id": 574598776, "datetime": 1579084362000, "masked_author": "username_1", "text": "@username_0 PR 감사합니다. cheatsheet 파일에서 누락된 부분은 수정해서 commit 추가했습니다~ \r\n\r\n/lgtm\r\n/approve", "title": null, "type": "comment" } ]
4
5
1,918
false
true
106
true
bebasid/bebasid
bebasid
622,937,749
127
null
[ { "action": "opened", "author": "iCesenberk", "comment_id": null, "datetime": 1590121026000, "masked_author": "username_0", "text": "https://pussytorrents.org/", "title": "[REQ] pussytorrents.org", "type": "issue" }, { "action": "closed", "author": "dikiaap", "comment_id": null, "datetime": 1590378655000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
2
26
false
false
26
false
ipfs/go-ipfs
ipfs
55,398,807
651
null
[ { "action": "opened", "author": "lgarron", "comment_id": null, "datetime": 1422163749000, "masked_author": "username_0", "text": "Right now, all pages/web apps served from the same server have access to all each other's saved state of the [same-origin policy](https://developer.mozilla.org/en-US/docs/Web/Security/Same-origin_policy).\r\n\r\n@username_6 is [currently implementing](https://code.google.com/p/chromium/issues/detail?id=336894&q=suborigins&colspec=ID%20Pri%20M%20Week%20ReleaseBlock%20Cr%20Status%20Owner%20Summary%20OS%20Modified) a first version of per-page suborigins in Chrome, which should let the server isolate web app nodes from each other (by sending a unique string in the header for each one). http://www.chromium.org/developers/design-documents/per-page-suborigins", "title": "Implement per-page suborigins in the gateway", "type": "issue" }, { "action": "created", "author": "stevearm", "comment_id": 166026917, "datetime": 1450560013000, "masked_author": "username_1", "text": "Is there a reason why we can't implement per-root dns subdomains (`<hash>.gateway.ipfs.io`)? If we can, wouldn't they do everything that per-page suborigins would, while providing broader support (all browsers currently enforce SOP based on dns subdomains while suborigins are still experimentally supported).", "title": null, "type": "comment" }, { "action": "created", "author": "mappum", "comment_id": 166030419, "datetime": 1450563269000, "masked_author": "username_2", "text": "@username_1 I've been thinking about this for a while, and I believe it's a good choice. The path ordering is not ideal (`ipfs.io/ipfs/HASH` makes more sense), but that's a secondary issue.\r\n\r\nA very cool use case that could be made possible is SOP for IPNS names, which would allow applications that are published on IPNS to store data that will be accessible across updates. This could have a path such as `<hash>.ipns.ipfs.io` or `<hash>.ipns.name`.\r\n\r\nThis even lets applications easily create new SOP scopes at runtime by creating new IPFS objects. For instance, an application could create multiple Bitcoin wallets that each store their own private keys and manage access capabilities. Then, even as the application is updated via IPNS, the new untrusted code won't be able to change its access to the private keys (since they are on a different domain).", "title": null, "type": "comment" }, { "action": "created", "author": "stevearm", "comment_id": 166030654, "datetime": 1450563585000, "masked_author": "username_1", "text": "I agree, and there's been discussion on [faq#32](https://github.com/ipfs/faq/issues/32) about this sub-domain solution which is pretty relevant.\r\n\r\nI think per-page suborigins make sense in cases where one can't use subdomains, but if we are free to use multiple dns subdomains I think we should. We can reap the benefit of universal SOP browser enforcement instead of working towards using a brand-new feature that won't give us additional functionality.", "title": null, "type": "comment" }, { "action": "created", "author": "lgierth", "comment_id": 166041171, "datetime": 1450571864000, "masked_author": "username_3", "text": "I ordered ipns.name for exactly this use case just a few days ago :)", "title": null, "type": "comment" }, { "action": "created", "author": "lgierth", "comment_id": 166041197, "datetime": 1450571923000, "masked_author": "username_3", "text": "While I think it makes sense for IPNS names, I'm not convinced it does for arbitrary /ipfs hashes.", "title": null, "type": "comment" }, { "action": "created", "author": "edrex", "comment_id": 166077120, "datetime": 1450596166000, "masked_author": "username_4", "text": "@username_2, what do you think of using https://github.com/neocities/hshca/ for the domain component?", "title": null, "type": "comment" }, { "action": "created", "author": "edrex", "comment_id": 166080643, "datetime": 1450598242000, "masked_author": "username_4", "text": "@username_3 you may be right. The only use I can think of would be to enable immutable applications, which are guaranteed not to be changed by the publisher. I don't know if people will find that useful. But generally I think people will publish and use apps under an IPNS node.", "title": null, "type": "comment" }, { "action": "created", "author": "edrex", "comment_id": 166080784, "datetime": 1450598493000, "masked_author": "username_4", "text": "btw, +1 for going forward with sub domains using hshca for now. Anyway the gateway is a transitional technology, and maybe we should be thinking about the end game when clients understand IPFS. How will application security scopes work then? @username_8?", "title": null, "type": "comment" }, { "action": "created", "author": "harlantwood", "comment_id": 166081100, "datetime": 1450598857000, "masked_author": "username_5", "text": "+1 for doing this for IPNS names. \r\n+1 for using hshca.", "title": null, "type": "comment" }, { "action": "created", "author": "edrex", "comment_id": 166084682, "datetime": 1450600628000, "masked_author": "username_4", "text": "ok, let's not start +1ing up this issue.", "title": null, "type": "comment" }, { "action": "created", "author": "metromoxie", "comment_id": 166129281, "datetime": 1450625236000, "masked_author": "username_6", "text": "FWIW, if you can do separate, unique subdomains for your purposes, it's probably a superior option for all of the reasons you've listed. Suborigins (which aren't even complete yet) are most useful for a world where that's not possible or reasonable.\r\n\r\nFor example, imagine you are trying to separate two legacy applications which, perhaps for SEO reasons, need to live on the same top level domain. Then Suborigins would be useful because it would give you origin separation while still living on the same host.\r\n\r\nAnother reason you might prefer Suborigins would be if you needed direct access to some subset of shared resources. For legacy purposes, we're carving out a few exceptions where you can (unsafely) allow for the sharing of some origin-specific resources between an origin and a suborigin, such as cookies.", "title": null, "type": "comment" }, { "action": "created", "author": "whyrusleeping", "comment_id": 241892801, "datetime": 1471989340000, "masked_author": "username_7", "text": "Per page suborigins would be great. Are they implemented in major browsers yet?", "title": null, "type": "comment" }, { "action": "created", "author": "jbenet", "comment_id": 241893336, "datetime": 1471989440000, "masked_author": "username_8", "text": "Not yet and it looks like the spec is going in odd directions. We need to\nparticipate in that discussion to make sure it goes well and supporting our\nuse cases", "title": null, "type": "comment" }, { "action": "created", "author": "lgierth", "comment_id": 241896839, "datetime": 1471990274000, "masked_author": "username_3", "text": "@username_8 you were already saying in Lisbon that right now is the time to articulate our use case and feedback to the suborigins working group. I can go draft something next week-ish.", "title": null, "type": "comment" }, { "action": "created", "author": "mitar", "comment_id": 242231614, "datetime": 1472078664000, "masked_author": "username_9", "text": "Yes, it is really going into odd directions. :-)\r\n\r\nI think only Chrome has implementation with a runtime command line switch.", "title": null, "type": "comment" }, { "action": "created", "author": "metromoxie", "comment_id": 242625715, "datetime": 1472184549000, "masked_author": "username_6", "text": "@username_8, can you clarify what direction you think is odd about Suborigins? I would certainly prefer for that not to be the outcome :-) While we can't get every feature in v1, at the very least I want to make sure we know of developers needs so we don't build something that is unusable.", "title": null, "type": "comment" }, { "action": "created", "author": "lgierth", "comment_id": 248647000, "datetime": 1474471514000, "masked_author": "username_3", "text": "@username_6 hey, I had a look at the current editor's draft and I think it still fits our use case, see my comments in #3209", "title": null, "type": "comment" }, { "action": "created", "author": "lgierth", "comment_id": 248652298, "datetime": 1474472499000, "masked_author": "username_3", "text": "Closing this one -- the gateway has been setting the Suborigin for ages, and we're ironing out a few remaining issues in #3209. DNS names like `<hash>.ipns.name` can be achieved using [HSHCA](https://github.com/neocities/hshca) which we'll implement in go-ipfs.", "title": null, "type": "comment" }, { "action": "closed", "author": "lgierth", "comment_id": null, "datetime": 1474472505000, "masked_author": "username_3", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "brettz9", "comment_id": 354985684, "datetime": 1514977172000, "masked_author": "username_10", "text": "Is there tracking for HSHCA support?", "title": null, "type": "comment" }, { "action": "created", "author": "whyrusleeping", "comment_id": 355151643, "datetime": 1515020250000, "masked_author": "username_7", "text": "Unsure, cc @kyledrake", "title": null, "type": "comment" } ]
11
22
5,254
false
false
5,254
true
lightningnetwork/lnd
lightningnetwork
593,086,095
4,146
null
[ { "action": "opened", "author": "Relaxo143", "comment_id": null, "datetime": 1585891516000, "masked_author": "username_0", "text": "Hello! I haven't encountered this before - shortly after upgrading to 0.9.2-beta I get this error when starting LND: `dial tcp 127.0.0.1:9050: connectex: No connection could be made because the target machine actively refused it.` I run Bitcoin Core 0.19.1 and Windows 10. I tried running lnd with the firewall disabled with no success. Any help would be appreciated!", "title": "Windows refuses LND's connection", "type": "issue" }, { "action": "created", "author": "guggero", "comment_id": 608268095, "datetime": 1585897598000, "masked_author": "username_1", "text": "The port 9050 is usually used for Tor. Did you activate anything Tor related in lnd? Could you perhaps post your configuration and/or command line parameters?", "title": null, "type": "comment" }, { "action": "created", "author": "Relaxo143", "comment_id": 608326698, "datetime": 1585905324000, "masked_author": "username_0", "text": "You just gave me a huge clue, thanks. I've configured LND to run over Tor. However my tor client is not running properly (I think) so I stopped it. I get this warning message (sorry if it's off topic): \r\n`Guard is failing a very large amount of circuits. Most likely this means the Tor network is overloaded, but it could also mean an attack against you or potentially the guard itself. Success counts are 123/258. Use counts are 84/84. 215 circuits completed, 0 were unusable, 93 collapsed, and 6 timed out. For reference, your timeout cutoff is 60 seconds.`\r\nIs it safe to run Tor with this warning? Not running it is probably the reason why lnd is not starting up. Thanks again!", "title": null, "type": "comment" }, { "action": "created", "author": "guggero", "comment_id": 608333929, "datetime": 1585906163000, "masked_author": "username_1", "text": "I'm not sure how `lnd` uses Tor exactly or what the error means in detail. But I know that `lnd` tends to open many circuits and that this can be challenging for the Tor client. So my _guess_ is, it's a load issue. But as I said, I'm not too familiar with the internals.", "title": null, "type": "comment" }, { "action": "created", "author": "Roasbeef", "comment_id": 623782625, "datetime": 1588639453000, "masked_author": "username_2", "text": "Closing as this is resolved. Opening a new issue to possibly tune the amount of circuits we use.", "title": null, "type": "comment" }, { "action": "closed", "author": "Roasbeef", "comment_id": null, "datetime": 1588639454000, "masked_author": "username_2", "text": "", "title": null, "type": "issue" } ]
3
6
1,573
false
false
1,573
false
webanno/webanno
webanno
619,679,530
1,680
{ "number": 1680, "repo": "webanno", "user_login": "webanno" }
[ { "action": "opened", "author": "reckart", "comment_id": null, "datetime": 1589715397000, "masked_author": "username_0", "text": "**What's in the PR**\r\n- More concise location information (i.e. which sentence / line and which document is being shown)\r\n- Towards a responsive action bar\r\n\r\n**How to test manually**\r\n* Use the annotation page with different browser sizes\r\n\r\n**Automatic testing**\r\n* [ ] PR includes unit tests\r\n\r\n**Documentation**\r\n* [ ] PR updates documentation", "title": "#1679 - Improve annotation page for smaller screens", "type": "issue" } ]
2
4
1,107
false
true
347
false
GoogleChrome/web.dev
GoogleChrome
702,008,871
3,878
{ "number": 3878, "repo": "web.dev", "user_login": "GoogleChrome" }
[ { "action": "opened", "author": "crwirth", "comment_id": null, "datetime": 1600182022000, "masked_author": "username_0", "text": "Fixes #3877\r\n\r\nName used on Individual CLA: Cody Wirth codyrwirth@gmail.com\r\n\r\nChanges proposed in this pull request:\r\n\r\n- Remove reference from the outdated metric and replace it with kilobytes.", "title": "Lighthouse no longer utilizing [kibibytes (KiB)](https://en.wikipedia.org/wiki/Kibibyte) as a metric", "type": "issue" } ]
3
3
807
false
true
196
false
OrchardCMS/OrchardCore
OrchardCMS
435,548,426
3,493
{ "number": 3493, "repo": "OrchardCore", "user_login": "OrchardCMS" }
[ { "action": "opened", "author": "MichaelPetrinolis", "comment_id": null, "datetime": 1555881099000, "masked_author": "username_0", "text": "add github auth to the list of supported external providers", "title": "add github auth", "type": "issue" }, { "action": "created", "author": "agriffard", "comment_id": 485283084, "datetime": 1555881553000, "masked_author": "username_1", "text": "Thank you Michael.", "title": null, "type": "comment" }, { "action": "created", "author": "MichaelPetrinolis", "comment_id": 485283429, "datetime": 1555881969000, "masked_author": "username_0", "text": "Check it out when you get some time...", "title": null, "type": "comment" }, { "action": "created", "author": "agriffard", "comment_id": 485369931, "datetime": 1555923791000, "masked_author": "username_1", "text": "OK, I managed to: \r\nCreate an OAuth application on github\r\nEnable the github authentication module\r\nSet the client Id and Secret\r\n\r\nSign in with Github and link to an existing account\r\n\r\nEnable registration\r\nRegister as another user with github\r\n\r\nI am wondering a few things:\r\nThe association is only based on the username? The email is not retrieved from the github account when you register?\r\nWhen you edit it in the admin, a user with external logins does not have any additional informations displayed?", "title": null, "type": "comment" }, { "action": "created", "author": "MichaelPetrinolis", "comment_id": 485378474, "datetime": 1555926287000, "masked_author": "username_0", "text": "1. If a user tries to login with external provider, and registration is enabled then \r\n- If the external provider provides an email claim, we search for an existing account with that email\r\n- If not found, a new OC Account is created based on the username,email and password provided by the user\r\n- If found, we request the password of the OC Account in order to link the external login\r\nThere is a PR that takes into consideration the email must confirmed parameter, if we request password in order to create a local Account from external login, and also uses the recaptcha\r\n\r\n2. There is a front page (OrchardCore.Users/Account/ExternalLogins) where you can link/unlink OC account with external providers. Of course, is not complete, we must decide how this is integrated with profile/account info in admin/front end", "title": null, "type": "comment" }, { "action": "created", "author": "agriffard", "comment_id": 485773059, "datetime": 1556020879000, "masked_author": "username_1", "text": "Fixes #3483", "title": null, "type": "comment" } ]
2
6
1,451
false
false
1,451
false
uniquelyparticular/sync-moltin-to-shipengine
uniquelyparticular
466,462,236
78
{ "number": 78, "repo": "sync-moltin-to-shipengine", "user_login": "uniquelyparticular" }
[ { "action": "created", "author": "agrohs", "comment_id": 510226278, "datetime": 1562792288000, "masked_author": "username_0", "text": ":tada: This PR is included in version 1.0.40 :tada:\n\nThe release is available on:\n- [npm package (@latest dist-tag)](https://www.npmjs.com/package/@particular./sync-moltin-to-shipengine)\n- [GitHub release](https://github.com/uniquelyparticular/sync-moltin-to-shipengine/releases/tag/v1.0.40)\n\nYour **[semantic-release](https://github.com/semantic-release/semantic-release)** bot :package::rocket:", "title": null, "type": "comment" } ]
3
3
2,506
false
true
396
false
flutter/devtools
flutter
645,132,944
2,125
null
[ { "action": "opened", "author": "azad47808", "comment_id": null, "datetime": 1593058233000, "masked_author": "username_0", "text": "This morning when I run Devtools I got an updating message and after update DevTools opened but shows nothing.\r\nthis is my Devtools URL = http://127.0.0.1:9100/#?hide=debugger&ide=VSCode&theme=dark&uri=http%3A%2F%2F127.0.0.1%3A49683%2F7P9jVJjp0SU%3D%2F&page=inspector\r\n\r\nMy Flutter version is 1.19.0-4.1.pre\r\nMy Dart version is 2.9.0 (build 2.9.0-14.1.beta).", "title": "Devtools not working after update.", "type": "issue" }, { "action": "created", "author": "devoncarew", "comment_id": 649642940, "datetime": 1593100572000, "masked_author": "username_1", "text": "How are your starting DevTools - from the command line, VS Code, IntelliJ?", "title": null, "type": "comment" }, { "action": "created", "author": "bleonard252", "comment_id": 650800410, "datetime": 1593366960000, "masked_author": "username_2", "text": "According to the link, VSCode. I'm experiencing the same thing running from the command line.\r\n```\r\nAnother exception was thrown: Instance of 'minified:il<void>'\r\n```\r\nis being logged a lot.", "title": null, "type": "comment" }, { "action": "created", "author": "azad47808", "comment_id": 650893366, "datetime": 1593403618000, "masked_author": "username_0", "text": "From the VS Code.", "title": null, "type": "comment" }, { "action": "created", "author": "AlexanderTopchiy", "comment_id": 651678773, "datetime": 1593509485000, "masked_author": "username_3", "text": "I have the same problem with the same configurations (Flutter 1.19.0-4.2.pre, Dart 2.9, VS Code 1.46.1) after recent update DevTools.\r\nAlso, it doesn't work from Android Studio 4.0 too. Both on Linux Debian 9.11.\r\nWhat happened?", "title": null, "type": "comment" }, { "action": "created", "author": "ezbella", "comment_id": 653646836, "datetime": 1593801807000, "masked_author": "username_4", "text": "Same problem over here too. Tons of recurring exceptions:\r\n\"Another exception was thrown: Instance of 'minified:im<void>'\" Could not load content for org-dartlang-sdk:///lib/_internal/js_runtime/lib/js_primitives.dart (HTTP error: status code 404, net::ERR_UNKNOWN_URL_SCHEME). \r\n\r\nThe app works perfectly fine in vs code on the device.\r\n\r\nflutter doctor -v\r\n[√] Flutter (Channel stable, v1.17.4, on Microsoft Windows [Version 6.1.7601], locale es-AR)\r\n • Flutter version 1.17.4 at c:\\flutter\r\n • Framework revision 1ad9baa8b9 (2 weeks ago), 2020-06-17 14:41:16 -0700\r\n • Engine revision ee76268252\r\n • Dart version 2.8.4\r\n\r\n[√] Android toolchain - develop for Android devices (Android SDK version 30.0.0)\r\n • Android SDK at C:\\Users\\xxx\\AppData\\Local\\Android\\sdk\r\n • Platform android-30, build-tools 30.0.0\r\n • Java binary at: C:\\Program Files\\Android\\Android Studio\\jre\\bin\\java\r\n • Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b01)\r\n • All Android licenses accepted.\r\n\r\n[√] Android Studio (version 4.0)\r\n • Android Studio at C:\\Program Files\\Android\\Android Studio\r\n • Flutter plugin version 46.0.2\r\n • Dart plugin version 193.7361\r\n • Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b01)\r\n\r\n[√] VS Code (version 1.46.1)\r\n • VS Code at C:\\Users\\xxx\\AppData\\Local\\Programs\\Microsoft VS Code\r\n • Flutter extension version 3.12.1\r\n\r\n[√] Connected device (1 available)\r\n • Moto E 4 Plus • ZY2248P828 • android-arm • Android 7.1.1 (API 25)\r\n\r\n• No issues found!", "title": null, "type": "comment" }, { "action": "created", "author": "azad47808", "comment_id": 653864981, "datetime": 1593941726000, "masked_author": "username_0", "text": "Can I downgrade Dart Devtools?", "title": null, "type": "comment" }, { "action": "created", "author": "kenzieschmoll", "comment_id": 654364746, "datetime": 1594055941000, "masked_author": "username_5", "text": "Can you open DevTools from CLI? `flutter pub global activate devtools; devtools`\r\n\r\nTrying to narrow this down to determine if the issue is specific to launching from VS code. Thanks.", "title": null, "type": "comment" }, { "action": "created", "author": "DanTup", "comment_id": 654394305, "datetime": 1594059841000, "masked_author": "username_6", "text": "From [this comment above](https://github.com/flutter/devtools/issues/2125#issuecomment-651678773) it sounds like this may occur from Android Studio too.\r\n\r\nCould it be caching from the old version? Does pressing Ctrl+R in the browser make any difference for those seeing this?", "title": null, "type": "comment" }, { "action": "created", "author": "bleonard252", "comment_id": 654516442, "datetime": 1594078831000, "masked_author": "username_2", "text": "No, I haven't used DevTools in Chrome yet. I tried with Firefox and that didn't work (Firefox error).", "title": null, "type": "comment" }, { "action": "created", "author": "azad47808", "comment_id": 654596826, "datetime": 1594097217000, "masked_author": "username_0", "text": "I used these two commands but not worked it's just a white page.\r\n\r\n1: flutter pub global activate devtools\r\n2: flutter pub global run devtools", "title": null, "type": "comment" }, { "action": "created", "author": "AlexanderTopchiy", "comment_id": 654640489, "datetime": 1594104931000, "masked_author": "username_3", "text": "I used this command before and now - still white page. (at http://127.0.0.1:9100)\r\nBoth from VS Code and Android Studio.\r\nIn Android Studio I can use embedded Flutter tabs - Inspector, Outline, Performance. And that's it.", "title": null, "type": "comment" }, { "action": "created", "author": "kenzieschmoll", "comment_id": 654943663, "datetime": 1594135816000, "masked_author": "username_5", "text": "A couple things to try:\r\n- make sure you are using the latest version of Chrome\r\n- clear your browser cache\r\n\r\nAre you running from Mac, Linux, or Windows?", "title": null, "type": "comment" }, { "action": "created", "author": "ezbella", "comment_id": 654947076, "datetime": 1594136147000, "masked_author": "username_4", "text": "I have the latest Chrome version, specially downloaded for the occasion.\nI've tried everything you suggested with no luck\n\nEl mar., 7 de jul. de 2020 12:30 PM, Kenzie Schmoll <", "title": null, "type": "comment" }, { "action": "created", "author": "kenzieschmoll", "comment_id": 654953551, "datetime": 1594136779000, "masked_author": "username_5", "text": "Try appending '/#/' to the end of the url so that the url looks like `http://127.0.0.1:9100/#/`. The redirect is supposed to happen automatically.", "title": null, "type": "comment" }, { "action": "created", "author": "ezbella", "comment_id": 654955916, "datetime": 1594137024000, "masked_author": "username_4", "text": "Tried it but did not work.\r\nThe url:\r\nhttp://127.0.0.1:9100/#/?hide=debugger&ide=VSCode&theme=dark&uri=http%3A%2F%2F127.0.0.1%3A1485%2FtNRtGiM-E6k%3D%2F#", "title": null, "type": "comment" }, { "action": "created", "author": "kenzieschmoll", "comment_id": 654959814, "datetime": 1594137405000, "masked_author": "username_5", "text": "Try `http://127.0.0.1:9100/#/?uri=http%3A%2F%2F127.0.0.1%3A1485%2FtNRtGiM-E6k%3D%2F`\r\n\r\nif that doesn't work try `http://127.0.0.1:9100/#/` without any query parameters, and paste your URI into the connect dialog if it shows up `http://127.0.0.1:1485/tNRtGiM-E6k=/`", "title": null, "type": "comment" }, { "action": "created", "author": "ezbella", "comment_id": 654997242, "datetime": 1594141270000, "masked_author": "username_4", "text": "![image](https://user-images.githubusercontent.com/55261954/86816437-31019b80-c05a-11ea-8d3b-79bfb7917d1e.png)\r\n\r\nNot working in any case :(", "title": null, "type": "comment" }, { "action": "created", "author": "ezbella", "comment_id": 655012099, "datetime": 1594142836000, "masked_author": "username_4", "text": "![image](https://user-images.githubusercontent.com/55261954/86819192-ae7adb00-c05d-11ea-8bd7-3ec3cb01aa78.png)\r\n\r\nWith the last url you provided I could access the observatory, and now I can see at least this info of my app. But still without being able to access devtools...", "title": null, "type": "comment" }, { "action": "created", "author": "elansys-kc", "comment_id": 656032918, "datetime": 1594288657000, "masked_author": "username_7", "text": "I have the same issue on Windows.", "title": null, "type": "comment" }, { "action": "created", "author": "heroqin", "comment_id": 656698189, "datetime": 1594390400000, "masked_author": "username_8", "text": "I have the same problem, nothing output in chrome browser:\r\n![图片](https://user-images.githubusercontent.com/48232744/87163703-5ad8ed80-c2fa-11ea-8ff9-1081dde2ca04.png)\r\n\r\nstatus bar in VSCode is as following:\r\n![图片](https://user-images.githubusercontent.com/48232744/87163811-8360e780-c2fa-11ea-8082-ad8148ee5104.png)", "title": null, "type": "comment" }, { "action": "created", "author": "DanTup", "comment_id": 657757207, "datetime": 1594669812000, "masked_author": "username_6", "text": "I had a go at trying to repro on Windows, and could not. However I definitely saw some weird caching behaviour...\r\n\r\nI first activated 0.2.5 and loaded and refreshed that. Then I activated 0.8.0+1, opened my browser and pasted in the URL. It loaded the old version of the app entirely:\r\n\r\n![devtools_1](https://user-images.githubusercontent.com/1078012/87346816-15126400-c54a-11ea-8620-3c8ab22be93c.png)\r\n\r\nI pressed F5 to refresh, and it still showed the old version:\r\n\r\n![devtools_2_after_f5](https://user-images.githubusercontent.com/1078012/87346840-1e9bcc00-c54a-11ea-86f7-d0b6c3490bda.png)\r\n\r\nI pressed F5 a second time, and the new version loaded:\r\n\r\n![devtools_3_after_f5_again](https://user-images.githubusercontent.com/1078012/87346873-28253400-c54a-11ea-8039-ed2d4ff402ca.png)\r\n\r\nI tried a few times but couldn't repro the error above - though I wonder if it's possible for some of the files to come from the cache and not all?\r\n\r\nTo those that can reproduce this reliably - if you deliberately run on a different port, eg:\r\n\r\n```\r\npub global run devtools --port 9120\r\n```\r\n\r\ndoes this make any difference?", "title": null, "type": "comment" }, { "action": "created", "author": "heroqin", "comment_id": 657933865, "datetime": 1594694771000, "masked_author": "username_8", "text": "When I execute 'pub global run devtools --port 9120', it says:\r\n![图片](https://user-images.githubusercontent.com/48232744/87377679-b3d8a800-c5be-11ea-84df-b9a65fdb4d4a.png)", "title": null, "type": "comment" }, { "action": "created", "author": "heroqin", "comment_id": 657936425, "datetime": 1594695349000, "masked_author": "username_8", "text": "I use the following command instead:\r\n![图片](https://user-images.githubusercontent.com/48232744/87378410-4e85b680-c5c0-11ea-93f6-5546c6e8e5a9.png)\r\nand open chrome: http://127.0.0.1/#/, but it still output blank:\r\n![图片](https://user-images.githubusercontent.com/48232744/87378455-66f5d100-c5c0-11ea-841f-c454b81442c3.png)", "title": null, "type": "comment" }, { "action": "created", "author": "elansys-kc", "comment_id": 658091735, "datetime": 1594720905000, "masked_author": "username_7", "text": "It runs from the commandline, when I follow these instructions but not from vscode or Android studio.\r\nhttps://github.com/flutter/devtools/blob/master/CONTRIBUTING.md\r\n\r\nI often get run -d chrome|edge failures like the following which makes me wonder if a timeout is occurring and if a timeout could be happening on devtools that might affect the GUI tools more without the manual steps?\r\n\r\nMy machine is older without an SSD, does anyone with this issue have a newer machine, with an SSD?\r\n\r\n\r\n\r\nPS C:\\flutter_proj\\review> cd gallery\r\nPS C:\\flutter_proj\\review\\gallery> flutter run -d edge\r\nRunning \"flutter pub get\" in gallery... 73.1s\r\nLaunching lib\\main.dart on Edge in debug mode...\r\nSyncing files to device Edge...\r\n119,368ms (!)\r\nFailed to establish connection with the application instance in Chrome.\r\nThis can happen if the websocket connection used by the web tooling is unable to correctly establish a connection, for example due to\r\na firewall.\r\nPS C:\\flutter_proj\\review\\gallery> flutter run -d edge\r\nLaunching lib\\main.dart on Edge in debug mode...\r\nSyncing files to device Edge...\r\n83,968ms (!)\r\nDebug service listening on ws://127.0.0.1:51696/sQjV4xXUWZU=\r\n\r\nWarning: Flutter's support for web development is not stable yet and hasn't\r\nbeen thoroughly tested in production environments.\r\nFor more information see https://flutter.dev/web\r\n\r\n To hot restart changes while running, press \"r\" or \"R\".\r\nFor a more detailed help message, press \"h\". To quit, press \"q\".", "title": null, "type": "comment" }, { "action": "created", "author": "jacob314", "comment_id": 658485578, "datetime": 1594774784000, "masked_author": "username_9", "text": "I've uploaded devtools 0.8.0+2 which should provide a slightly better error message as minification is turned off. Please let me know if you are able to reproduce the error while running 0.8.0+2. The error message may help us debug the issue.", "title": null, "type": "comment" }, { "action": "created", "author": "heroqin", "comment_id": 658530468, "datetime": 1594785272000, "masked_author": "username_8", "text": "@username_9 I upgraded devtools version to 0.8.0+2, and tried it, but still nothing output. but where can I get the error message?\r\nBy the way, I try to telnet 127.0.0.1 9100, it did response.\r\n![图片](https://user-images.githubusercontent.com/48232744/87501473-bce67980-c691-11ea-90c0-269247b238ba.png)", "title": null, "type": "comment" }, { "action": "created", "author": "DanTup", "comment_id": 658618523, "datetime": 1594800846000, "masked_author": "username_6", "text": "@username_8 the error will show in the Chrome developer tools. To open them, press `F12` in the blank Chrome window and then click the `Console` tab and there's probably a red error message. Please post that message here - hopefully it will be more helpful than the minified one.", "title": null, "type": "comment" }, { "action": "created", "author": "heroqin", "comment_id": 658624507, "datetime": 1594801543000, "masked_author": "username_8", "text": "![图片](https://user-images.githubusercontent.com/48232744/87521889-87548700-c6b7-11ea-8354-9d2e3bfdf64c.png)\r\nthe number before \"Another exception was thrown: Instance of 'ErrorSummary'\" is added 1 per second:\r\n![图片](https://user-images.githubusercontent.com/48232744/87522044-b9fe7f80-c6b7-11ea-96f6-1fad297064db.png)\r\n![图片](https://user-images.githubusercontent.com/48232744/87522070-c1258d80-c6b7-11ea-96cd-c3d5255d48ed.png)\r\n![图片](https://user-images.githubusercontent.com/48232744/87522100-c97dc880-c6b7-11ea-879a-2ca41486e166.png)", "title": null, "type": "comment" }, { "action": "created", "author": "DanTup", "comment_id": 658660577, "datetime": 1594805635000, "masked_author": "username_6", "text": "@username_8 could you try clicking on the Sources tab in those developer tools, then on the right side ticking the box that says \"Pause on caught exceptions\" and see whether that causes the debugger to break? If so, please include a screenshot (including the Call Stack and exception info).", "title": null, "type": "comment" }, { "action": "created", "author": "ezbella", "comment_id": 658769469, "datetime": 1594819897000, "masked_author": "username_4", "text": "Hi @username_6, I'm attaching the screenshot you requested. Tell me if you need anything else.\r\n\r\n![image](https://user-images.githubusercontent.com/55261954/87550879-ee594800-c685-11ea-8f38-7179db8ac087.png)\r\n\r\n![image](https://user-images.githubusercontent.com/55261954/87551123-4001d280-c686-11ea-9a90-2c269b819cb2.png)", "title": null, "type": "comment" }, { "action": "created", "author": "heroqin", "comment_id": 658770352, "datetime": 1594819987000, "masked_author": "username_8", "text": "![图片](https://user-images.githubusercontent.com/48232744/87551268-b2a09b80-c6e2-11ea-994b-9057d1c3f791.png)", "title": null, "type": "comment" }, { "action": "created", "author": "jacob314", "comment_id": 658975794, "datetime": 1594842952000, "masked_author": "username_9", "text": "@hterkelsen any advice on what we can do to avoid this crash in CanvasKit. Surprisingly it only reproduces for some users.", "title": null, "type": "comment" }, { "action": "created", "author": "jacob314", "comment_id": 658985091, "datetime": 1594844063000, "masked_author": "username_9", "text": "It appears that creating a webgl context may be failing. Do any WebGL apps work in your browser? For example: can you pleas try a sample from https://webglsamples.org/", "title": null, "type": "comment" }, { "action": "created", "author": "ezbella", "comment_id": 659029127, "datetime": 1594849523000, "masked_author": "username_4", "text": "I've tried 5 random samples. Every one of them worked.\r\n\r\n![image](https://user-images.githubusercontent.com/55261954/87601258-20d96400-c6cb-11ea-8441-453eba0f4c20.png)", "title": null, "type": "comment" }, { "action": "created", "author": "jacob314", "comment_id": 659595007, "datetime": 1594924548000, "masked_author": "username_9", "text": "Thanks for all your help debugging this. One more test to try:\r\nhttps://flutter-dashboard.appspot.com/#/build\r\nis also a canvaskit based flutter web app. Do you get the same exception when you run it or do you see something like this?\r\n<img width=\"902\" alt=\"Screen Shot 2020-07-16 at 11 35 15 AM\" src=\"https://user-images.githubusercontent.com/1226812/87709018-77d94a80-c758-11ea-87da-5f20d61b9dbf.png\">", "title": null, "type": "comment" }, { "action": "created", "author": "yjbanov", "comment_id": 659646038, "datetime": 1594930384000, "masked_author": "username_10", "text": "@username_6 I think what you are observing is an issue with the service worker caching a little too aggressively. You may need a _hard_ page reload to get the latest version (Cmd + Shift + R, or Ctrl + Shift + R).", "title": null, "type": "comment" }, { "action": "created", "author": "jacob314", "comment_id": 659660165, "datetime": 1594932046000, "masked_author": "username_9", "text": "@username_10, Is there a bug filed on the service working caching too aggressively? I'm guessing we want to use the service worker to make sure canvaskit is cached efficiently but we don't care about it for the rest of the appp as we are always running on localhost.", "title": null, "type": "comment" }, { "action": "created", "author": "ezbella", "comment_id": 659734342, "datetime": 1594942439000, "masked_author": "username_4", "text": "@username_9 A pleasure to help. Thank you guys for these amazing features!\r\nSame error is throwing in the web flutter app.\r\n\r\n![image](https://user-images.githubusercontent.com/55261954/87732500-8b5dd300-c7a3-11ea-8b92-7a41b16451a4.png)", "title": null, "type": "comment" }, { "action": "created", "author": "jacob314", "comment_id": 659807741, "datetime": 1594954744000, "masked_author": "username_9", "text": "Thanks @username_4!\r\nCan you provide some more details about what version of chrome you are using, what operating system you are running, and what video card you are using? \r\nYou might want to try disabling all extensions just in case some extension is interacting badly with CanvasKit but that is unlikely.\r\n\r\nfyi @hterkelsen it is confirmed that CanvasKit fails for all Flutter Web applications but strangely other WebGL samples succeed.\r\n\r\nThe next step on our end is to detect this crash and and fallback to the non-canvaskit renderer which is slower but works on more platforms.", "title": null, "type": "comment" }, { "action": "created", "author": "heroqin", "comment_id": 659890442, "datetime": 1594967258000, "masked_author": "username_8", "text": "Hi @username_9 I've test https://flutter-dashboard.appspot.com/#/build, in chrome, nothing output and error got:\r\n![图片](https://user-images.githubusercontent.com/48232744/87755168-1806a080-c839-11ea-89c2-58427b9d32f4.png)\r\n\r\nbut in firefox, it seems normal! :\r\n![图片](https://user-images.githubusercontent.com/48232744/87754721-20aaa700-c838-11ea-8bfd-051356b9f47f.png)\r\n\r\nchrome version: 版本 84.0.4147.89(正式版本) (64 位)\r\nOS:\r\n![图片](https://user-images.githubusercontent.com/48232744/87755289-4dab8980-c839-11ea-9a6e-12307ea57620.png)\r\nvideo card: \r\n![图片](https://user-images.githubusercontent.com/48232744/87755383-76cc1a00-c839-11ea-85d5-2dbfee15bb11.png)\r\nI think chrome use Intel HD graphic 520", "title": null, "type": "comment" }, { "action": "created", "author": "heroqin", "comment_id": 659894852, "datetime": 1594967842000, "masked_author": "username_8", "text": "Since firefox work well on https://flutter-dashboard.appspot.com/#/build. I tried to open http://127.0.0.1:9100/#/ using firefox, it works! :\r\n![图片](https://user-images.githubusercontent.com/48232744/87756156-f5758700-c83a-11ea-9394-0c8dc2310b02.png)", "title": null, "type": "comment" }, { "action": "created", "author": "ezbella", "comment_id": 660119764, "datetime": 1594994041000, "masked_author": "username_4", "text": "hi @username_9! i share the info you requested:\r\n_Chrome_: (btw not using any extension, just a clean installation) \r\n![image](https://user-images.githubusercontent.com/55261954/87792670-9acc3300-c81a-11ea-9de0-8d729834f474.png)\r\n\r\n_Windows Version:_\r\nflutter doctor -v\r\n[√] Flutter (Channel stable, v1.17.4, on **Microsoft Windows [Version 6.1.7601],** locale es-AR)\r\n• Flutter version 1.17.4 at c:\\flutter\r\n• Framework revision 1ad9baa8b9 (2 weeks ago), 2020-06-17 14:41:16 -0700\r\n• Engine revision ee76268252\r\n• Dart version 2.8.4\r\n\r\n_Video Card:_ (running on a Lenovo T430 series)\r\n![image](https://user-images.githubusercontent.com/55261954/87793207-568d6280-c81b-11ea-8e73-e718ac033e7f.png)\r\n\r\nAs a side note, i tried what @username_8 suggested and the flutter web app also worked in firefox.", "title": null, "type": "comment" }, { "action": "created", "author": "jacob314", "comment_id": 660126844, "datetime": 1594994871000, "masked_author": "username_9", "text": "Thanks @username_4 and @username_8. That is great news that it works on FireFox. We'll make devtools detect the error and provide an option to relaunch the app in FireFox if it occurs.", "title": null, "type": "comment" }, { "action": "created", "author": "ezbella", "comment_id": 660220023, "datetime": 1595004712000, "masked_author": "username_4", "text": "@username_9 You are mosltly welcome! Just ask if you need anything else.", "title": null, "type": "comment" }, { "action": "created", "author": "ynaiborlang", "comment_id": 660703173, "datetime": 1595190215000, "masked_author": "username_11", "text": "hi @username_9 https://flutter-dashboard.appspot.com/#/build does not work on firefox for me, got the same console error,", "title": null, "type": "comment" }, { "action": "created", "author": "azad47808", "comment_id": 660807332, "datetime": 1595222260000, "masked_author": "username_0", "text": "I changed my windows, but still not working.", "title": null, "type": "comment" }, { "action": "created", "author": "jacob314", "comment_id": 661208629, "datetime": 1595265506000, "masked_author": "username_9", "text": "@username_0 sorry to hear that. Can you provide details on your chrome version, operating system, and machine (e.g Lenovo T430)? Can you also provide a screenshot of what errors you see in chrome devtools when Dart DevTools does not work correctly? It could be you are seeing a different issue.", "title": null, "type": "comment" }, { "action": "created", "author": "elansys-kc", "comment_id": 662100268, "datetime": 1595364753000, "masked_author": "username_7", "text": "Mines a T410. I had exactly the same error on Windows as on Linux.\r\n\r\nIn firefox on Linux I get\r\n\r\nLoading failed for the <script> with source “https://unpkg.com/canvaskit-wasm@0.16.2/bin/canvaskit.js”\r\n\r\nI now get different console output on Linux with Chrome Version 84.0.4147.89.\r\n\r\nThe FetchEvent for \"https://unpkg.com/canvaskit-wasm@0.16.2/bin/canvaskit.js\" resulted in a network error response: the promise was rejected.\r\nPromise.then (async)\t\t\r\n(anonymous)\t@\tflutter_service_worker.js:389\r\nflutter_service_worker.js:1 \r\n\r\nUncaught (in promise) TypeError: Failed to fetch\r\ndom_renderer.dart:443 \r\n\r\nGET https://unpkg.com/canvaskit-wasm@0.16.2/bin/canvaskit.js net::ERR_FAILED\r\nreset$0\t@\tdom_renderer.dart:443\r\n(anonymous)\t@\tdom_renderer.dart:14\r\nholder.<computed>\t@\tmain.dart.js:99\r\ninitializeEngine\t@\tengine.dart:184\r\n(anonymous)\t@\tinitialization.dart:29\r\n(anonymous)\t@\tasync_patch.dart:315\r\ncall$2\t@\tasync_patch.dart:340\r\n_asyncStartSync\t@\tasync_patch.dart:245\r\n_initializePlatform\t@\tinitialization.dart:25\r\nwebOnlyInitializePlatform\t@\tinitialization.dart:12\r\n(anonymous)\t@\tmain.dart:11\r\n(anonymous)\t@\tasync_patch.dart:315\r\ncall$2\t@\tasync_patch.dart:340\r\n_asyncStartSync\t@\tasync_patch.dart:245\r\nmain0\t@\tmain.dart:8\r\n(anonymous)\t@\tjs_helper.dart:2677\r\n(anonymous)\t@\tjs_helper.dart:2677\r\ndartProgram\t@\tjs_helper.dart:2677\r\n(anonymous)\t@\tjs_helper.dart:2677", "title": null, "type": "comment" }, { "action": "created", "author": "elansys-kc", "comment_id": 662103199, "datetime": 1595365147000, "masked_author": "username_7", "text": "Ignore deleted previous. I had a js filter extension enabled (umatrix)\r\n\r\nMines a T410. I had exactly the same error on Windows as on Linux.\r\n\r\nIn firefox on Linux I get\r\n\r\nAnother exception was thrown: Instance of 'ErrorSummary' main.dart.js:5574:17\r\nError: WebGL warning: <SetDimensions>: Failed to create WebGL context: WebGL creation failed: \r\n* tryNativeGL\r\n* Exhausted GL driver options. 3 canvaskit.js:187:32\r\nAnother exception was thrown: Instance of 'ErrorSummary' main.dart.js:5574:17\r\nError: WebGL warning: <SetDimensions>: Failed to create WebGL context: WebGL creation failed: \r\n* tryNativeGL\r\n* Exhausted GL driver options.\r\n\r\n\r\nI now get different console output on Linux with Chrome Version 84.0.4147.89.\r\n\r\nPreferencesController: storage not initialized\r\nlogger_html.dart:10 \r\nDevTools version 0.8.0+2.\r\njs_helper.dart:1857 [Violation] 'setTimeout' handler took 437ms\r\njs_primitives.dart:47 ══╡ ╞══════════════════════════════════════════════════════════════════════════════════════════════\r\njs_primitives.dart:47 ════════════════════════════════════════════════════════════════════════════════════════════════════\r\njs_helper.dart:1857 [Violation] 'setTimeout' handler took 153ms\r\nhtml_dart2js.dart:23739 [Violation] Only request notification permission in response to a user gesture.\r\nNotification__requestPermission @ html_dart2js.dart:23739\r\nNotification_requestPermission @ html_dart2js.dart:23745\r\n_handleMethod$2 @ notifications_web.dart:15\r\n_handleMessage$1 @ server_api_client.dart:116\r\ncall$1 @ server_api_client.dart:22\r\nrunUnaryGuarded$1$2 @ zone.dart:1384\r\nrunUnaryGuarded$2 @ zone.dart:1381\r\n_sendData$1 @ stream_impl.dart:357\r\nperform$1 @ stream_impl.dart:611\r\nhandleNext$1 @ stream_impl.dart:730\r\ncall$0 @ stream_impl.dart:687\r\n_microtaskLoop @ schedule_microtask.dart:41\r\n_startMicrotaskLoop @ schedule_microtask.dart:50\r\ncall$1 @ async_patch.dart:49\r\ninvokeClosure @ js_helper.dart:1825\r\n(anonymous) @ js_helper.dart:1857\r\n6js_primitives.dart:47 Another exception was thrown: Instance of 'ErrorSummary'\r\n250[Violation] 'requestAnimationFrame' handler took <N>ms\r\n8js_primitives.dart:47 Another exception was thrown: Instance of 'ErrorSummary'\r\n2js_primitives.dart:47 Another exception was thrown: Instance of 'ErrorSummary'\r\njs_helper.dart:1857 [Violation] 'setTimeout' handler took 150ms\r\n4218js_primitives.dart:47 Another exception was thrown: Instance of 'ErrorSummary'", "title": null, "type": "comment" }, { "action": "created", "author": "azad47808", "comment_id": 662232289, "datetime": 1595391616000, "masked_author": "username_0", "text": "I don't know, What happened but now it working right.", "title": null, "type": "comment" }, { "action": "created", "author": "elansys-kc", "comment_id": 662318648, "datetime": 1595406430000, "masked_author": "username_7", "text": "Disabling hw acceleration in Chrome under advanced settings, works around it. Might be the better fix for other possibly broken canvas pages too, not sure?\r\n\r\nOn a side note, on the same hw flutter development was a little slow waiting for the files to sync to chrome without an SSD. Not sure if Linux being configured to handle smaller files would have helped there or not. This might be a performance metric that goes unnoticed by devs. I think that SSD use may have worsened the HDD case for windows update speed issues, incidentally.", "title": null, "type": "comment" }, { "action": "created", "author": "RahmatAliMalik5", "comment_id": 662320452, "datetime": 1595406651000, "masked_author": "username_12", "text": "I am also getting white screen when try to open the `devtools`. Here are the info you may find usefule:\r\n\r\nChrome Version: 84.0.4147.89 (Official Build) (64-bit)\r\n\r\nConsole: \r\n![image](https://user-images.githubusercontent.com/31620469/88153588-0b11f480-cc1f-11ea-9060-2e08440e876a.png)\r\n\r\nError in Source Panel:\r\n![image](https://user-images.githubusercontent.com/31620469/88153901-7bb91100-cc1f-11ea-8dc4-390141a9e9ae.png)\r\n\r\nI have disabled all of the extensions in chrome. Let me know if anyone requires more info.", "title": null, "type": "comment" }, { "action": "created", "author": "RahmatAliMalik5", "comment_id": 662323403, "datetime": 1595407014000, "masked_author": "username_12", "text": "As @username_7, suggested. Disabling Hardware Acceleration in Advanced Settings making it work fine.", "title": null, "type": "comment" }, { "action": "created", "author": "AlexanderTopchiy", "comment_id": 662899930, "datetime": 1595495299000, "masked_author": "username_3", "text": "As @username_7 mentioned, disabling Hardware acceleration in Advanced settings - is the appropriate workaround.", "title": null, "type": "comment" }, { "action": "created", "author": "jacob314", "comment_id": 663120301, "datetime": 1595523597000, "masked_author": "username_9", "text": "We've published devtools 0.8.0+3 which adds an automatic fallback to a non CanvasKit version of Flutter Web if we detect that Flutter is having problems. You will now see a dialog asking if you are ok with opening the fallback version of DevTools that uses Flutter Web but not CanvasKit. Please let me know if it works for you. When I test locally, the performance of the non-CanvasKit version is worse than the CanvasKit version but significantly better than the performance of the CanvasKit version when hardware acceleration is disabled.\r\nYou can also manually open the fallback version by opening\r\n`http://localhost:9100/index_fallback.html#/`", "title": null, "type": "comment" }, { "action": "created", "author": "elansys-kc", "comment_id": 663765579, "datetime": 1595631476000, "masked_author": "username_7", "text": "I can confirm that with hw accel enabled, it asks and then works for me.\r\nThanks Everyone", "title": null, "type": "comment" }, { "action": "created", "author": "yjbanov", "comment_id": 670678233, "datetime": 1596828732000, "masked_author": "username_10", "text": "I recently discovered that due to some hardware/OS/driver reasons Chrome disables WebGL 2 and falls back to WebGL 1. Due to a bug we'd assume that in this situation WebGL is not supported at all.\r\n\r\nUnfortunately I don't have a Windows 7 computer that demonstrates this, but I saw it on a Moto E5 phone. The fix is coming in https://github.com/flutter/flutter/pull/63153. I'd be curious if it fixes the Windows issue as well.", "title": null, "type": "comment" }, { "action": "created", "author": "yjbanov", "comment_id": 671658837, "datetime": 1597106427000, "masked_author": "username_10", "text": "https://github.com/flutter/flutter/pull/63153 has landed. Can you please verify if this is still an issue?", "title": null, "type": "comment" }, { "action": "created", "author": "ezbella", "comment_id": 671676058, "datetime": 1597110361000, "masked_author": "username_4", "text": "It is working for me with the fallback workaround in chrome. Thanks !", "title": null, "type": "comment" }, { "action": "created", "author": "yjbanov", "comment_id": 673629085, "datetime": 1597341985000, "masked_author": "username_10", "text": "@username_4 Do you know if it's falling back to WebGL1 or HTML?", "title": null, "type": "comment" }, { "action": "created", "author": "ezbella", "comment_id": 673637129, "datetime": 1597342994000, "masked_author": "username_4", "text": "If you tell me how to figure it out i will check and tell you.", "title": null, "type": "comment" }, { "action": "created", "author": "yjbanov", "comment_id": 675103620, "datetime": 1597696915000, "masked_author": "username_10", "text": "We should provide a better way to do it, but right now you can get this information using Chrome DevTools.\r\n\r\nIf the `<flt-scene>` element has one `<canvas>` child and nothing else, then you are using CanvasKit. If there's no warning in the console reading \"WARNING: failed to initialize WebGL. Falling back to CPU-only rendering.\", then the canvas is hardware-accelerated using WebGL; otherwise, it's rendered using CPU (and probably is visibly slow).\r\n\r\nIf you see `<flt-scene>` containing many elements, such as `<flt-offset>`, `<flt-transform>`, or `<flt-picture>`, then you are using the HTML renderer.", "title": null, "type": "comment" }, { "action": "created", "author": "elansys-kc", "comment_id": 676513914, "datetime": 1597852790000, "masked_author": "username_7", "text": "I have just a canvas inside <flt-scene>\r\n\r\np.s. Should an issue be filed for devtools now requiring internet access, to download canvaskit from:\r\n\"https://unpkg.com/canvaskit-wasm@0.17.2/bin/canvaskit.js\"\r\n\r\nOr is that intended?", "title": null, "type": "comment" }, { "action": "created", "author": "yjbanov", "comment_id": 683454155, "datetime": 1598812242000, "masked_author": "username_10", "text": "@username_7 Thanks for checking! We should provide an option to bundle CanvasKit with your app so you don't have to fetch it from unpkg.com. Can you please file an issue for that?", "title": null, "type": "comment" }, { "action": "created", "author": "yjbanov", "comment_id": 685822610, "datetime": 1599061406000, "masked_author": "username_10", "text": "Should we close this issue?", "title": null, "type": "comment" }, { "action": "closed", "author": "kenzieschmoll", "comment_id": null, "datetime": 1603474667000, "masked_author": "username_5", "text": "", "title": null, "type": "issue" } ]
13
67
22,392
false
false
22,392
true
angular/angular
angular
307,253,689
22,909
{ "number": 22909, "repo": "angular", "user_login": "angular" }
[ { "action": "opened", "author": "csutorasr", "comment_id": null, "datetime": 1521640378000, "masked_author": "username_0", "text": "All travis code is changed to circleci.\r\n\r\n## PR Checklist\r\nPlease check if your PR fulfills the following requirements:\r\n\r\n- [x] The commit message follows our guidelines: https://github.com/angular/angular/blob/master/CONTRIBUTING.md#commit\r\n- [ ] Tests for the changes have been added (for bug fixes / features)\r\n- [x] Docs have been added / updated (for bug fixes / features)\r\n\r\n\r\n## PR Type\r\nWhat kind of change does this PR introduce?\r\n\r\n<!-- Please check the one that applies to this PR using \"x\". -->\r\n```\r\n[ ] Bugfix\r\n[ ] Feature\r\n[ ] Code style update (formatting, local variables)\r\n[ ] Refactoring (no functional changes, no api changes)\r\n[ ] Build related changes\r\n[x] CI related changes\r\n[ ] Documentation content changes\r\n[ ] angular.io application / infrastructure changes\r\n[ ] Other... Please describe:\r\n```\r\n\r\nIssue Number: #21709 \r\n\r\n## Other information", "title": "Testing with CircleCI", "type": "issue" }, { "action": "created", "author": "csutorasr", "comment_id": 376787448, "datetime": 1522221715000, "masked_author": "username_0", "text": "Hi!\r\n\r\nThen take it as a proof of concept and I help you.", "title": null, "type": "comment" } ]
4
6
2,183
false
true
929
false
kubeflow/pipelines
kubeflow
689,221,171
4,434
null
[ { "action": "opened", "author": "kamalmemon", "comment_id": null, "datetime": 1598881584000, "masked_author": "username_0", "text": "According to [documentation](https://www.kubeflow.org/docs/pipelines/sdk/pipelines-metrics/) in order to enable metrics, your program must write out a file named `/mlpipeline-metrics.json` and this [stackoverflow answer](https://stackoverflow.com/a/60742184/3711575) says that you have to add the `file_outputs` in `dsl.ContainerOp` method. \r\n\r\nHowever, while creating a component, I am unable to do so when using `create_component_from_func` method. I have added `mlpipeline_metrics: OutputPath('mlpipeline-metrics')` in my component args but to no avail. \r\n\r\nHere is the full component:\r\n\r\n`from kfp.components import InputPath, OutputPath, create_component_from_func\r\n\r\ndef xgboost_train_eval(\r\n processed_data_path: InputPath('CSV'),\r\n model_path: OutputPath('XGBoostModel'),\r\n model_config_path: OutputPath('XGBoostModelConfig'),\r\n mlpipeline_metrics: OutputPath('mlpipeline-metrics'),\r\n\r\n label_column: str = 'install',\r\n num_iterations: int = 10,\r\n booster_params: dict = None,\r\n\r\n # Train-test split ratio\r\n test_size: float = 0.25,\r\n\r\n # Booster parameters\r\n objective: str = 'binary:logistic',\r\n booster: str = 'gbtree',\r\n learning_rate: float = 0.3,\r\n min_split_loss: float = 0,\r\n max_depth: int = 6,\r\n eval_metric: str = 'logloss',\r\n \r\n):\r\n \r\n import json\r\n import pandas as pd\r\n import xgboost as xgb\r\n from sklearn.model_selection import train_test_split\r\n from sklearn.metrics import roc_auc_score, log_loss\r\n from tensorflow.python.lib.io import file_io\r\n\r\n # Read csv in pandas dataframe\r\n df = pd.read_csv(\r\n processed_data_path,\r\n )\r\n\r\n X = df.drop(columns=[label_column])\r\n y = df.loc[:, label_column]\r\n\r\n # Train-test split\r\n X_train, X_test, y_train, y_test = train_test_split(X, y,\r\n test_size=0.25,\r\n stratify=y)\r\n\r\n # Convert train/test datasets into the optimized DMatrix data structure\r\n dtrain = xgb.DMatrix(X_train, label=y_train)\r\n dtest = xgb.DMatrix(X_test, label=y_test)\r\n\r\n # Set default booster parameters if not passed as arguments\r\n booster_params = booster_params or {}\r\n booster_params.setdefault('objective', objective)\r\n booster_params.setdefault('booster', booster)\r\n booster_params.setdefault('learning_rate', learning_rate)\r\n booster_params.setdefault('min_split_loss', min_split_loss)\r\n booster_params.setdefault('max_depth', max_depth)\r\n booster_params.setdefault('eval_metric', eval_metric)\r\n\r\n print('Training model... this might take a while')\r\n # Train model\r\n model = xgb.train(\r\n params=booster_params,\r\n dtrain=dtrain,\r\n num_boost_round=num_iterations,\r\n evals=[(dtrain, \"train\")],\r\n verbose_eval=2\r\n )\r\n\r\n # Saving the model in binary format\r\n model.save_model(model_path)\r\n\r\n # Saving model config as JSON string\r\n model_config_str = model.save_config()\r\n with open(model_config_path, 'w') as model_config_file:\r\n model_config_file.write(model_config_str)\r\n\r\n # predict test data probabilites\r\n y_proba = model.predict(dtest)\r\n \r\n # evaluate model on test data\r\n loss = log_loss(y_test, y_proba)\r\n roc_auc = roc_auc_score(y_test, y_proba)\r\n\r\n # Exporting eval metrics for KF pipeline\r\n metrics = {\r\n 'metrics': [\r\n {\r\n 'name': 'roc-auc-score',\r\n 'numberValue': roc_auc\r\n }, \r\n {\r\n 'name': 'log-loss',\r\n 'numberValue': loss\r\n }\r\n ]\r\n }\r\n \r\n with file_io.FileIO('/mlpipeline-metrics.json', 'w') as f:\r\n json.dump(metrics, f)\r\n\r\n\r\nif __name__ == '__main__':\r\n create_component_from_func(\r\n xgboost_train_eval,\r\n output_component_file='component.yaml',\r\n base_image='python:3.7',\r\n packages_to_install=[\r\n 'xgboost==1.1.1',\r\n 'pandas==1.0.5',\r\n 'scikit_learn==0.23.2',\r\n 'tensorflow==1.15.0',\r\n 'gcsfs==0.7.0'\r\n ]\r\n )\r\n`", "title": "metric export from create_component_from_func", "type": "issue" }, { "action": "closed", "author": "kamalmemon", "comment_id": null, "datetime": 1598891345000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "kamalmemon", "comment_id": 683887011, "datetime": 1598891345000, "masked_author": "username_0", "text": "I resolved this issue by adding `mlpipeline_metrics_path: OutputPath()` instead of `mlpipeline_metrics: OutputPath('mlpipeline-metrics')` in my component arguments. And then instead of writing to `with file_io.FileIO('/mlpipeline-metrics.json', 'w') as f:` I used the metrics output path as `with file_io.FileIO(mlpipeline_metrics_path, 'w') as f:`.\r\n\r\nThis approach worked and now I can see the metrics in the pipeline UI.", "title": null, "type": "comment" } ]
1
3
4,559
false
false
4,559
false
hsuanxyz/ng-zorro-antd
null
458,974,836
1
{ "number": 1, "repo": "ng-zorro-antd", "user_login": "hsuanxyz" }
[ { "action": "opened", "author": "hsuanxyz", "comment_id": null, "datetime": 1561083414000, "masked_author": "username_0", "text": "## PR Checklist\r\nPlease check if your PR fulfills the following requirements:\r\n\r\n- [ ] The commit message follows our guidelines: https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/CONTRIBUTING.md#commit\r\n- [ ] Tests for the changes have been added (for bug fixes / features)\r\n- [ ] Docs have been added / updated (for bug fixes / features)\r\n\r\n\r\n## PR Type\r\nWhat kind of change does this PR introduce?\r\n\r\n<!-- Please check the one that applies to this PR using \"x\". -->\r\n```\r\n[ ] Bugfix\r\n[ ] Feature\r\n[ ] Code style update (formatting, local variables)\r\n[ ] Refactoring (no functional changes, no api changes)\r\n[ ] Build related changes\r\n[ ] CI related changes\r\n[ ] Documentation content changes\r\n[ ] Application (the showcase website) / infrastructure changes\r\n[ ] Other... Please describe:\r\n```\r\n\r\n## What is the current behavior?\r\n<!-- Please describe the current behavior that you are modifying, or link to a relevant issue. -->\r\n\r\nIssue Number: N/A\r\n\r\n\r\n## What is the new behavior?\r\n\r\n\r\n## Does this PR introduce a breaking change?\r\n```\r\n[ ] Yes\r\n[ ] No\r\n```\r\n\r\n<!-- If this PR contains a breaking change, please describe the impact and migration path for existing applications below. -->\r\n\r\n\r\n## Other information", "title": "Chore/now preview", "type": "issue" } ]
2
2
1,551
false
true
1,223
false
deislabs/porter
deislabs
439,769,828
315
null
[ { "action": "opened", "author": "carolynvs", "comment_id": null, "datetime": 1556828349000, "masked_author": "username_0", "text": "Now that the CNAB spec is soooo close to merging the [outputs proposal](https://github.com/deislabs/cnab-spec/pull/133), we can finally do dependencies the way that we always wanted. Executing dependencies in the original bundle at runtime, instead of merging them into a single invocation image during build.\r\n\r\nA number of changes will need to be made to support this redesign, so this may end up becoming a milestone so that we can track it properly.\r\n\r\nAt a high level:\r\n* Do not merge manifests of dependencies\r\n* Do not copy dependent bundles into bundle during `porter build`\r\n* Use https://github.com/deislabs/duffle/pull/661 to support executing dependent bundles from inside a bundle when a bundle has dependencies.\r\n* Wire up a bundle's outputs into bundle.dependencies.NAME.outputs", "title": "Execute dependencies in their original bundle", "type": "issue" }, { "action": "created", "author": "carolynvs", "comment_id": 503712104, "datetime": 1560972073000, "masked_author": "username_0", "text": "I decided to split this up because it's going to be a lot of changes and really needs to go in as separate issues/pull requests.", "title": null, "type": "comment" }, { "action": "closed", "author": "carolynvs", "comment_id": null, "datetime": 1560972074000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
1
3
921
false
false
921
false
HaarigerHarald/android-youtubeExtractor
null
666,943,577
155
null
[ { "action": "opened", "author": "williamycyh", "comment_id": null, "datetime": 1595930379000, "masked_author": "username_0", "text": "Matcher mat = patSignatureDecFunction.matcher(javascriptFile);\r\nin\r\ndecipherSignature function cannot match anythings.\r\n\r\nsample url\r\nhttps://www.youtube.com/watch?v=gkAHSL003PA\r\nhttps://www.youtube.com/watch?v=wGfnUwBK5Ow", "title": "url with encryption cannot extractor:something wrong with 'patSignatureDecFunction'", "type": "issue" }, { "action": "created", "author": "sametserpil", "comment_id": 665021446, "datetime": 1595940807000, "masked_author": "username_1", "text": "ytFiles is always null", "title": null, "type": "comment" }, { "action": "created", "author": "xibr", "comment_id": 665107015, "datetime": 1595949959000, "masked_author": "username_2", "text": "check this ([#154](https://github.com/HaarigerHarald/android-youtubeExtractor/pull/154)) to fix or wait for @HaarigerHarald yo merging this change.", "title": null, "type": "comment" }, { "action": "created", "author": "fuelmandevteam", "comment_id": 846969731, "datetime": 1621854597000, "masked_author": "username_3", "text": "getting same issue", "title": null, "type": "comment" } ]
4
4
410
false
false
410
false
robfig/cron
null
505,090,184
245
null
[ { "action": "opened", "author": "zhonghua1219", "comment_id": null, "datetime": 1570692705000, "masked_author": "username_0", "text": "The memory always increases since the program start , I find that this is cased by time.NewTimer in the cron.go file on line 248.\r\nAny one has some method to resolve it ?", "title": "Memory leak", "type": "issue" }, { "action": "created", "author": "felix0080", "comment_id": 543588420, "datetime": 1571386323000, "masked_author": "username_1", "text": "Maybe you should provide more information, maybe it's because you used it incorrectly.", "title": null, "type": "comment" }, { "action": "created", "author": "robfig", "comment_id": 555626238, "datetime": 1574185702000, "masked_author": "username_2", "text": "If you'd like to provide more information, please feel free to reopen.", "title": null, "type": "comment" }, { "action": "closed", "author": "robfig", "comment_id": null, "datetime": 1574185702000, "masked_author": "username_2", "text": "", "title": null, "type": "issue" } ]
3
4
327
false
false
327
false
advancedfx/advancedfx
advancedfx
557,514,145
265
null
[ { "action": "opened", "author": "FlowingSPDG", "comment_id": null, "datetime": 1580392925000, "masked_author": "username_0", "text": "Add spec number in killfeed like pre-PanoramaHUD with `cl_deathnotices_show_numbers`.\r\nThis helps observer to chose POV in live-production.\r\n```mirv_deathmsg cfg appendSpecNumber 1``` or something", "title": "add spec number in killfeed", "type": "issue" }, { "action": "closed", "author": "dtugend", "comment_id": null, "datetime": 1580400193000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
2
196
false
false
196
false
espnet/espnet
espnet
679,734,379
2,317
{ "number": 2317, "repo": "espnet", "user_login": "espnet" }
[ { "action": "opened", "author": "kan-bayashi", "comment_id": null, "datetime": 1597575794000, "masked_author": "username_0", "text": "Fix #2282", "title": "Fix device allocation error in guided attention loss #2282", "type": "issue" } ]
2
2
9
false
true
9
false
appirio-tech/connect-app
appirio-tech
554,697,806
3,516
null
[ { "action": "opened", "author": "vikasrohit", "comment_id": null, "datetime": 1579867313000, "masked_author": "username_0", "text": "### Expected behavior\r\n- All project status updates should be reflected in corresponding direct project, if available.\r\n- Direct project should be created in Draft status if possible.\r\n\r\n### Actual behavior\r\n- None of the project status change is synced back to the direct project as of now\r\n- Direct project is created in Active status by default\r\n\r\n### Steps to reproduce the problem\r\n- Create a project in Connect\r\n- Update the Connect project status to say `Cancelled`\r\n- Open the direct project associated with the newly created project\r\n- Observe that direct project is not cancelled yet\r\n\r\n### Screenshot/screencast\r\n<img width=\"368\" alt=\"Screen Shot 2020-01-24 at 5 29 30 PM\" src=\"https://user-images.githubusercontent.com/2417632/73067638-41b8bd80-3ecf-11ea-9da8-d140c84beaeb.png\">", "title": "Sync project status to the direct projects", "type": "issue" }, { "action": "created", "author": "vikasrohit", "comment_id": 578103450, "datetime": 1579867333000, "masked_author": "username_0", "text": "@username_1 let me know your thoughts", "title": null, "type": "comment" }, { "action": "created", "author": "maxceem", "comment_id": 578126679, "datetime": 1579872002000, "masked_author": "username_1", "text": "@username_0 In general, it looks like straightforward to implement using our new [legacy-project-processor](https://github.com/topcoder-platform/legacy-project-processor) which we use to update Direct projects. The only question is if we prefer to use Direct API for new functionality or directly call InformixDB as it's done now for existent functionality.", "title": null, "type": "comment" }, { "action": "created", "author": "vikasrohit", "comment_id": 578598798, "datetime": 1580103499000, "masked_author": "username_0", "text": "I am not sure about continuing with the InformixDB calls. Personally, I would prefer the API calls, but I guess, there is some other thinking behind using the SQL instead in first place. I would try to confirm it with the team and come up with a decision.", "title": null, "type": "comment" }, { "action": "created", "author": "vikasrohit", "comment_id": 578598949, "datetime": 1580103554000, "masked_author": "username_0", "text": "On the second thoughts, I think we can continue with SQL for implementing this and later on we can remove the usage of the SQL altogether when we do refactoring for this.", "title": null, "type": "comment" } ]
2
5
1,606
false
false
1,606
true
escuelavirtual/frontend
escuelavirtual
694,214,141
64
{ "number": 64, "repo": "frontend", "user_login": "escuelavirtual" }
[ { "action": "opened", "author": "CoffeJeanCode", "comment_id": null, "datetime": 1599352526000, "masked_author": "username_0", "text": "", "title": "fix(files): change the organization and deleting trash code", "type": "issue" }, { "action": "created", "author": "alejandro088", "comment_id": 689126557, "datetime": 1599597945000, "masked_author": "username_1", "text": "Hay conflictos que no se pueden resolver desde el editor.", "title": null, "type": "comment" } ]
3
3
3,046
false
true
57
false
styled-components/styled-components-website
styled-components
689,197,921
720
{ "number": 720, "repo": "styled-components-website", "user_login": "styled-components" }
[ { "action": "opened", "author": "vzaidman", "comment_id": null, "datetime": 1598879621000, "masked_author": "username_0", "text": "clarify how multiple layers of .attrs work to prevent confusions like in this issue: https://github.com/styled-components/styled-components/issues/3178", "title": "clarify how multiple layers of .attrs work", "type": "issue" }, { "action": "created", "author": "vzaidman", "comment_id": 703055159, "datetime": 1601706480000, "masked_author": "username_0", "text": "took all suggestions. thanks!", "title": null, "type": "comment" } ]
2
3
384
false
true
180
false
spatialos/UnrealGDK
spatialos
681,016,129
2,475
{ "number": 2475, "repo": "UnrealGDK", "user_login": "spatialos" }
[ { "action": "opened", "author": "samiwh", "comment_id": null, "datetime": 1597755002000, "masked_author": "username_0", "text": "#### Description\r\nDefault enable spatial view", "title": "Default enable SpatialView", "type": "issue" }, { "action": "created", "author": "mironec", "comment_id": 675642460, "datetime": 1597775388000, "masked_author": "username_1", "text": "Also, is the setting exposed in the spatialos settings? I think I would prefer it exposed for the first release + the release note Mike mentioned.", "title": null, "type": "comment" }, { "action": "created", "author": "samiwh", "comment_id": 675667010, "datetime": 1597778549000, "masked_author": "username_0", "text": "Making the option exposed makes sense. Also makes the release note easier to write as it's not a pure internal feature then.\r\nWill do", "title": null, "type": "comment" } ]
2
3
324
false
false
324
false
twilio/video-quickstart-ios
twilio
577,656,484
458
null
[ { "action": "opened", "author": "mrchauhan2802", "comment_id": null, "datetime": 1583729336000, "masked_author": "username_0", "text": "[Personally Identifiable Information(PII)](https://www.twilio.com/docs/glossary/what-is-personally-identifiable-information-pii)\r\nor sensitive account information (API keys, credentials, etc.) when reporting an issue.\r\n\r\n### Description\r\n\r\n[Description of the issue]\r\n\r\n### Steps to Reproduce\r\n\r\n1. [Step one]\r\n2. [Step two]\r\n3. [Insert as many steps as needed]\r\n\r\n#### Code\r\n\r\n```swift\r\n// Code that helps reproduce the issue\r\n```\r\n\r\n#### Expected Behavior\r\n\r\n[What you expect to happen]\r\n\r\n#### Actual Behavior\r\n\r\n[What actually happens]\r\n\r\n#### Reproduces How Often\r\n\r\n[What percentage of the time does it reproduce?]\r\n\r\n#### Logs\r\nDebug level logs are helpful when investigating issues. To enable debug level logging, add the following code to your application:\r\n\r\n```.swift\r\nTwilioVideoSDK.setLogLevel(.debug)\r\n```\r\n\r\n```\r\n// Log output when the issue occurs\r\n```\r\n\r\n### Versions\r\n\r\nAll relevant version information for the issue.\r\n\r\n#### Video iOS SDK\r\n\r\n[e.g. 1.3.12 via CocoaPods]\r\n\r\n#### Xcode\r\n\r\n[e.g. 9.2]\r\n\r\n#### iOS Version\r\n\r\n[e.g. 11.2.6]\r\n\r\n#### iOS Device\r\n\r\n[e.g. iPhone 8 Plus]", "title": "Video is not preview in one side ", "type": "issue" }, { "action": "created", "author": "ceaglest", "comment_id": 597140354, "datetime": 1583853132000, "masked_author": "username_1", "text": "Hi @username_0,\r\n\r\nCan you please fill out the issue template? We're not sure how to help you without more information.\r\n\r\nThank you,\r\nChris", "title": null, "type": "comment" }, { "action": "created", "author": "mrchauhan2802", "comment_id": 602434885, "datetime": 1584949432000, "masked_author": "username_0", "text": "I updated now please help", "title": null, "type": "comment" }, { "action": "created", "author": "ceaglest", "comment_id": 603380995, "datetime": 1585070119000, "masked_author": "username_1", "text": "We don't have enough information from you to debug the problem. Can you please provide a Room SID where the problem occurred, and if possible debug logs from the device that could not see video?\r\n\r\nOur automated testers that cover this case aren't experiencing the same problem.\r\n\r\nThanks,\r\nChris", "title": null, "type": "comment" }, { "action": "created", "author": "mrchauhan2802", "comment_id": 603641203, "datetime": 1585112367000, "masked_author": "username_0", "text": "But when I run the app no log is printed", "title": null, "type": "comment" }, { "action": "created", "author": "ceaglest", "comment_id": 604608629, "datetime": 1585248082000, "masked_author": "username_1", "text": "Hi @username_0,\r\n\r\nFrom the issue template, you can enable debug logs with this snippet:\r\n\r\n```.swift\r\nTwilioVideoSDK.setLogLevel(.debug)\r\n```\r\n\r\nAlso, you can use the [TVIRoom.sid](https://twilio.github.io/twilio-video-ios/docs/latest/Classes/TVIRoom.html#//api/name/sid) property to get a Room SID at any time after connecting.\r\n\r\nPlease let us know,\r\nChris", "title": null, "type": "comment" }, { "action": "created", "author": "mrchauhan2802", "comment_id": 605404719, "datetime": 1585377684000, "masked_author": "username_0", "text": "2020-03-28 17:32:19.997100+1100 MDLink Health[13454:4767886] Metal GPU Frame Capture Enabled\r\n2020-03-28 17:32:19.999669+1100 MDLink Health[13454:4767886] Metal API Validation Enabled\r\nhttp://api.themdlink.com/api/v1/twillo-token?identity=2F3B1031-F613-4B8F-AD66-8343E4493FDC&room_name=appo_room_4744\r\n2020-03-28 17:32:27.549088+1100 MDLink Health[13454:4768652] INFO:Twilio:[Core](0x16c513000): Will connect to host global.vss.twilio.com.\r\n2020-03-28 17:32:27.569019+1100 MDLink Health[13454:4768652] DEBUG:Twilio:[Core](0x16c513000): Resolved host global.vss.twilio.com.\r\n2020-03-28 17:32:27.569118+1100 MDLink Health[13454:4768652] DEBUG:Twilio:[Core](0x16c513000): Connecting to 13.237.66.112...\r\n2020-03-28 17:32:27.604987+1100 MDLink Health[13454:4768652] DEBUG:Twilio:[Core](0x16c513000): Connected to 13.237.66.112.\r\n2020-03-28 17:32:27.605072+1100 MDLink Health[13454:4768652] DEBUG:Twilio:[Core](0x16c513000): Established a TCP connection with 13.237.66.112.\r\n2020-03-28 17:32:27.676715+1100 MDLink Health[13454:4768652] DEBUG:Twilio:[Core](0x16c513000): Completed a TLS handshake with 13.237.66.112.\r\n2020-03-28 17:32:27.677215+1100 MDLink Health[13454:4768652] DEBUG:Twilio:[Core](0x16c513000): Sending WebSocket handshake:\r\nGET /signaling HTTP/1.1\r\n\r\nHost: global.vss.twilio.com\r\n\r\nUpgrade: websocket\r\n\r\nConnection: upgrade\r\n\r\nSec-WebSocket-Key: ypzVA1hUROEiRDGwcvIfYw==\r\n\r\nSec-WebSocket-Version: 13\r\n\r\nSec-WebSocket-Extensions: permessage-deflate; server_max_window_bits=15; client_max_window_bits=15\r\n\r\nUser-Agent: Boost.Beast/277 twilio-video-cpp/5.1.1\r\n2020-03-28 17:32:27.706390+1100 MDLink Health[13454:4768652] DEBUG:Twilio:[Core](0x16c513000): Received WebSocket response:\r\nHTTP/1.1 101 Switching Protocols\r\n\r\nDate: Sat, 28 Mar 2020 06:32:27 GMT\r\n\r\nConnection: upgrade\r\n\r\nSec-WebSocket-Accept: yCbHOdq5Cx4y/F+vgOMxw+vnXbw=\r\n\r\nSec-WebSocket-Extensions: permessage-deflate\r\n\r\nUpgrade: WebSocket\r\n2020-03-28 17:32:27.706661+1100 MDLink Health[13454:4768652] INFO:Twilio:[Core](0x16c513000): Completed WebSocket handshake with 13.237.66.112.\r\n2020-03-28 17:32:27.708235+1100 MDLink Health[13454:4768652] DEBUG:Twilio:[Core](0x16c513000): Sending message (76 bytes):\r\n{\"id\":\"6fdf79c0-b82f-4f0e-9fcb-1710f82414a9\",\"timeout\":5000,\"type\":\"hello\"}\r\n2020-03-28 17:32:27.755083+1100 MDLink Health[13454:4768652] DEBUG:Twilio:[Core](0x16c513000): Received message:\r\n{\"negotiatedTimeout\":5000,\"type\":\"welcome\"}\r\n2020-03-28 17:32:27.755860+1100 MDLink Health[13454:4768652] DEBUG:Twilio:[Core](0x16c513000): Connection 6fdf79c0-b82f-4f0e-9fcb-1710f82414a9 is ready.\r\n2020-03-28 17:32:28.630011+1100 MDLink Health[13454:4768464] DEBUG:Twilio:[Core](0x16c13f000): Parsing 'video' endpoint config: {\"video\":{\"network_traversal_service\":{\"ttl\":14400,\"date_created\":\"Sat, 28 Mar 2020 06:32:28 +0000\",\"date_updated\":\"Sat, 28 Mar 2020 06:32:28 +0000\",\"capability_token\":\"video\",\"ice_servers\":[{\"urls\":\"turn:global.turn.twilio.com:3478?transport=udp\",\"username\":\"f0222930178e1441ebcf439833875d33a3be309323bbf2464a4a9ee64d81537a\",\"credential\":\"iY5aquJjMks1/QQHumfsdK3f8xrCKxl9DjdgrB4zgik=\"},{\"urls\":\"turns:global.turn.twilio.com:443?transport=tcp\",\"username\":\"f0222930178e1441ebcf439833875d33a3be309323bbf2464a4a9ee64d81537a\",\"credential\":\"iY5aquJjMks1/QQHumfsdK3f8xrCKxl9DjdgrB4zgik=\"}]}}}\r\n2020-03-28 17:32:28.630560+1100 MDLink Health[13454:4768440] DEBUG:Twilio:[Core](0x16bf0f000): RoomSignalingImpl: State transition successful: kInit -> kConnecting\r\n2020-03-28 17:32:28.630860+1100 MDLink Health[13454:4768440] DEBUG:Twilio:[Core](0x16bf0f000): AppleReachability::AppleReachability()\r\n2020-03-28 17:32:28.631067+1100 MDLink Health[13454:4768440] DEBUG:Twilio:[Core](0x16bf0f000): Creating zeroAddrReachability\r\n2020-03-28 17:32:28.632234+1100 MDLink Health[13454:4768440] DEBUG:Twilio:[Core](0x16bf0f000): AppleReachability::onConnectionEstablished, socket_fd = 35\r\n2020-03-28 17:32:28.633381+1100 MDLink Health[13454:4768440] DEBUG:Twilio:[Core](0x16bf0f000): AppleReachability started listening on address pair on 35 socket\r\n2020-03-28 17:32:28.633798+1100 MDLink Health[13454:4768440] DEBUG:Twilio:[Core](0x16bf0f000): Starting the Network Manager\r\n2020-03-28 17:32:28.634337+1100 MDLink Health[13454:4768535] INFO:Twilio:[Core](MediaFactoryImpl::signaling): Creating peer connection ...\r\n2020-03-28 17:32:28.639847+1100 MDLink Health[13454:4768535] INFO:Twilio:[Core](MediaFactoryImpl::signaling): Adding local stream to peer connection ...\r\n2020-03-28 17:32:28.640609+1100 MDLink Health[13454:4768440] DEBUG:Twilio:[Core](0x16bf0f000): Open -> Updating. Process an event\r\n2020-03-28 17:32:28.640826+1100 MDLink Health[13454:4768535] DEBUG:Twilio:[Core](MediaFactoryImpl::signaling): Create local offer: BFe6eCDa88fc4caae3CC524E7Dcb2Ec7\r\n2020-03-28 17:32:28.642173+1100 MDLink Health[13454:4768535] DEBUG:Twilio:[Core](MediaFactoryImpl::signaling): Including track id: b5dd3A7EFA7EA9Bd345dD761aacEE54e for simulcast.\r\n2020-03-28 17:32:28.642467+1100 MDLink Health[13454:4768440] DEBUG:Twilio:[Core](0x16bf0f000): onCreateSessionLocalDescription BFe6eCDa88fc4caae3CC524E7Dcb2Ec7\r\n2020-03-28 17:32:28.643366+1100 MDLink Health[13454:4768440] DEBUG:Twilio:[Core](0x16bf0f000): SDP Utils: New SSRC group 2269185341 1247838727 --- Original SSRC group 2269185341 1247838727\r\n2020-03-28 17:32:28.644431+1100 MDLink Health[13454:4768440] DEBUG:Twilio:[Core](0x16bf0f000): PeerConnection state: Updating -> Waiting\r\n2020-03-28 17:32:28.644635+1100 MDLink Health[13454:4768440] INFO:Twilio:[Core](0x16bf0f000): Local offer is ready for BFe6eCDa88fc4caae3CC524E7Dcb2Ec7.\r\n2020-03-28 17:32:28.644809+1100 MDLink Health[13454:4768440] DEBUG:Twilio:[Core](0x16bf0f000): Queue Description: 1 for PeerConnection: BFe6eCDa88fc4caae3CC524E7Dcb2Ec7.\r\n2020-03-28 17:32:28.645915+1100 MDLink Health[13454:4768652] DEBUG:Twilio:[Core](0x16c513000): Sending message (4711 bytes):\r\n{\"body\":{\"format\":\"planb\",\"ice_servers\":\"success\",\"media_signaling\":null,\"name\":\"appo_room_4744\",\"participant\":{\"revision\":1,\"tracks\":[{\"enabled\":true,\"id\":\"75d5b2EEebDCD2A2E61e10011Bfe48DE\",\"kind\":\"audio\",\"name\":\"Microphone\",\"priority\":\"standard\"},{\"enabled\":true,\"id\":\"b5dd3A7EFA7EA9Bd345dD761aacEE54e\",\"kind\":\"video\",\"name\":\"Camera\",\"priority\":\"standard\"}]},\"peer_connections\":[{\"description\":{\"revision\":1,\"sdp\":\"v=0\\r\\no=- 5094857780483517174 2 IN IP4 127.0.0.1\\r\\ns=-\\r\\nt=0 0\\r\\na=group:BUNDLE audio video\\r\\na=msid-semantic: WMS D1b23F9B1Edade9F8FBe70BdAC42D94C\\r\\nm=audio 9 UDP/TLS/RTP/SAVPF 111 103 104 9 0 8 106 105 13 110 112 113 126\\r\\nc=IN IP4 0.0.0.0\\r\\na=rtcp:9 IN IP4 0.0.0.0\\r\\na=ice-ufrag:ftQO\\r\\na=ice-pwd:wgBjZ55QB0NbyVPntGtY9zcL\\r\\na=ice-options:trickle\\r\\na=fingerprint:sha-256 BA:C6:76:78:08:B1:6C:1A:C8:E3:57:2C:83:FE:2C:47:76:11:3A:62:4A:B2:39:46:B1:B3:BF:56:A0:F9:CA:79\\r\\na=setup:actpass\\r\\na=mid:audio\\r\\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\\r\\na=sendrecv\\r\\na=rtcp-mux\\r\\na=rtpmap:111 opus/48000/2\\r\\na=rtcp-fb:111 transport-cc\\r\\na=fmtp:111 minptime=10;useinbandfec=1\\r\\na=rtpmap:103 ISAC/16000\\r\\na=rtpmap:104 ISAC/32000\\r\\na=rtpmap:9 G722/8000\\r\\na=rtpmap:0 PCMU/8000\\r\\na=rtpmap:8 PCMA/8000\\r\\na=rtpmap:106 CN/32000\\r\\na=rtpmap:105 CN/16000\\r\\na=rtpmap:13 CN/8000\\r\\na=rtpmap:110 telephone-event/48000\\r\\na=rtpmap:112 telephone-event/32000\\r\\na=rtpmap:113 telephone-event/16000\\r\\na=rtpmap:126 telephone-event/8000\\r\\na=ssrc:553315398 cname:hkAi0vZ9PEKaBaYa\\r\\na=ssrc:553315398 msid:D1b23F9B1Edade9F8FBe70BdAC42D94C 75d5b2EEebDCD2A2E61e10011Bfe48DE\\r\\na=ssrc:553315398 mslabel:D1b23F9B1Edade9F8FBe70BdAC42D94C\\r\\na=ssrc:553315398 label:75d5b2EEebDCD2A2E61e10011Bfe48DE\\r\\nm=video 9 UDP/TLS/RTP/SAVPF 96 97 98 99 100 101 102 125 127\\r\\nc=IN IP4 0.0.0.0\\r\\na=rtcp:9 IN IP4 0.0.0.0\\r\\na=ice-ufrag:ftQO\\r\\na=ice-pwd:wgBjZ55QB0NbyVPntGtY9zcL\\r\\na=ice-options:trickle\\r\\na=fingerprint:sha-256 BA:C6:76:78:08:B1:6C:1A:C8:E3:57:2C:83:FE:2C:47:76:11:3A:62:4A:B2:39:46:B1:B3:BF:56:A0:F9:CA:79\\r\\na=setup:actpass\\r\\na=mid:video\\r\\na=extmap:2 urn:ietf:params:rtp-hdrext:toffset\\r\\na=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\\r\\na=extmap:4 urn:3gpp:video-orientation\\r\\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\\r\\na=extmap:6 http://www.webrtc.org/experiments/rtp-hdrext/playout-delay\\r\\na=extmap:7 http://www.webrtc.org/experiments/rtp-hdrext/video-content-type\\r\\na=extmap:8 http://www.webrtc.org/experiments/rtp-hdrext/video-timing\\r\\na=sendrecv\\r\\na=rtcp-mux\\r\\na=rtcp-rsize\\r\\na=rtpmap:96 VP8/90000\\r\\na=rtcp-fb:96 goog-remb\\r\\na=rtcp-fb:96 transport-cc\\r\\na=rtcp-fb:96 ccm fir\\r\\na=rtcp-fb:96 nack\\r\\na=rtcp-fb:96 nack pli\\r\\na=rtpmap:97 rtx/90000\\r\\na=fmtp:97 apt=96\\r\\na=rtpmap:98 VP9/90000\\r\\na=rtcp-fb:98 goog-remb\\r\\na=rtcp-fb:98 transport-cc\\r\\na=rtcp-fb:98 ccm fir\\r\\na=rtcp-fb:98 nack\\r\\na=rtcp-fb:98 nack pli\\r\\na=rtpmap:99 rtx/90000\\r\\na=fmtp:99 apt=98\\r\\na=rtpmap:100 H264/90000\\r\\na=rtcp-fb:100 goog-remb\\r\\na=rtcp-fb:100 transport-cc\\r\\na=rtcp-fb:100 ccm fir\\r\\na=rtcp-fb:100 nack\\r\\na=rtcp-fb:100 nack pli\\r\\na=fmtp:100 level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=42e01f\\r\\na=rtpmap:101 rtx/90000\\r\\na=fmtp:101 apt=100\\r\\na=rtpmap:102 red/90000\\r\\na=rtpmap:125 rtx/90000\\r\\na=fmtp:125 apt=102\\r\\na=rtpmap:127 ulpfec/90000\\r\\na=ssrc-group:FID 2269185341 1247838727\\r\\na=ssrc:2269185341 cname:hkAi0vZ9PEKaBaYa\\r\\na=ssrc:2269185341 msid:D1b23F9B1Edade9F8FBe70BdAC42D94C b5dd3A7EFA7EA9Bd345dD761aacEE54e\\r\\na=ssrc:2269185341 mslabel:D1b23F9B1Edade9F8FBe70BdAC42D94C\\r\\na=ssrc:2269185341 label:b5dd3A7EFA7EA9Bd345dD761aacEE54e\\r\\na=ssrc:1247838727 cname:hkAi0vZ9PEKaBaYa\\r\\na=ssrc:1247838727 msid:D1b23F9B1Edade9F8FBe70BdAC42D94C b5dd3A7EFA7EA9Bd345dD761aacEE54e\\r\\na=ssrc:1247838727 mslabel:D1b23F9B1Edade9F8FBe70BdAC42D94C\\r\\na=ssrc:1247838727 label:b5dd3A7EFA7EA9Bd345dD761aacEE54e\\r\\n\",\"type\":\"offer\"},\"id\":\"BFe6eCDa88fc4caae3CC524E7Dcb2Ec7\"}],\"publisher\":{\"hw_device_arch\":\"arm64\",\"hw_device_manufacturer\":\"Apple\",\"hw_device_model\":\"iPhone12,1\",\"name\":\"twilio-video-ios\",\"platform_name\":\"iOS\",\"platform_version\":\"13.3.1\",\"sdk_version\":\"3.2.1\"},\"token\":\"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiIsImN0eSI6InR3aWxpby1mcGE7dj0xIn0.eyJqdGkiOiJTS2YyNjYwYjA5OTMyOTllNDdmNGYwMmY1MGQxZGZkZTE4LTE1ODUzNzcxNDciLCJpc3MiOiJTS2YyNjYwYjA5OTMyOTllNDdmNGYwMmY1MGQxZGZkZTE4Iiwic3ViIjoiQUNlMzg1MzIwMTU1NDMwODc3YmQxYTI4NGE0YTcxNGE1NiIsImV4cCI6MTU4NTM3ODA0NywiZ3JhbnRzIjp7ImlkZW50aXR5IjoiMkYzQjEwMzEtRjYxMy00QjhGLUFENjYtODM0M0U0NDkzRkRDLTE1ODUzNzcxNDciLCJ2aWRlbyI6eyJyb29tIjoiYXBwb19yb29tXzQ3NDQifX19.wa_J0gqULHeWdp8MxboickWsKPk-UdZ_U4A-cl6ZBaY\",\"type\":\"connect\",\"version\":2},\"type\":\"msg\"}\r\n2020-03-28 17:32:29.292164+1100 MDLink Health[13454:4768652] DEBUG:Twilio:[Core](0x16c513000): Received message:\r\n{\"body\":{\"version\":2,\"type\":\"connected\",\"sid\":\"RM9ae6f8dac8ba06d5e41c8a7e78817d86\",\"name\":\"appo_room_4744\",\"participant\":{\"sid\":\"PA1791083cdb5219c46861ba945e7aa606\",\"identity\":\"2F3B1031-F613-4B8F-AD66-8343E4493FDC-1585377147\",\"tracks\":[{\"kind\":\"video\",\"priority\":\"standard\",\"id\":\"b5dd3A7EFA7EA9Bd345dD761aacEE54e\",\"enabled\":true,\"sid\":\"MTf145daf3eecc79a6b71d09beda750708\",\"name\":\"Camera\",\"state\":\"ready\"},{\"kind\":\"audio\",\"priority\":\"standard\",\"id\":\"75d5b2EEebDCD2A2E61e10011Bfe48DE\",\"enabled\":true,\"sid\":\"MTed0c552700d63f57d34254cc22fdd091\",\"name\":\"Microphone\",\"state\":\"ready\"}],\"revision\":1,\"state\":\"connected\"},\"participants\":[{\"sid\":\"PA38fbc20e94f91b7c1fffeb94276ed483\",\"identity\":\"Che Bowen-1585377135\",\"tracks\":[{\"kind\":\"audio\",\"priority\":\"standard\",\"id\":\"630c3901-bc45-4c0e-8a8a-9521a1f3c9fb\",\"enabled\":true,\"sid\":\"MTa3de64d499659de74fbe9416a78c48e6\",\"name\":\"630c3901-bc45-4c0e-8a8a-9521a1f3c9fb\",\"state\":\"ready\"},{\"kind\":\"video\",\"priority\":\"standard\",\"id\":\"dbb3003f-7ff6-4f00-b98a-b3d120c3da4f\",\"enabled\":true,\"sid\":\"MT9b9a9e8a89e2a809860f5fcfcc8fe646\",\"name\":\"dbb3003f-7ff6-4f00-b98a-b3d120c3da4f\",\"state\":\"ready\"}],\"revision\":3,\"state\":\"connected\"}],\"recording\":{\"enabled\":false,\"revision\":1},\"subscribed\":{\"revision\":2,\"tracks\":[{\"id\":\"630c3901-bc45-4c0e-8a8a-9521a1f3c9fb\",\"sid\":\"MTa3de64d499659de74fbe9416a78c48e6\"},{\"id\":\"dbb3003f-7ff6-4f00-b98a-b3d120c3da4f\",\"sid\":\"MT9b9a9e8a89e2a809860f5fcfcc8fe646\"}]},\"published\":{\"revision\":1,\"tracks\":[{\"kind\":\"video\",\"priority\":\"standard\",\"id\":\"b5dd3A7EFA7EA9Bd345dD761aacEE54e\",\"enabled\":true,\"sid\":\"MTf145daf3eecc79a6b71d09beda750708\",\"name\":\"Camera\",\"state\":\"ready\"},{\"kind\":\"audio\",\"priority\":\"standard\",\"id\":\"75d5b2EEebDCD2A2E61e10011Bfe48DE\",\"enabled\":true,\"sid\":\"MTed0c552700d63f57d34254cc22fdd091\",\"name\":\"Microphone\",\"state\":\"ready\"}]},\"session\":\"e385320155430877bd1a284a4a714a569ae6f8dac8ba06d5e41c8a7e78817d861791083cdb5219c46861ba945e7aa60632f7596135c1b9c6e9de59852447c511\",\"options\":{\"signaling_region\":\"au1\",\"session_timeout\":30}},\"type\":\"msg\"}\r\n2020-03-28 17:32:29.294192+1100 MDLink Health[13454:4768652] DEBUG:Twilio:[Core](0x16c513000): Received message:\r\n{\"body\":{\"version\":2,\"type\":\"update\",\"sid\":\"RM9ae6f8dac8ba06d5e41c8a7e78817d86\",\"name\":\"RM9ae6f8dac8ba06d5e41c8a7e78817d86\",\"participant\":{\"sid\":\"PA1791083cdb5219c46861ba945e7aa606\",\"identity\":\"2F3B1031-F613-4B8F-AD66-8343E4493FDC-1585377147\",\"tracks\":[{\"kind\":\"video\",\"priority\":\"standard\",\"id\":\"b5dd3A7EFA7EA9Bd345dD761aacEE54e\",\"enabled\":true,\"sid\":\"MTf145daf3eecc79a6b71d09beda750708\",\"name\":\"Camera\",\"state\":\"ready\"},{\"kind\":\"audio\",\"priority\":\"standard\",\"id\":\"75d5b2EEebDCD2A2E61e10011Bfe48DE\",\"enabled\":true,\"sid\":\"MTed0c552700d63f57d34254cc22fdd091\",\"name\":\"Microphone\",\"state\":\"ready\"}],\"revision\":1,\"state\":\"connected\"},\"participants\":[],\"recording\":{\"enabled\":false,\"revision\":1},\"subscribe\":{\"revision\":1,\"rules\":[{\"type\":\"include\",\"all\":true}]},\"subscribed\":{\"revision\":2,\"tracks\":[{\"id\":\"630c3901-bc45-4c0e-8a8a-9521a1f3c9fb\",\"sid\":\"MTa3de64d499659de74fbe9416a78c48e6\"},{\"id\":\"dbb3003f-7ff6-4f00-b98a-b3d120c3da4f\",\"sid\":\"MT9b9a9e8a89e2a809860f5fcfcc8fe646\"}]},\"published\":{\"revision\":1,\"tracks\":[{\"kind\":\"video\",\"priority\":\"standard\",\"id\":\"b5dd3A7EFA7EA9Bd345dD761aacEE54e\",\"enabled\":true,\"sid\":\"MTf145daf3eecc79a6b71d09beda750708\",\"name\":\"Camera\",\"state\":\"ready\"},{\"kind\":\"audio\",\"priority\":\"standard\",\"id\":\"75d5b2EEebDCD2A2E61e10011Bfe48DE\",\"enabled\":true,\"sid\":\"MTed0c552700d63f57d34254cc22fdd091\",\"name\":\"Microphone\",\"state\":\"ready\"}]}},\"type\":\"msg\"}\r\n2020-03-28 17:32:29.294370+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): onAccepted\r\n2020-03-28 17:32:29.294475+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): RoomSignalingImpl: State transition successful: kConnecting -> kConnected\r\n2020-03-28 17:32:29.294771+1100 MDLink Health[13454:4767886] DEBUG:Twilio:[Core](0x104f6d840): RemoteParticipantImpl::RemoteParticipantImpl: Che Bowen-1585377135, sid: PA38fbc20e94f91b7c1fffeb94276ed483\r\n2020-03-28 17:32:29.294875+1100 MDLink Health[13454:4767886] INFO:Twilio:[Core](0x104f6d840): Remote participant Che Bowen-1585377135 added an audio track with sid: MTa3de64d499659de74fbe9416a78c48e6, name: 630c3901-bc45-4c0e-8a8a-9521a1f3c9fb, enabled: 1\r\n2020-03-28 17:32:29.294940+1100 MDLink Health[13454:4767886] INFO:Twilio:[Core](0x104f6d840): Remote participant Che Bowen-1585377135 added a video track with sid: MT9b9a9e8a89e2a809860f5fcfcc8fe646, name: dbb3003f-7ff6-4f00-b98a-b3d120c3da4f, enabled: 1\r\n2020-03-28 17:32:29.676694+1100 MDLink Health[13454:4768652] DEBUG:Twilio:[Core](0x16c513000): Received message:\r\n{\"body\":{\"version\":2,\"type\":\"update\",\"peer_connections\":[{\"id\":\"BFe6eCDa88fc4caae3CC524E7Dcb2Ec7\",\"description\":{\"type\":\"answer\",\"sdp\":\"v=0\\r\\no=- 242963683246742954 2 IN IP4 127.0.0.1\\r\\ns=-\\r\\nt=0 0\\r\\na=msid-semantic: WMS *\\r\\na=group:BUNDLE audio video\\r\\nm=audio 9 UDP/TLS/RTP/SAVPF 111 103 9 0 8 105 13 110 113 126\\r\\nc=IN IP4 0.0.0.0\\r\\na=rtcp:9 IN IP4 0.0.0.0\\r\\na=ice-options:trickle\\r\\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\\r\\na=rtpmap:111 opus/48000/2\\r\\na=rtcp-fb:111 transport-cc\\r\\na=fmtp:111 minptime=10;useinbandfec=1\\r\\na=rtpmap:103 ISAC/16000\\r\\na=rtpmap:9 G722/8000\\r\\na=rtpmap:0 PCMU/8000\\r\\na=rtpmap:8 PCMA/8000\\r\\na=rtpmap:105 CN/16000\\r\\na=rtpmap:13 CN/8000\\r\\na=rtpmap:110 telephone-event/48000\\r\\na=rtpmap:113 telephone-event/16000\\r\\na=rtpmap:126 telephone-event/8000\\r\\na=setup:active\\r\\na=mid:audio\\r\\na=recvonly\\r\\na=ice-ufrag:pU/V\\r\\na=ice-pwd:O0HPjD82DLf470nldJjY94MW\\r\\na=fingerprint:sha-256 21:6E:79:C9:AC:5E:64:07:86:53:EA:8A:A2:32:CC:1B:65:5A:B1:E5:E5:87:DE:4E:7F:D6:1A:AB:35:3B:36:CA\\r\\na=rtcp-mux\\r\\nm=video 9 UDP/TLS/RTP/SAVPF 96 97 101 125 100 102 127\\r\\nc=IN IP4 0.0.0.0\\r\\na=rtcp:9 IN IP4 0.0.0.0\\r\\na=ice-options:trickle\\r\\na=extmap:2 urn:ietf:params:rtp-hdrext:toffset\\r\\na=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\\r\\na=extmap:4 urn:3gpp:video-orientation\\r\\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\\r\\na=extmap:6 http://www.webrtc.org/experiments/rtp-hdrext/playout-delay\\r\\na=extmap:7 http://www.webrtc.org/experiments/rtp-hdrext/video-content-type\\r\\na=extmap:8 http://www.webrtc.org/experiments/rtp-hdrext/video-timing\\r\\na=rtcp-rsize\\r\\na=rtpmap:96 VP8/90000\\r\\na=rtcp-fb:96 goog-remb\\r\\na=rtcp-fb:96 transport-cc\\r\\na=rtcp-fb:96 ccm fir\\r\\na=rtcp-fb:96 nack\\r\\na=rtcp-fb:96 nack pli\\r\\na=rtpmap:97 rtx/90000\\r\\na=fmtp:97 apt=96\\r\\na=rtpmap:101 rtx/90000\\r\\na=fmtp:101 apt=100\\r\\na=rtpmap:125 rtx/90000\\r\\na=fmtp:125 apt=102\\r\\na=rtpmap:100 H264/90000\\r\\na=rtcp-fb:100 goog-remb\\r\\na=rtcp-fb:100 transport-cc\\r\\na=rtcp-fb:100 ccm fir\\r\\na=rtcp-fb:100 nack\\r\\na=rtcp-fb:100 nack pli\\r\\na=fmtp:100 level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=42e01f\\r\\na=rtpmap:102 red/90000\\r\\na=rtpmap:127 ulpfec/90000\\r\\na=setup:active\\r\\na=mid:video\\r\\na=recvonly\\r\\na=ice-ufrag:pU/V\\r\\na=ice-pwd:O0HPjD82DLf470nldJjY94MW\\r\\na=fingerprint:sha-256 21:6E:79:C9:AC:5E:64:07:86:53:EA:8A:A2:32:CC:1B:65:5A:B1:E5:E5:87:DE:4E:7F:D6:1A:AB:35:3B:36:CA\\r\\na=rtcp-mux\\r\\n\",\"revision\":1}}],\"sid\":\"RM9ae6f8dac8ba06d5e41c8a7e78817d86\",\"name\":\"RM9ae6f8dac8ba06d5e41c8a7e78817d86\",\"participant\":{\"sid\":\"PA1791083cdb5219c46861ba945e7aa606\",\"identity\":\"2F3B1031-F613-4B8F-AD66-8343E4493FDC-1585377147\",\"tracks\":[{\"kind\":\"video\",\"priority\":\"standard\",\"id\":\"b5dd3A7EFA7EA9Bd345dD761aacEE54e\",\"enabled\":true,\"sid\":\"MTf145daf3eecc79a6b71d09beda750708\",\"name\":\"Camera\",\"state\":\"ready\"},{\"kind\":\"audio\",\"priority\":\"standard\",\"id\":\"75d5b2EEebDCD2A2E61e10011Bfe48DE\",\"enabled\":true,\"sid\":\"MTed0c552700d63f57d34254cc22fdd091\",\"name\":\"Microphone\",\"state\":\"ready\"}],\"revision\":1,\"state\":\"connected\"},\"participants\":[{\"sid\":\"PA38fbc20e94f91b7c1fffeb94276ed483\",\"identity\":\"Che Bowen-1585377135\",\"tracks\":[{\"kind\":\"audio\",\"priority\":\"standard\",\"id\":\"630c3901-bc45-4c0e-8a8a-9521a1f3c9fb\",\"enabled\":true,\"sid\":\"MTa3de64d499659de74fbe9416a78c48e6\",\"name\":\"630c3901-bc45-4c0e-8a8a-9521a1f3c9fb\",\"state\":\"ready\"},{\"kind\":\"video\",\"priority\":\"standard\",\"id\":\"dbb3003f-7ff6-4f00-b98a-b3d120c3da4f\",\"enabled\":true,\"sid\":\"MT9b9a9e8a89e2a809860f5fcfcc8fe646\",\"name\":\"dbb3003f-7ff6-4f00-b98a-b3d120c3da4f\",\"state\":\"ready\"}],\"revision\":3,\"state\":\"connected\"}],\"recording\":{\"enabled\":false,\"revision\":1},\"subscribe\":{\"revision\":1,\"rules\":[{\"type\":\"include\",\"all\":true}]},\"subscribed\":{\"revision\":2,\"tracks\":[{\"id\":\"630c3901-bc45-4c0e-8a8a-9521a1f3c9fb\",\"sid\":\"MTa3de64d499659de74fbe9416a78c48e6\"},{\"id\":\"dbb3003f-7ff6-4f00-b98a-b3d120c3da4f\",\"sid\":\"MT9b9a9e8a89e2a809860f5fcfcc8fe646\"}]},\"published\":{\"revision\":1,\"tracks\":[{\"kind\":\"video\",\"priority\":\"standard\",\"id\":\"b5dd3A7EFA7EA9Bd345dD761aacEE54e\",\"enabled\":true,\"sid\":\"MTf145daf3eecc79a6b71d09beda750708\",\"name\":\"Camera\",\"state\":\"ready\"},{\"kind\":\"audio\",\"priority\":\"standard\",\"id\":\"75d5b2EEebDCD2A2E61e10011Bfe48DE\",\"enabled\":true,\"sid\":\"MTed0c552700d63f57d34254cc22fdd091\",\"name\":\"Microphone\",\"state\":\"ready\"}]}},\"type\":\"msg\"}\r\n2020-03-28 17:32:29.681493+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): PeerConnection state: Waiting -> Updating\r\n2020-03-28 17:32:29.681867+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): Process remote answer at revision 1.\r\n2020-03-28 17:32:29.682154+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): Process remote sdp for: BFe6eCDa88fc4caae3CC524E7Dcb2Ec7 revision is: 1.\r\n2020-03-28 17:32:29.684139+1100 MDLink Health[13454:4768535] DEBUG:Twilio:[Core](MediaFactoryImpl::signaling): Applying local description to: BFe6eCDa88fc4caae3CC524E7Dcb2Ec7 rev: 1\r\n2020-03-28 17:32:29.690357+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): onSetSessionLocalDescription: BFe6eCDa88fc4caae3CC524E7Dcb2Ec7\r\n2020-03-28 17:32:29.690563+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): Starting ICE Gathering timer...\r\n2020-03-28 17:32:29.690692+1100 MDLink Health[13454:4768537] DEBUG:Twilio:[Core](MediaFactoryImpl::networking): void twilio::media::NetworkMonitor::onNetworksChanged()\r\n2020-03-28 17:32:29.690785+1100 MDLink Health[13454:4768535] DEBUG:Twilio:[Core](MediaFactoryImpl::signaling): Applying remote description to: BFe6eCDa88fc4caae3CC524E7Dcb2Ec7 rev: 1\r\n2020-03-28 17:32:29.690814+1100 MDLink Health[13454:4768537] DEBUG:Twilio:[Core](MediaFactoryImpl::networking): Network Name: en0, Cost: 10, Type : Wifi, Preference : 127, Active : 1, id: 1, prefix : 192.168.1.0 and key : en0%192.168.1.0/24\r\n2020-03-28 17:32:29.690919+1100 MDLink Health[13454:4768537] DEBUG:Twilio:[Core](MediaFactoryImpl::networking): Network Name: pdp_ip1, Cost: 900, Type : Cellular, Preference : 126, Active : 1, id: 7, prefix : 2405:6e00:2303:b82e:: and key : pdp_ip1%2405:6e00:2303:b82e::/64\r\n2020-03-28 17:32:29.691013+1100 MDLink Health[13454:4768537] DEBUG:Twilio:[Core](MediaFactoryImpl::networking): Network Name: pdp_ip0, Cost: 900, Type : Cellular, Preference : 125, Active : 1, id: 6, prefix : 100.85.67.47 and key : pdp_ip0%100.85.67.47/32\r\n2020-03-28 17:32:29.691105+1100 MDLink Health[13454:4768537] DEBUG:Twilio:[Core](MediaFactoryImpl::networking): Network Name: ipsec4, Cost: 10, Type : VPN, Preference : 124, Active : 1, id: 2, prefix : 2405:6e00:2303:b82e:: and key : ipsec4%2405:6e00:2303:b82e::/64\r\n2020-03-28 17:32:29.691199+1100 MDLink Health[13454:4768537] DEBUG:Twilio:[Core](MediaFactoryImpl::networking): Network Name: ipsec5, Cost: 10, Type : VPN, Preference : 123, Active : 1, id: 3, prefix : 2405:6e00:2303:b82e:: and key : ipsec5%2405:6e00:2303:b82e::/64\r\n2020-03-28 17:32:29.691589+1100 MDLink Health[13454:4768537] DEBUG:Twilio:[Core](MediaFactoryImpl::networking): Network Name: lo0, Cost: 0, Type : Loopback, Preference : 122, Active : 1, id: 5, prefix : ::1 and key : lo0%::1/128\r\n2020-03-28 17:32:29.691704+1100 MDLink Health[13454:4768537] DEBUG:Twilio:[Core](MediaFactoryImpl::networking): Network Name: lo0, Cost: 0, Type : Loopback, Preference : 121, Active : 1, id: 4, prefix : 127.0.0.0 and key : lo0%127.0.0.0/8\r\n2020-03-28 17:32:29.691800+1100 MDLink Health[13454:4768537] DEBUG:Twilio:[Core](MediaFactoryImpl::networking): New preferred network reported by manager: key: en0%192.168.1.0/24, type: Wifi, cost: 10, id: 1\r\n2020-03-28 17:32:29.695223+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): Done processing onSetSessionLocalDescription: BFe6eCDa88fc4caae3CC524E7Dcb2Ec7\r\n2020-03-28 17:32:29.695433+1100 MDLink Health[13454:4768462] INFO:Twilio:[Core](0x16bf9b000): Ice Gathering for BFe6eCDa88fc4caae3CC524E7Dcb2Ec7.\r\n2020-03-28 17:32:29.695576+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): ICE connection state transitioned from New -> Checking\r\n2020-03-28 17:32:29.695732+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): PeerConnection BFe6eCDa88fc4caae3CC524E7Dcb2Ec7 Ice connection state transitioned from New -> Checking\r\n2020-03-28 17:32:29.695921+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): Room Media state changed to Checking\r\n2020-03-28 17:32:29.696036+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): Gathered a candidate. candidate:1912282794 1 udp 2122260223 192.168.1.145 50699 typ host generation 0 ufrag ftQO network-id 1 network-cost 10\r\n2020-03-28 17:32:29.696127+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): Queue ICE candidate revision: 1 for PeerConnection: BFe6eCDa88fc4caae3CC524E7Dcb2Ec7.\r\n2020-03-28 17:32:29.696216+1100 MDLink Health[13454:4768462] INFO:Twilio:[Core](0x16bf9b000): Publish ICE candidate revision: 1 for PeerConnection: BFe6eCDa88fc4caae3CC524E7Dcb2Ec7.\r\n2020-03-28 17:32:29.696496+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): Gathered a candidate. candidate:4037135986 1 udp 2122197247 2405:6e00:2303:b82e:ed2d:874:b696:3c6e 50700 typ host generation 0 ufrag ftQO network-id 7 network-cost 900\r\n2020-03-28 17:32:29.696582+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): Queue ICE candidate revision: 2 for PeerConnection: BFe6eCDa88fc4caae3CC524E7Dcb2Ec7.\r\n2020-03-28 17:32:29.696668+1100 MDLink Health[13454:4768462] INFO:Twilio:[Core](0x16bf9b000): Publish ICE candidate revision: 2 for PeerConnection: BFe6eCDa88fc4caae3CC524E7Dcb2Ec7.\r\n2020-03-28 17:32:29.696975+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): Gathered a candidate. candidate:3944342259 1 udp 2122129151 100.85.67.47 50296 typ host generation 0 ufrag ftQO network-id 6 network-cost 900\r\n2020-03-28 17:32:29.696987+1100 MDLink Health[13454:4768652] DEBUG:Twilio:[Core](0x16c513000): Sending message (759 bytes):\r\n{\"body\":{\"participant\":{\"revision\":1,\"tracks\":[{\"enabled\":true,\"id\":\"75d5b2EEebDCD2A2E61e10011Bfe48DE\",\"kind\":\"audio\",\"name\":\"Microphone\",\"priority\":\"standard\"},{\"enabled\":true,\"id\":\"b5dd3A7EFA7EA9Bd345dD761aacEE54e\",\"kind\":\"video\",\"name\":\"Camera\",\"priority\":\"standard\"}]},\"peer_connections\":[{\"ice\":{\"candidates\":[{\"candidate\":\"candidate:1912282794 1 udp 2122260223 192.168.1.145 50699 typ host generation 0 ufrag ftQO network-id 1 network-cost 10\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"}],\"complete\":false,\"revision\":1,\"ufrag\":\"ftQO\"},\"id\":\"BFe6eCDa88fc4caae3CC524E7Dcb2Ec7\"}],\"session\":\"e385320155430877bd1a284a4a714a569ae6f8dac8ba06d5e41c8a7e78817d861791083cdb5219c46861ba945e7aa60632f7596135c1b9c6e9de59852447c511\",\"type\":\"update\",\"version\":2},\"type\":\"msg\"}\r\n2020-03-28 17:32:29.697092+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): Queue ICE candidate revision: 3 for PeerConnection: BFe6eCDa88fc4caae3CC524E7Dcb2Ec7.\r\n2020-03-28 17:32:29.697185+1100 MDLink Health[13454:4768462] INFO:Twilio:[Core](0x16bf9b000): Publish ICE candidate revision: 3 for PeerConnection: BFe6eCDa88fc4caae3CC524E7Dcb2Ec7.\r\n2020-03-28 17:32:29.697494+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): Gathered a candidate. candidate:4286008536 1 udp 2122066175 2405:6e00:2303:b82e:10be:fa52:5b85:6fd5 50297 typ host generation 0 ufrag ftQO network-id 2 network-cost 10\r\n2020-03-28 17:32:29.697600+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): Queue ICE candidate revision: 4 for PeerConnection: BFe6eCDa88fc4caae3CC524E7Dcb2Ec7.\r\n2020-03-28 17:32:29.697740+1100 MDLink Health[13454:4768462] INFO:Twilio:[Core](0x16bf9b000): Publish ICE candidate revision: 4 for PeerConnection: BFe6eCDa88fc4caae3CC524E7Dcb2Ec7.\r\n2020-03-28 17:32:29.697761+1100 MDLink Health[13454:4768652] DEBUG:Twilio:[Core](0x16c513000): Sending message (956 bytes):\r\n{\"body\":{\"participant\":{\"revision\":1,\"tracks\":[{\"enabled\":true,\"id\":\"75d5b2EEebDCD2A2E61e10011Bfe48DE\",\"kind\":\"audio\",\"name\":\"Microphone\",\"priority\":\"standard\"},{\"enabled\":true,\"id\":\"b5dd3A7EFA7EA9Bd345dD761aacEE54e\",\"kind\":\"video\",\"name\":\"Camera\",\"priority\":\"standard\"}]},\"peer_connections\":[{\"ice\":{\"candidates\":[{\"candidate\":\"candidate:1912282794 1 udp 2122260223 192.168.1.145 50699 typ host generation 0 ufrag ftQO network-id 1 network-cost 10\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"},{\"candidate\":\"candidate:4037135986 1 udp 2122197247 2405:6e00:2303:b82e:ed2d:874:b696:3c6e 50700 typ host generation 0 ufrag ftQO network-id 7 network-cost 900\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"}],\"complete\":false,\"revision\":2,\"ufrag\":\"ftQO\"},\"id\":\"BFe6eCDa88fc4caae3CC524E7Dcb2Ec7\"}],\"session\":\"e385320155430877bd1a284a4a714a569ae6f8dac8ba06d5e41c8a7e78817d861791083cdb5219c46861ba945e7aa60632f7596135c1b9c6e9de59852447c511\",\"type\":\"update\",\"version\":2},\"type\":\"msg\"}\r\n2020-03-28 17:32:29.698077+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): Gathered a candidate. candidate:4286008536 1 udp 2122000639 2405:6e00:2303:b82e:10be:fa52:5b85:6fd5 50298 typ host generation 0 ufrag ftQO network-id 3 network-cost 10\r\n2020-03-28 17:32:29.698178+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): Queue ICE candidate revision: 5 for PeerConnection: BFe6eCDa88fc4caae3CC524E7Dcb2Ec7.\r\n2020-03-28 17:32:29.698266+1100 MDLink Health[13454:4768462] INFO:Twilio:[Core](0x16bf9b000): Publish ICE candidate revision: 5 for PeerConnection: BFe6eCDa88fc4caae3CC524E7Dcb2Ec7.\r\n2020-03-28 17:32:29.698645+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): onSetSessionRemoteDescription: BFe6eCDa88fc4caae3CC524E7Dcb2Ec7\r\n2020-03-28 17:32:29.698802+1100 MDLink Health[13454:4768652] DEBUG:Twilio:[Core](0x16c513000): Sending message (1127 bytes):\r\n{\"body\":{\"participant\":{\"revision\":1,\"tracks\":[{\"enabled\":true,\"id\":\"75d5b2EEebDCD2A2E61e10011Bfe48DE\",\"kind\":\"audio\",\"name\":\"Microphone\",\"priority\":\"standard\"},{\"enabled\":true,\"id\":\"b5dd3A7EFA7EA9Bd345dD761aacEE54e\",\"kind\":\"video\",\"name\":\"Camera\",\"priority\":\"standard\"}]},\"peer_connections\":[{\"ice\":{\"candidates\":[{\"candidate\":\"candidate:1912282794 1 udp 2122260223 192.168.1.145 50699 typ host generation 0 ufrag ftQO network-id 1 network-cost 10\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"},{\"candidate\":\"candidate:4037135986 1 udp 2122197247 2405:6e00:2303:b82e:ed2d:874:b696:3c6e 50700 typ host generation 0 ufrag ftQO network-id 7 network-cost 900\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"},{\"candidate\":\"candidate:3944342259 1 udp 2122129151 100.85.67.47 50296 typ host generation 0 ufrag ftQO network-id 6 network-cost 900\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"}],\"complete\":false,\"revision\":3,\"ufrag\":\"ftQO\"},\"id\":\"BFe6eCDa88fc4caae3CC524E7Dcb2Ec7\"}],\"session\":\"e385320155430877bd1a284a4a714a569ae6f8dac8ba06d5e41c8a7e78817d861791083cdb5219c46861ba945e7aa60632f7596135c1b9c6e9de59852447c511\",\"type\":\"update\",\"version\":2},\"type\":\"msg\"}\r\n2020-03-28 17:32:29.698860+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): Updating -> Open\r\n2020-03-28 17:32:29.699755+1100 MDLink Health[13454:4768652] DEBUG:Twilio:[Core](0x16c513000): Sending message (1324 bytes):\r\n{\"body\":{\"participant\":{\"revision\":1,\"tracks\":[{\"enabled\":true,\"id\":\"75d5b2EEebDCD2A2E61e10011Bfe48DE\",\"kind\":\"audio\",\"name\":\"Microphone\",\"priority\":\"standard\"},{\"enabled\":true,\"id\":\"b5dd3A7EFA7EA9Bd345dD761aacEE54e\",\"kind\":\"video\",\"name\":\"Camera\",\"priority\":\"standard\"}]},\"peer_connections\":[{\"ice\":{\"candidates\":[{\"candidate\":\"candidate:1912282794 1 udp 2122260223 192.168.1.145 50699 typ host generation 0 ufrag ftQO network-id 1 network-cost 10\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"},{\"candidate\":\"candidate:4037135986 1 udp 2122197247 2405:6e00:2303:b82e:ed2d:874:b696:3c6e 50700 typ host generation 0 ufrag ftQO network-id 7 network-cost 900\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"},{\"candidate\":\"candidate:3944342259 1 udp 2122129151 100.85.67.47 50296 typ host generation 0 ufrag ftQO network-id 6 network-cost 900\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"},{\"candidate\":\"candidate:4286008536 1 udp 2122066175 2405:6e00:2303:b82e:10be:fa52:5b85:6fd5 50297 typ host generation 0 ufrag ftQO network-id 2 network-cost 10\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"}],\"complete\":false,\"revision\":4,\"ufrag\":\"ftQO\"},\"id\":\"BFe6eCDa88fc4caae3CC524E7Dcb2Ec7\"}],\"session\":\"e385320155430877bd1a284a4a714a569ae6f8dac8ba06d5e41c8a7e78817d861791083cdb5219c46861ba945e7aa60632f7596135c1b9c6e9de59852447c511\",\"type\":\"update\",\"version\":2},\"type\":\"msg\"}\r\n2020-03-28 17:32:29.700677+1100 MDLink Health[13454:4768652] DEBUG:Twilio:[Core](0x16c513000): Sending message (1521 bytes):\r\n{\"body\":{\"participant\":{\"revision\":1,\"tracks\":[{\"enabled\":true,\"id\":\"75d5b2EEebDCD2A2E61e10011Bfe48DE\",\"kind\":\"audio\",\"name\":\"Microphone\",\"priority\":\"standard\"},{\"enabled\":true,\"id\":\"b5dd3A7EFA7EA9Bd345dD761aacEE54e\",\"kind\":\"video\",\"name\":\"Camera\",\"priority\":\"standard\"}]},\"peer_connections\":[{\"ice\":{\"candidates\":[{\"candidate\":\"candidate:1912282794 1 udp 2122260223 192.168.1.145 50699 typ host generation 0 ufrag ftQO network-id 1 network-cost 10\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"},{\"candidate\":\"candidate:4037135986 1 udp 2122197247 2405:6e00:2303:b82e:ed2d:874:b696:3c6e 50700 typ host generation 0 ufrag ftQO network-id 7 network-cost 900\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"},{\"candidate\":\"candidate:3944342259 1 udp 2122129151 100.85.67.47 50296 typ host generation 0 ufrag ftQO network-id 6 network-cost 900\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"},{\"candidate\":\"candidate:4286008536 1 udp 2122066175 2405:6e00:2303:b82e:10be:fa52:5b85:6fd5 50297 typ host generation 0 ufrag ftQO network-id 2 network-cost 10\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"},{\"candidate\":\"candidate:4286008536 1 udp 2122000639 2405:6e00:2303:b82e:10be:fa52:5b85:6fd5 50298 typ host generation 0 ufrag ftQO network-id 3 network-cost 10\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"}],\"complete\":false,\"revision\":5,\"ufrag\":\"ftQO\"},\"id\":\"BFe6eCDa88fc4caae3CC524E7Dcb2Ec7\"}],\"session\":\"e385320155430877bd1a284a4a714a569ae6f8dac8ba06d5e41c8a7e78817d861791083cdb5219c46861ba945e7aa60632f7596135c1b9c6e9de59852447c511\",\"type\":\"update\",\"version\":2},\"type\":\"msg\"}\r\n2020-03-28 17:32:29.738897+1100 MDLink Health[13454:4768652] DEBUG:Twilio:[Core](0x16c513000): Received message:\r\n{\"body\":{\"version\":2,\"type\":\"update\",\"peer_connections\":[{\"id\":\"BFe6eCDa88fc4caae3CC524E7Dcb2Ec7\",\"description\":{\"type\":\"offer\",\"sdp\":\"v=0\\r\\no=- 242963683246742954 3 IN IP4 127.0.0.1\\r\\ns=-\\r\\nt=0 0\\r\\na=msid-semantic: WMS *\\r\\na=group:BUNDLE audio video\\r\\nm=audio 9 UDP/TLS/RTP/SAVPF 111 103 9 0 8 105 13 110 113 126\\r\\nc=IN IP4 0.0.0.0\\r\\na=rtcp:9 IN IP4 0.0.0.0\\r\\na=ice-options:trickle\\r\\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\\r\\na=rtpmap:111 opus/48000/2\\r\\na=rtcp-fb:111 transport-cc\\r\\na=fmtp:111 minptime=10;useinbandfec=1\\r\\na=rtpmap:103 ISAC/16000\\r\\na=rtpmap:9 G722/8000\\r\\na=rtpmap:0 PCMU/8000\\r\\na=rtpmap:8 PCMA/8000\\r\\na=rtpmap:105 CN/16000\\r\\na=rtpmap:13 CN/8000\\r\\na=rtpmap:110 telephone-event/48000\\r\\na=rtpmap:113 telephone-event/16000\\r\\na=rtpmap:126 telephone-event/8000\\r\\na=setup:actpass\\r\\na=mid:audio\\r\\na=sendrecv\\r\\na=ice-ufrag:pU/V\\r\\na=ice-pwd:O0HPjD82DLf470nldJjY94MW\\r\\na=fingerprint:sha-256 21:6E:79:C9:AC:5E:64:07:86:53:EA:8A:A2:32:CC:1B:65:5A:B1:E5:E5:87:DE:4E:7F:D6:1A:AB:35:3B:36:CA\\r\\na=ssrc:2693948403 msid:- 630c3901-bc45-4c0e-8a8a-9521a1f3c9fb\\r\\na=ssrc:2693948403 cname:iIszjAOXAQC3doHr\\r\\na=ssrc:2693948403 mslabel:-\\r\\na=ssrc:2693948403 label:630c3901-bc45-4c0e-8a8a-9521a1f3c9fb\\r\\na=rtcp-mux\\r\\nm=video 9 UDP/TLS/RTP/SAVPF 96 97 101 125 100 102 127\\r\\nc=IN IP4 0.0.0.0\\r\\na=rtcp:9 IN IP4 0.0.0.0\\r\\na=ice-options:trickle\\r\\na=extmap:2 urn:ietf:params:rtp-hdrext:toffset\\r\\na=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\\r\\na=extmap:4 urn:3gpp:video-orientation\\r\\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\\r\\na=extmap:6 http://www.webrtc.org/experiments/rtp-hdrext/playout-delay\\r\\na=extmap:7 http://www.webrtc.org/experiments/rtp-hdrext/video-content-type\\r\\na=extmap:8 http://www.webrtc.org/experiments/rtp-hdrext/video-timing\\r\\na=extmap:10 http://tools.ietf.org/html/draft-ietf-avtext-framemarking-07\\r\\na=rtcp-rsize\\r\\na=rtpmap:96 VP8/90000\\r\\na=rtcp-fb:96 goog-remb\\r\\na=rtcp-fb:96 transport-cc\\r\\na=rtcp-fb:96 ccm fir\\r\\na=rtcp-fb:96 nack\\r\\na=rtcp-fb:96 nack pli\\r\\na=rtpmap:97 rtx/90000\\r\\na=fmtp:97 apt=96\\r\\na=rtpmap:101 rtx/90000\\r\\na=fmtp:101 apt=100\\r\\na=rtpmap:125 rtx/90000\\r\\na=fmtp:125 apt=102\\r\\na=rtpmap:100 H264/90000\\r\\na=rtcp-fb:100 goog-remb\\r\\na=rtcp-fb:100 transport-cc\\r\\na=rtcp-fb:100 ccm fir\\r\\na=rtcp-fb:100 nack\\r\\na=rtcp-fb:100 nack pli\\r\\na=fmtp:100 level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=42e01f\\r\\na=rtpmap:102 red/90000\\r\\na=rtpmap:127 ulpfec/90000\\r\\na=setup:actpass\\r\\na=mid:video\\r\\na=sendrecv\\r\\na=ice-ufrag:pU/V\\r\\na=ice-pwd:O0HPjD82DLf470nldJjY94MW\\r\\na=fingerprint:sha-256 21:6E:79:C9:AC:5E:64:07:86:53:EA:8A:A2:32:CC:1B:65:5A:B1:E5:E5:87:DE:4E:7F:D6:1A:AB:35:3B:36:CA\\r\\na=ssrc-group:FID 3194551002 3376353173\\r\\na=ssrc:3194551002 msid:- dbb3003f-7ff6-4f00-b98a-b3d120c3da4f\\r\\na=ssrc:3194551002 cname:iIszjAOXAQC3doHr\\r\\na=ssrc:3194551002 mslabel:-\\r\\na=ssrc:3194551002 label:dbb3003f-7ff6-4f00-b98a-b3d120c3da4f\\r\\na=ssrc:3376353173 msid:- dbb3003f-7ff6-4f00-b98a-b3d120c3da4f\\r\\na=ssrc:3376353173 cname:iIszjAOXAQC3doHr\\r\\na=ssrc:3376353173 mslabel:-\\r\\na=ssrc:3376353173 label:dbb3003f-7ff6-4f00-b98a-b3d120c3da4f\\r\\na=rtcp-mux\\r\\n\",\"revision\":2}}],\"sid\":\"RM9ae6f8dac8ba06d5e41c8a7e78817d86\",\"name\":\"RM9ae6f8dac8ba06d5e41c8a7e78817d86\",\"participant\":{\"sid\":\"PA1791083cdb5219c46861ba945e7aa606\",\"identity\":\"2F3B1031-F613-4B8F-AD66-8343E4493FDC-1585377147\",\"tracks\":[{\"kind\":\"video\",\"priority\":\"standard\",\"id\":\"b5dd3A7EFA7EA9Bd345dD761aacEE54e\",\"enabled\":true,\"sid\":\"MTf145daf3eecc79a6b71d09beda750708\",\"name\":\"Camera\",\"state\":\"ready\"},{\"kind\":\"audio\",\"priority\":\"standard\",\"id\":\"75d5b2EEebDCD2A2E61e10011Bfe48DE\",\"enabled\":true,\"sid\":\"MTed0c552700d63f57d34254cc22fdd091\",\"name\":\"Microphone\",\"state\":\"ready\"}],\"revision\":1,\"state\":\"connected\"},\"participants\":[{\"sid\":\"PA38fbc20e94f91b7c1fffeb94276ed483\",\"identity\":\"Che Bowen-1585377135\",\"tracks\":[{\"kind\":\"audio\",\"priority\":\"standard\",\"id\":\"630c3901-bc45-4c0e-8a8a-9521a1f3c9fb\",\"enabled\":true,\"sid\":\"MTa3de64d499659de74fbe9416a78c48e6\",\"name\":\"630c3901-bc45-4c0e-8a8a-9521a1f3c9fb\",\"state\":\"ready\"},{\"kind\":\"video\",\"priority\":\"standard\",\"id\":\"dbb3003f-7ff6-4f00-b98a-b3d120c3da4f\",\"enabled\":true,\"sid\":\"MT9b9a9e8a89e2a809860f5fcfcc8fe646\",\"name\":\"dbb3003f-7ff6-4f00-b98a-b3d120c3da4f\",\"state\":\"ready\"}],\"revision\":3,\"state\":\"connected\"}],\"recording\":{\"enabled\":false,\"revision\":1},\"subscribe\":{\"revision\":1,\"rules\":[{\"type\":\"include\",\"all\":true}]},\"subscribed\":{\"revision\":2,\"tracks\":[{\"id\":\"630c3901-bc45-4c0e-8a8a-9521a1f3c9fb\",\"sid\":\"MTa3de64d499659de74fbe9416a78c48e6\"},{\"id\":\"dbb3003f-7ff6-4f00-b98a-b3d120c3da4f\",\"sid\":\"MT9b9a9e8a89e2a809860f5fcfcc8fe646\"}]},\"published\":{\"revision\":1,\"tracks\":[{\"kind\":\"video\",\"priority\":\"standard\",\"id\":\"b5dd3A7EFA7EA9Bd345dD761aacEE54e\",\"enabled\":true,\"sid\":\"MTf145daf3eecc79a6b71d09beda750708\",\"name\":\"Camera\",\"state\":\"ready\"},{\"kind\":\"audio\",\"priority\":\"standard\",\"id\":\"75d5b2EEebDCD2A2E61e10011Bfe48DE\",\"enabled\":true,\"sid\":\"MTed0c552700d63f57d34254cc22fdd091\",\"name\":\"Microphone\",\"state\":\"ready\"}]}},\"type\":\"msg\"}\r\n2020-03-28 17:32:29.741862+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): Open -> Updating. Process an event\r\n2020-03-28 17:32:29.742068+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): Process remote offer.\r\n2020-03-28 17:32:29.742311+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): Process remote sdp for: BFe6eCDa88fc4caae3CC524E7Dcb2Ec7 revision is: 2.\r\n2020-03-28 17:32:29.743538+1100 MDLink Health[13454:4768535] DEBUG:Twilio:[Core](MediaFactoryImpl::signaling): Applying remote description to: BFe6eCDa88fc4caae3CC524E7Dcb2Ec7 rev: 2\r\n2020-03-28 17:32:30.116245+1100 MDLink Health[13454:4768652] DEBUG:Twilio:[Core](0x16c513000): Received message:\r\n{\"body\":{\"version\":2,\"type\":\"update\",\"peer_connections\":[{\"id\":\"BFe6eCDa88fc4caae3CC524E7Dcb2Ec7\",\"ice\":{\"ufrag\":\"pU/V\",\"revision\":1,\"candidates\":[{\"candidate\":\"candidate:2624638470 1 udp 2113937151 192.168.1.113 49672 typ host generation 0 ufrag pU/V network-cost 999\",\"sdpMid\":\"audio\",\"sdpMLineIndex\":0}]}}],\"sid\":\"RM9ae6f8dac8ba06d5e41c8a7e78817d86\",\"name\":\"RM9ae6f8dac8ba06d5e41c8a7e78817d86\",\"participant\":{\"sid\":\"PA1791083cdb5219c46861ba945e7aa606\",\"identity\":\"2F3B1031-F613-4B8F-AD66-8343E4493FDC-1585377147\",\"tracks\":[{\"kind\":\"video\",\"priority\":\"standard\",\"id\":\"b5dd3A7EFA7EA9Bd345dD761aacEE54e\",\"enabled\":true,\"sid\":\"MTf145daf3eecc79a6b71d09beda750708\",\"name\":\"Camera\",\"state\":\"ready\"},{\"kind\":\"audio\",\"priority\":\"standard\",\"id\":\"75d5b2EEebDCD2A2E61e10011Bfe48DE\",\"enabled\":true,\"sid\":\"MTed0c552700d63f57d34254cc22fdd091\",\"name\":\"Microphone\",\"state\":\"ready\"}],\"revision\":1,\"state\":\"connected\"},\"participants\":[{\"sid\":\"PA38fbc20e94f91b7c1fffeb94276ed483\",\"identity\":\"Che Bowen-1585377135\",\"tracks\":[{\"kind\":\"audio\",\"priority\":\"standard\",\"id\":\"630c3901-bc45-4c0e-8a8a-9521a1f3c9fb\",\"enabled\":true,\"sid\":\"MTa3de64d499659de74fbe9416a78c48e6\",\"name\":\"630c3901-bc45-4c0e-8a8a-9521a1f3c9fb\",\"state\":\"ready\"},{\"kind\":\"video\",\"priority\":\"standard\",\"id\":\"dbb3003f-7ff6-4f00-b98a-b3d120c3da4f\",\"enabled\":true,\"sid\":\"MT9b9a9e8a89e2a809860f5fcfcc8fe646\",\"name\":\"dbb3003f-7ff6-4f00-b98a-b3d120c3da4f\",\"state\":\"ready\"}],\"revision\":3,\"state\":\"connected\"}],\"recording\":{\"enabled\":false,\"revision\":1},\"subscribe\":{\"revision\":1,\"rules\":[{\"type\":\"include\",\"all\":true}]},\"subscribed\":{\"revision\":2,\"tracks\":[{\"id\":\"630c3901-bc45-4c0e-8a8a-9521a1f3c9fb\",\"sid\":\"MTa3de64d499659de74fbe9416a78c48e6\"},{\"id\":\"dbb3003f-7ff6-4f00-b98a-b3d120c3da4f\",\"sid\":\"MT9b9a9e8a89e2a809860f5fcfcc8fe646\"}]},\"published\":{\"revision\":1,\"tracks\":[{\"kind\":\"video\",\"priority\":\"standard\",\"id\":\"b5dd3A7EFA7EA9Bd345dD761aacEE54e\",\"enabled\":true,\"sid\":\"MTf145daf3eecc79a6b71d09beda750708\",\"name\":\"Camera\",\"state\":\"ready\"},{\"kind\":\"audio\",\"priority\":\"standard\",\"id\":\"75d5b2EEebDCD2A2E61e10011Bfe48DE\",\"enabled\":true,\"sid\":\"MTed0c552700d63f57d34254cc22fdd091\",\"name\":\"Microphone\",\"state\":\"ready\"}]}},\"type\":\"msg\"}\r\n2020-03-28 17:32:30.532001+1100 MDLink Health[13454:4768652] DEBUG:Twilio:[Core](0x16c513000): Received message:\r\n{\"body\":{\"version\":2,\"type\":\"update\",\"peer_connections\":[{\"id\":\"BFe6eCDa88fc4caae3CC524E7Dcb2Ec7\",\"ice\":{\"ufrag\":\"pU/V\",\"revision\":2,\"candidates\":[{\"candidate\":\"candidate:2624638470 1 udp 2113937151 192.168.1.113 49672 typ host generation 0 ufrag pU/V network-cost 999\",\"sdpMid\":\"audio\",\"sdpMLineIndex\":0},{\"candidate\":\"candidate:842163049 1 udp 1677729535 194.193.132.64 49672 typ srflx raddr 192.168.1.113 rport 49672 generation 0 ufrag pU/V network-cost 999\",\"sdpMid\":\"audio\",\"sdpMLineIndex\":0}]}}],\"sid\":\"RM9ae6f8dac8ba06d5e41c8a7e78817d86\",\"name\":\"RM9ae6f8dac8ba06d5e41c8a7e78817d86\",\"participant\":{\"sid\":\"PA1791083cdb5219c46861ba945e7aa606\",\"identity\":\"2F3B1031-F613-4B8F-AD66-8343E4493FDC-1585377147\",\"tracks\":[{\"kind\":\"video\",\"priority\":\"standard\",\"id\":\"b5dd3A7EFA7EA9Bd345dD761aacEE54e\",\"enabled\":true,\"sid\":\"MTf145daf3eecc79a6b71d09beda750708\",\"name\":\"Camera\",\"state\":\"ready\"},{\"kind\":\"audio\",\"priority\":\"standard\",\"id\":\"75d5b2EEebDCD2A2E61e10011Bfe48DE\",\"enabled\":true,\"sid\":\"MTed0c552700d63f57d34254cc22fdd091\",\"name\":\"Microphone\",\"state\":\"ready\"}],\"revision\":1,\"state\":\"connected\"},\"participants\":[{\"sid\":\"PA38fbc20e94f91b7c1fffeb94276ed483\",\"identity\":\"Che Bowen-1585377135\",\"tracks\":[{\"kind\":\"audio\",\"priority\":\"standard\",\"id\":\"630c3901-bc45-4c0e-8a8a-9521a1f3c9fb\",\"enabled\":true,\"sid\":\"MTa3de64d499659de74fbe9416a78c48e6\",\"name\":\"630c3901-bc45-4c0e-8a8a-9521a1f3c9fb\",\"state\":\"ready\"},{\"kind\":\"video\",\"priority\":\"standard\",\"id\":\"dbb3003f-7ff6-4f00-b98a-b3d120c3da4f\",\"enabled\":true,\"sid\":\"MT9b9a9e8a89e2a809860f5fcfcc8fe646\",\"name\":\"dbb3003f-7ff6-4f00-b98a-b3d120c3da4f\",\"state\":\"ready\"}],\"revision\":3,\"state\":\"connected\"}],\"recording\":{\"enabled\":false,\"revision\":1},\"subscribe\":{\"revision\":1,\"rules\":[{\"type\":\"include\",\"all\":true}]},\"subscribed\":{\"revision\":2,\"tracks\":[{\"id\":\"630c3901-bc45-4c0e-8a8a-9521a1f3c9fb\",\"sid\":\"MTa3de64d499659de74fbe9416a78c48e6\"},{\"id\":\"dbb3003f-7ff6-4f00-b98a-b3d120c3da4f\",\"sid\":\"MT9b9a9e8a89e2a809860f5fcfcc8fe646\"}]},\"published\":{\"revision\":1,\"tracks\":[{\"kind\":\"video\",\"priority\":\"standard\",\"id\":\"b5dd3A7EFA7EA9Bd345dD761aacEE54e\",\"enabled\":true,\"sid\":\"MTf145daf3eecc79a6b71d09beda750708\",\"name\":\"Camera\",\"state\":\"ready\"},{\"kind\":\"audio\",\"priority\":\"standard\",\"id\":\"75d5b2EEebDCD2A2E61e10011Bfe48DE\",\"enabled\":true,\"sid\":\"MTed0c552700d63f57d34254cc22fdd091\",\"name\":\"Microphone\",\"state\":\"ready\"}]}},\"type\":\"msg\"}\r\n2020-03-28 17:32:30.533739+1100 MDLink Health[13454:4768652] DEBUG:Twilio:[Core](0x16c513000): Received message:\r\n{\"body\":{\"version\":2,\"type\":\"update\",\"peer_connections\":[{\"id\":\"BFe6eCDa88fc4caae3CC524E7Dcb2Ec7\",\"ice\":{\"ufrag\":\"pU/V\",\"revision\":5,\"candidates\":[{\"candidate\":\"candidate:2624638470 1 udp 2113937151 192.168.1.113 49672 typ host generation 0 ufrag pU/V network-cost 999\",\"sdpMid\":\"audio\",\"sdpMLineIndex\":0},{\"candidate\":\"candidate:842163049 1 udp 1677729535 194.193.132.64 49672 typ srflx raddr 192.168.1.113 rport 49672 generation 0 ufrag pU/V network-cost 999\",\"sdpMid\":\"audio\",\"sdpMLineIndex\":0},{\"candidate\":\"candidate:2635478349 1 udp 33562623 54.252.254.106 55477 typ relay raddr 194.193.132.64 rport 49672 generation 0 ufrag pU/V network-cost 999\",\"sdpMid\":\"audio\",\"sdpMLineIndex\":0},{\"candidate\":\"candidate:3439625416 1 udp 7935 54.252.254.106 20469 typ relay raddr 194.193.132.64 rport 51007 generation 0 ufrag pU/V network-cost 999\",\"sdpMid\":\"audio\",\"sdpMLineIndex\":0}],\"complete\":true}}],\"sid\":\"RM9ae6f8dac8ba06d5e41c8a7e78817d86\",\"name\":\"RM9ae6f8dac8ba06d5e41c8a7e78817d86\",\"participant\":{\"sid\":\"PA1791083cdb5219c46861ba945e7aa606\",\"identity\":\"2F3B1031-F613-4B8F-AD66-8343E4493FDC-1585377147\",\"tracks\":[{\"kind\":\"video\",\"priority\":\"standard\",\"id\":\"b5dd3A7EFA7EA9Bd345dD761aacEE54e\",\"enabled\":true,\"sid\":\"MTf145daf3eecc79a6b71d09beda750708\",\"name\":\"Camera\",\"state\":\"ready\"},{\"kind\":\"audio\",\"priority\":\"standard\",\"id\":\"75d5b2EEebDCD2A2E61e10011Bfe48DE\",\"enabled\":true,\"sid\":\"MTed0c552700d63f57d34254cc22fdd091\",\"name\":\"Microphone\",\"state\":\"ready\"}],\"revision\":1,\"state\":\"connected\"},\"participants\":[{\"sid\":\"PA38fbc20e94f91b7c1fffeb94276ed483\",\"identity\":\"Che Bowen-1585377135\",\"tracks\":[{\"kind\":\"audio\",\"priority\":\"standard\",\"id\":\"630c3901-bc45-4c0e-8a8a-9521a1f3c9fb\",\"enabled\":true,\"sid\":\"MTa3de64d499659de74fbe9416a78c48e6\",\"name\":\"630c3901-bc45-4c0e-8a8a-9521a1f3c9fb\",\"state\":\"ready\"},{\"kind\":\"video\",\"priority\":\"standard\",\"id\":\"dbb3003f-7ff6-4f00-b98a-b3d120c3da4f\",\"enabled\":true,\"sid\":\"MT9b9a9e8a89e2a809860f5fcfcc8fe646\",\"name\":\"dbb3003f-7ff6-4f00-b98a-b3d120c3da4f\",\"state\":\"ready\"}],\"revision\":3,\"state\":\"connected\"}],\"recording\":{\"enabled\":false,\"revision\":1},\"subscribe\":{\"revision\":1,\"rules\":[{\"type\":\"include\",\"all\":true}]},\"subscribed\":{\"revision\":2,\"tracks\":[{\"id\":\"630c3901-bc45-4c0e-8a8a-9521a1f3c9fb\",\"sid\":\"MTa3de64d499659de74fbe9416a78c48e6\"},{\"id\":\"dbb3003f-7ff6-4f00-b98a-b3d120c3da4f\",\"sid\":\"MT9b9a9e8a89e2a809860f5fcfcc8fe646\"}]},\"published\":{\"revision\":1,\"tracks\":[{\"kind\":\"video\",\"priority\":\"standard\",\"id\":\"b5dd3A7EFA7EA9Bd345dD761aacEE54e\",\"enabled\":true,\"sid\":\"MTf145daf3eecc79a6b71d09beda750708\",\"name\":\"Camera\",\"state\":\"ready\"},{\"kind\":\"audio\",\"priority\":\"standard\",\"id\":\"75d5b2EEebDCD2A2E61e10011Bfe48DE\",\"enabled\":true,\"sid\":\"MTed0c552700d63f57d34254cc22fdd091\",\"name\":\"Microphone\",\"state\":\"ready\"}]}},\"type\":\"msg\"}\r\n2020-03-28 17:32:31.842900+1100 MDLink Health[13454:4768535] DEBUG:Twilio:[Core](MediaFactoryImpl::signaling): Adding 1 ICE candidate(s).\r\n2020-03-28 17:32:31.844159+1100 MDLink Health[13454:4768535] DEBUG:Twilio:[Core](MediaFactoryImpl::signaling): Adding 1 ICE candidate(s).\r\n2020-03-28 17:32:31.846451+1100 MDLink Health[13454:4768535] DEBUG:Twilio:[Core](MediaFactoryImpl::signaling): Adding 2 ICE candidate(s).\r\n2020-03-28 17:32:31.848233+1100 MDLink Health[13454:4767886] INFO:Twilio:[Core](0x104f6d840): Subscribed to Participant's Che Bowen-1585377135 audio track with sid MTa3de64d499659de74fbe9416a78c48e6\r\n2020-03-28 17:32:31.848955+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): Gathered a candidate. candidate:4038268958 1 udp 1686052607 194.193.132.64 50699 typ srflx raddr 192.168.1.145 rport 50699 generation 0 ufrag ftQO network-id 1 network-cost 10\r\n2020-03-28 17:32:31.849170+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): Queue ICE candidate revision: 6 for PeerConnection: BFe6eCDa88fc4caae3CC524E7Dcb2Ec7.\r\n2020-03-28 17:32:31.850104+1100 MDLink Health[13454:4768462] INFO:Twilio:[Core](0x16bf9b000): Publish ICE candidate revision: 6 for PeerConnection: BFe6eCDa88fc4caae3CC524E7Dcb2Ec7.\r\n2020-03-28 17:32:31.850291+1100 MDLink Health[13454:4767886] INFO:Twilio:[Core](0x104f6d840): Subscribed to Participant's Che Bowen-1585377135 video track with sid MT9b9a9e8a89e2a809860f5fcfcc8fe646\r\n2020-03-28 17:32:31.850814+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): Gathered a candidate. candidate:487168807 1 udp 1685921535 120.21.18.175 1656 typ srflx raddr 100.85.67.47 rport 50296 generation 0 ufrag ftQO network-id 6 network-cost 900\r\n2020-03-28 17:32:31.850993+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): Queue ICE candidate revision: 7 for PeerConnection: BFe6eCDa88fc4caae3CC524E7Dcb2Ec7.\r\n2020-03-28 17:32:31.851104+1100 MDLink Health[13454:4768462] INFO:Twilio:[Core](0x16bf9b000): Publish ICE candidate revision: 7 for PeerConnection: BFe6eCDa88fc4caae3CC524E7Dcb2Ec7.\r\n2020-03-28 17:32:31.852526+1100 MDLink Health[13454:4768462] INFO:Twilio:[Core](0x16bf9b000): Ice Gathering Complete for BFe6eCDa88fc4caae3CC524E7Dcb2Ec7.\r\n2020-03-28 17:32:31.852707+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): Queue ICE candidate revision: 8 for PeerConnection: BFe6eCDa88fc4caae3CC524E7Dcb2Ec7.\r\n2020-03-28 17:32:31.854296+1100 MDLink Health[13454:4768462] INFO:Twilio:[Core](0x16bf9b000): Publish ICE candidate revision: 8 for PeerConnection: BFe6eCDa88fc4caae3CC524E7Dcb2Ec7.\r\n2020-03-28 17:32:31.854949+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): ICE connection state transitioned from Checking -> Connected\r\n2020-03-28 17:32:31.855079+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): PeerConnection BFe6eCDa88fc4caae3CC524E7Dcb2Ec7 Ice connection state transitioned from Checking -> Connected\r\n2020-03-28 17:32:31.855204+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): Room Media state changed to Connected\r\n2020-03-28 17:32:31.855237+1100 MDLink Health[13454:4768652] DEBUG:Twilio:[Core](0x16c513000): Sending message (1726 bytes):\r\n{\"body\":{\"participant\":{\"revision\":1,\"tracks\":[{\"enabled\":true,\"id\":\"75d5b2EEebDCD2A2E61e10011Bfe48DE\",\"kind\":\"audio\",\"name\":\"Microphone\",\"priority\":\"standard\"},{\"enabled\":true,\"id\":\"b5dd3A7EFA7EA9Bd345dD761aacEE54e\",\"kind\":\"video\",\"name\":\"Camera\",\"priority\":\"standard\"}]},\"peer_connections\":[{\"ice\":{\"candidates\":[{\"candidate\":\"candidate:1912282794 1 udp 2122260223 192.168.1.145 50699 typ host generation 0 ufrag ftQO network-id 1 network-cost 10\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"},{\"candidate\":\"candidate:4037135986 1 udp 2122197247 2405:6e00:2303:b82e:ed2d:874:b696:3c6e 50700 typ host generation 0 ufrag ftQO network-id 7 network-cost 900\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"},{\"candidate\":\"candidate:3944342259 1 udp 2122129151 100.85.67.47 50296 typ host generation 0 ufrag ftQO network-id 6 network-cost 900\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"},{\"candidate\":\"candidate:4286008536 1 udp 2122066175 2405:6e00:2303:b82e:10be:fa52:5b85:6fd5 50297 typ host generation 0 ufrag ftQO network-id 2 network-cost 10\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"},{\"candidate\":\"candidate:4286008536 1 udp 2122000639 2405:6e00:2303:b82e:10be:fa52:5b85:6fd5 50298 typ host generation 0 ufrag ftQO network-id 3 network-cost 10\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"},{\"candidate\":\"candidate:4038268958 1 udp 1686052607 194.193.132.64 50699 typ srflx raddr 192.168.1.145 rport 50699 generation 0 ufrag ftQO network-id 1 network-cost 10\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"}],\"complete\":false,\"revision\":6,\"ufrag\":\"ftQO\"},\"id\":\"BFe6eCDa88fc4caae3CC524E7Dcb2Ec7\"}],\"session\":\"e385320155430877bd1a284a4a714a569ae6f8dac8ba06d5e41c8a7e78817d861791083cdb5219c46861ba945e7aa60632f7596135c1b9c6e9de59852447c511\",\"type\":\"update\",\"version\":2},\"type\":\"msg\"}\r\n2020-03-28 17:32:31.855319+1100 MDLink Health[13454:4768462] INFO:Twilio:[Core](0x16bf9b000): Media is connected\r\n2020-03-28 17:32:31.857806+1100 MDLink Health[13454:4768699] INFO:Twilio:[Core](0x16ca67000): Connecting to sdkgw.us1.twilio.com:443.\r\n2020-03-28 17:32:31.858201+1100 MDLink Health[13454:4768652] DEBUG:Twilio:[Core](0x16c513000): Sending message (1928 bytes):\r\n{\"body\":{\"participant\":{\"revision\":1,\"tracks\":[{\"enabled\":true,\"id\":\"75d5b2EEebDCD2A2E61e10011Bfe48DE\",\"kind\":\"audio\",\"name\":\"Microphone\",\"priority\":\"standard\"},{\"enabled\":true,\"id\":\"b5dd3A7EFA7EA9Bd345dD761aacEE54e\",\"kind\":\"video\",\"name\":\"Camera\",\"priority\":\"standard\"}]},\"peer_connections\":[{\"ice\":{\"candidates\":[{\"candidate\":\"candidate:1912282794 1 udp 2122260223 192.168.1.145 50699 typ host generation 0 ufrag ftQO network-id 1 network-cost 10\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"},{\"candidate\":\"candidate:4037135986 1 udp 2122197247 2405:6e00:2303:b82e:ed2d:874:b696:3c6e 50700 typ host generation 0 ufrag ftQO network-id 7 network-cost 900\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"},{\"candidate\":\"candidate:3944342259 1 udp 2122129151 100.85.67.47 50296 typ host generation 0 ufrag ftQO network-id 6 network-cost 900\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"},{\"candidate\":\"candidate:4286008536 1 udp 2122066175 2405:6e00:2303:b82e:10be:fa52:5b85:6fd5 50297 typ host generation 0 ufrag ftQO network-id 2 network-cost 10\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"},{\"candidate\":\"candidate:4286008536 1 udp 2122000639 2405:6e00:2303:b82e:10be:fa52:5b85:6fd5 50298 typ host generation 0 ufrag ftQO network-id 3 network-cost 10\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"},{\"candidate\":\"candidate:4038268958 1 udp 1686052607 194.193.132.64 50699 typ srflx raddr 192.168.1.145 rport 50699 generation 0 ufrag ftQO network-id 1 network-cost 10\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"},{\"candidate\":\"candidate:487168807 1 udp 1685921535 120.21.18.175 1656 typ srflx raddr 100.85.67.47 rport 50296 generation 0 ufrag ftQO network-id 6 network-cost 900\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"}],\"complete\":false,\"revision\":7,\"ufrag\":\"ftQO\"},\"id\":\"BFe6eCDa88fc4caae3CC524E7Dcb2Ec7\"}],\"session\":\"e385320155430877bd1a284a4a714a569ae6f8dac8ba06d5e41c8a7e78817d861791083cdb5219c46861ba945e7aa60632f7596135c1b9c6e9de59852447c511\",\"type\":\"update\",\"version\":2},\"type\":\"msg\"}\r\n2020-03-28 17:32:31.858286+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): ICE connection state transitioned from Connected -> Completed\r\n2020-03-28 17:32:31.858710+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): PeerConnection BFe6eCDa88fc4caae3CC524E7Dcb2Ec7 Ice connection state transitioned from Connected -> Completed\r\n2020-03-28 17:32:31.858844+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): Room Media state changed to Completed\r\n2020-03-28 17:32:31.858957+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): onSetSessionRemoteDescription: BFe6eCDa88fc4caae3CC524E7Dcb2Ec7\r\n2020-03-28 17:32:31.861124+1100 MDLink Health[13454:4768652] DEBUG:Twilio:[Core](0x16c513000): Sending message (1927 bytes):\r\n{\"body\":{\"participant\":{\"revision\":1,\"tracks\":[{\"enabled\":true,\"id\":\"75d5b2EEebDCD2A2E61e10011Bfe48DE\",\"kind\":\"audio\",\"name\":\"Microphone\",\"priority\":\"standard\"},{\"enabled\":true,\"id\":\"b5dd3A7EFA7EA9Bd345dD761aacEE54e\",\"kind\":\"video\",\"name\":\"Camera\",\"priority\":\"standard\"}]},\"peer_connections\":[{\"ice\":{\"candidates\":[{\"candidate\":\"candidate:1912282794 1 udp 2122260223 192.168.1.145 50699 typ host generation 0 ufrag ftQO network-id 1 network-cost 10\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"},{\"candidate\":\"candidate:4037135986 1 udp 2122197247 2405:6e00:2303:b82e:ed2d:874:b696:3c6e 50700 typ host generation 0 ufrag ftQO network-id 7 network-cost 900\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"},{\"candidate\":\"candidate:3944342259 1 udp 2122129151 100.85.67.47 50296 typ host generation 0 ufrag ftQO network-id 6 network-cost 900\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"},{\"candidate\":\"candidate:4286008536 1 udp 2122066175 2405:6e00:2303:b82e:10be:fa52:5b85:6fd5 50297 typ host generation 0 ufrag ftQO network-id 2 network-cost 10\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"},{\"candidate\":\"candidate:4286008536 1 udp 2122000639 2405:6e00:2303:b82e:10be:fa52:5b85:6fd5 50298 typ host generation 0 ufrag ftQO network-id 3 network-cost 10\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"},{\"candidate\":\"candidate:4038268958 1 udp 1686052607 194.193.132.64 50699 typ srflx raddr 192.168.1.145 rport 50699 generation 0 ufrag ftQO network-id 1 network-cost 10\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"},{\"candidate\":\"candidate:487168807 1 udp 1685921535 120.21.18.175 1656 typ srflx raddr 100.85.67.47 rport 50296 generation 0 ufrag ftQO network-id 6 network-cost 900\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"}],\"complete\":true,\"revision\":8,\"ufrag\":\"ftQO\"},\"id\":\"BFe6eCDa88fc4caae3CC524E7Dcb2Ec7\"}],\"session\":\"e385320155430877bd1a284a4a714a569ae6f8dac8ba06d5e41c8a7e78817d861791083cdb5219c46861ba945e7aa60632f7596135c1b9c6e9de59852447c511\",\"type\":\"update\",\"version\":2},\"type\":\"msg\"}\r\n2020-03-28 17:32:31.862141+1100 MDLink Health[13454:4768535] DEBUG:Twilio:[Core](MediaFactoryImpl::signaling): Create local answer: BFe6eCDa88fc4caae3CC524E7Dcb2Ec7\r\n2020-03-28 17:32:31.863111+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): ICE connection state transitioned from Completed -> Connected\r\n2020-03-28 17:32:31.863322+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): PeerConnection BFe6eCDa88fc4caae3CC524E7Dcb2Ec7 Ice connection state transitioned from Completed -> Connected\r\n2020-03-28 17:32:31.863339+1100 MDLink Health[13454:4768535] DEBUG:Twilio:[Core](MediaFactoryImpl::signaling): Including track id: b5dd3A7EFA7EA9Bd345dD761aacEE54e for simulcast.\r\n2020-03-28 17:32:31.863400+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): Room Media state changed to Connected\r\n2020-03-28 17:32:31.863539+1100 MDLink Health[13454:4768462] INFO:Twilio:[Core](0x16bf9b000): Media is connected\r\n2020-03-28 17:32:31.863855+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): onCreateSessionLocalDescription BFe6eCDa88fc4caae3CC524E7Dcb2Ec7\r\n2020-03-28 17:32:31.864301+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): SDP Utils: New SSRC 553315398 replaced with Old SSRC 553315398\r\n2020-03-28 17:32:31.864653+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): SDP Utils: New SSRC 2269185341 replaced with Old SSRC 2269185341\r\n2020-03-28 17:32:31.865042+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): SDP Utils: New SSRC 1247838727 replaced with Old SSRC 1247838727\r\n2020-03-28 17:32:31.865238+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): SDP Utils: New SSRC group 2269185341 1247838727 --- Original SSRC group 2269185341 1247838727\r\n2020-03-28 17:32:31.866180+1100 MDLink Health[13454:4768535] DEBUG:Twilio:[Core](MediaFactoryImpl::signaling): Applying local description to: BFe6eCDa88fc4caae3CC524E7Dcb2Ec7 rev: 2\r\n2020-03-28 17:32:31.868702+1100 MDLink Health[13454:4768462] INFO:Twilio:[Core](0x16bf9b000): Local answer is ready for BFe6eCDa88fc4caae3CC524E7Dcb2Ec7.\r\n2020-03-28 17:32:31.868824+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): Queue Description: 2 for PeerConnection: BFe6eCDa88fc4caae3CC524E7Dcb2Ec7.\r\n2020-03-28 17:32:31.869047+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): onSetSessionLocalDescription: BFe6eCDa88fc4caae3CC524E7Dcb2Ec7\r\n2020-03-28 17:32:31.869122+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): Updating -> Open\r\n2020-03-28 17:32:31.869188+1100 MDLink Health[13454:4768462] DEBUG:Twilio:[Core](0x16bf9b000): Done processing onSetSessionLocalDescription: BFe6eCDa88fc4caae3CC524E7Dcb2Ec7\r\n2020-03-28 17:32:31.869315+1100 MDLink Health[13454:4768652] DEBUG:Twilio:[Core](0x16c513000): Sending message (4737 bytes):\r\n{\"body\":{\"participant\":{\"revision\":1,\"tracks\":[{\"enabled\":true,\"id\":\"75d5b2EEebDCD2A2E61e10011Bfe48DE\",\"kind\":\"audio\",\"name\":\"Microphone\",\"priority\":\"standard\"},{\"enabled\":true,\"id\":\"b5dd3A7EFA7EA9Bd345dD761aacEE54e\",\"kind\":\"video\",\"name\":\"Camera\",\"priority\":\"standard\"}]},\"peer_connections\":[{\"description\":{\"revision\":2,\"sdp\":\"v=0\\r\\no=- 5094857780483517174 3 IN IP4 127.0.0.1\\r\\ns=-\\r\\nt=0 0\\r\\na=group:BUNDLE audio video\\r\\na=msid-semantic: WMS D1b23F9B1Edade9F8FBe70BdAC42D94C\\r\\nm=audio 50699 UDP/TLS/RTP/SAVPF 111 103 9 0 8 105 13 110 113 126\\r\\nc=IN IP4 194.193.132.64\\r\\na=rtcp:9 IN IP4 0.0.0.0\\r\\na=candidate:1912282794 1 udp 2122260223 192.168.1.145 50699 typ host generation 0 network-id 1 network-cost 10\\r\\na=candidate:4037135986 1 udp 2122197247 2405:6e00:2303:b82e:ed2d:874:b696:3c6e 50700 typ host generation 0 network-id 7 network-cost 900\\r\\na=candidate:3944342259 1 udp 2122129151 100.85.67.47 50296 typ host generation 0 network-id 6 network-cost 900\\r\\na=candidate:4286008536 1 udp 2122066175 2405:6e00:2303:b82e:10be:fa52:5b85:6fd5 50297 typ host generation 0 network-id 2 network-cost 10\\r\\na=candidate:4286008536 1 udp 2122000639 2405:6e00:2303:b82e:10be:fa52:5b85:6fd5 50298 typ host generation 0 network-id 3 network-cost 10\\r\\na=candidate:4038268958 1 udp 1686052607 194.193.132.64 50699 typ srflx raddr 192.168.1.145 rport 50699 generation 0 network-id 1 network-cost 10\\r\\na=candidate:487168807 1 udp 1685921535 120.21.18.175 1656 typ srflx raddr 100.85.67.47 rport 50296 generation 0 network-id 6 network-cost 900\\r\\na=ice-ufrag:ftQO\\r\\na=ice-pwd:wgBjZ55QB0NbyVPntGtY9zcL\\r\\na=ice-options:trickle\\r\\na=fingerprint:sha-256 BA:C6:76:78:08:B1:6C:1A:C8:E3:57:2C:83:FE:2C:47:76:11:3A:62:4A:B2:39:46:B1:B3:BF:56:A0:F9:CA:79\\r\\na=setup:passive\\r\\na=mid:audio\\r\\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\\r\\na=sendrecv\\r\\na=rtcp-mux\\r\\na=rtpmap:111 opus/48000/2\\r\\na=rtcp-fb:111 transport-cc\\r\\na=fmtp:111 minptime=10;useinbandfec=1\\r\\na=rtpmap:103 ISAC/16000\\r\\na=rtpmap:9 G722/8000\\r\\na=rtpmap:0 PCMU/8000\\r\\na=rtpmap:8 PCMA/8000\\r\\na=rtpmap:105 CN/16000\\r\\na=rtpmap:13 CN/8000\\r\\na=rtpmap:110 telephone-event/48000\\r\\na=rtpmap:113 telephone-event/16000\\r\\na=rtpmap:126 telephone-event/8000\\r\\na=ssrc:553315398 cname:hkAi0vZ9PEKaBaYa\\r\\na=ssrc:553315398 msid:D1b23F9B1Edade9F8FBe70BdAC42D94C 75d5b2EEebDCD2A2E61e10011Bfe48DE\\r\\na=ssrc:553315398 mslabel:D1b23F9B1Edade9F8FBe70BdAC42D94C\\r\\na=ssrc:553315398 label:75d5b2EEebDCD2A2E61e10011Bfe48DE\\r\\nm=video 9 UDP/TLS/RTP/SAVPF 96 97 101 125 100 102 127\\r\\nc=IN IP4 0.0.0.0\\r\\na=rtcp:9 IN IP4 0.0.0.0\\r\\na=ice-ufrag:ftQO\\r\\na=ice-pwd:wgBjZ55QB0NbyVPntGtY9zcL\\r\\na=ice-options:trickle\\r\\na=fingerprint:sha-256 BA:C6:76:78:08:B1:6C:1A:C8:E3:57:2C:83:FE:2C:47:76:11:3A:62:4A:B2:39:46:B1:B3:BF:56:A0:F9:CA:79\\r\\na=setup:passive\\r\\na=mid:video\\r\\na=extmap:2 urn:ietf:params:rtp-hdrext:toffset\\r\\na=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\\r\\na=extmap:4 urn:3gpp:video-orientation\\r\\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\\r\\na=extmap:6 http://www.webrtc.org/experiments/rtp-hdrext/playout-delay\\r\\na=extmap:7 http://www.webrtc.org/experiments/rtp-hdrext/video-content-type\\r\\na=extmap:8 http://www.webrtc.org/experiments/rtp-hdrext/video-timing\\r\\na=sendrecv\\r\\na=rtcp-mux\\r\\na=rtcp-rsize\\r\\na=rtpmap:96 VP8/90000\\r\\na=rtcp-fb:96 goog-remb\\r\\na=rtcp-fb:96 transport-cc\\r\\na=rtcp-fb:96 ccm fir\\r\\na=rtcp-fb:96 nack\\r\\na=rtcp-fb:96 nack pli\\r\\na=rtpmap:97 rtx/90000\\r\\na=fmtp:97 apt=96\\r\\na=rtpmap:101 rtx/90000\\r\\na=fmtp:101 apt=100\\r\\na=rtpmap:125 rtx/90000\\r\\na=fmtp:125 apt=102\\r\\na=rtpmap:100 H264/90000\\r\\na=rtcp-fb:100 goog-remb\\r\\na=rtcp-fb:100 transport-cc\\r\\na=rtcp-fb:100 ccm fir\\r\\na=rtcp-fb:100 nack\\r\\na=rtcp-fb:100 nack pli\\r\\na=fmtp:100 level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=42e01f\\r\\na=rtpmap:102 red/90000\\r\\na=rtpmap:127 ulpfec/90000\\r\\na=ssrc-group:FID 2269185341 1247838727\\r\\na=ssrc:2269185341 cname:hkAi0vZ9PEKaBaYa\\r\\na=ssrc:2269185341 msid:D1b23F9B1Edade9F8FBe70BdAC42D94C b5dd3A7EFA7EA9Bd345dD761aacEE54e\\r\\na=ssrc:2269185341 mslabel:D1b23F9B1Edade9F8FBe70BdAC42D94C\\r\\na=ssrc:2269185341 label:b5dd3A7EFA7EA9Bd345dD761aacEE54e\\r\\na=ssrc:1247838727 cname:hkAi0vZ9PEKaBaYa\\r\\na=ssrc:1247838727 msid:D1b23F9B1Edade9F8FBe70BdAC42D94C b5dd3A7EFA7EA9Bd345dD761aacEE54e\\r\\na=ssrc:1247838727 mslabel:D1b23F9B1Edade9F8FBe70BdAC42D94C\\r\\na=ssrc:1247838727 label:b5dd3A7EFA7EA9Bd345dD761aacEE54e\\r\\n\",\"type\":\"answer\"},\"id\":\"BFe6eCDa88fc4caae3CC524E7Dcb2Ec7\"}],\"session\":\"e385320155430877bd1a284a4a714a569ae6f8dac8ba06d5e41c8a7e78817d861791083cdb5219c46861ba945e7aa60632f7596135c1b9c6e9de59852447c511\",\"type\":\"update\",\"version\":2},\"type\":\"msg\"}\r\n2020-03-28 17:32:32.110623+1100 MDLink Health[13454:4768652] DEBUG:Twilio:[Core](0x16c513000): Received message:\r\n{\"body\":{\"version\":2,\"type\":\"update\",\"peer_connections\":[{\"id\":\"BFe6eCDa88fc4caae3CC524E7Dcb2Ec7\",\"description\":{\"type\":\"create-offer\",\"revision\":3}}],\"sid\":\"RM9ae6f8dac8ba06d5e41c8a7e78817d86\",\"name\":\"RM9ae6f8dac8ba06d5e41c8a7e78817d86\",\"participant\":{\"sid\":\"PA1791083cdb5219c46861ba945e7aa606\",\"identity\":\"2F3B1031-F613-4B8F-AD66-8343E4493FDC-1585377147\",\"tracks\":[{\"kind\":\"video\",\"priority\":\"standard\",\"id\":\"b5dd3A7EFA7EA9Bd345dD761aacEE54e\",\"enabled\":true,\"sid\":\"MTf145daf3eecc79a6b71d09beda750708\",\"name\":\"Camera\",\"state\":\"ready\"},{\"kind\":\"audio\",\"priority\":\"standard\",\"id\":\"75d5b2EEebDCD2A2E61e10011Bfe48DE\",\"enabled\":true,\"sid\":\"MTed0c552700d63f57d34254cc22fdd091\",\"name\":\"Microphone\",\"state\":\"ready\"}],\"revision\":1,\"state\":\"connected\"},\"participants\":[],\"subscribe\":{\"revision\":1,\"rules\":[{\"type\":\"include\",\"all\":true}]},\"subscribed\":{\"revision\":2,\"tracks\":[{\"id\":\"630c3901-bc45-4c0e-8a8a-9521a1f3c9fb\",\"sid\":\"MTa3de64d499659de74fbe9416a78c48e6\"},{\"id\":\"dbb3003f-7ff6-4f00-b98a-b3d120c3da4f\",\"sid\":\"MT9b9a9e8a89e2a809860f5fcfcc8fe646\"}]}},\"type\":\"msg\"}\r\n2020-03-28 17:32:32.113191+1100 MDLink Health[13454:4768440] DEBUG:Twilio:[Core](0x16bf0f000): Open -> Updating. Process an event\r\n2020-03-28 17:32:32.113532+1100 MDLink Health[13454:4768535] DEBUG:Twilio:[Core](MediaFactoryImpl::signaling): Create local offer: BFe6eCDa88fc4caae3CC524E7Dcb2Ec7\r\n2020-03-28 17:32:32.114672+1100 MDLink Health[13454:4768535] DEBUG:Twilio:[Core](MediaFactoryImpl::signaling): Including track id: b5dd3A7EFA7EA9Bd345dD761aacEE54e for simulcast.\r\n2020-03-28 17:32:32.114882+1100 MDLink Health[13454:4768440] DEBUG:Twilio:[Core](0x16bf0f000): onCreateSessionLocalDescription BFe6eCDa88fc4caae3CC524E7Dcb2Ec7\r\n2020-03-28 17:32:32.115699+1100 MDLink Health[13454:4768440] DEBUG:Twilio:[Core](0x16bf0f000): SDP Utils: New SSRC 553315398 replaced with Old SSRC 553315398\r\n2020-03-28 17:32:32.116230+1100 MDLink Health[13454:4768440] DEBUG:Twilio:[Core](0x16bf0f000): SDP Utils: New SSRC 2269185341 replaced with Old SSRC 2269185341\r\n2020-03-28 17:32:32.116691+1100 MDLink Health[13454:4768440] DEBUG:Twilio:[Core](0x16bf0f000): SDP Utils: New SSRC 1247838727 replaced with Old SSRC 1247838727\r\n2020-03-28 17:32:32.117002+1100 MDLink Health[13454:4768440] DEBUG:Twilio:[Core](0x16bf0f000): SDP Utils: New SSRC group 2269185341 1247838727 --- Original SSRC group 2269185341 1247838727\r\n2020-03-28 17:32:32.118438+1100 MDLink Health[13454:4768440] DEBUG:Twilio:[Core](0x16bf0f000): Updating -> Open\r\n2020-03-28 17:32:32.118589+1100 MDLink Health[13454:4768440] INFO:Twilio:[Core](0x16bf0f000): Local offer is ready for BFe6eCDa88fc4caae3CC524E7Dcb2Ec7.\r\n2020-03-28 17:32:32.118700+1100 MDLink Health[13454:4768440] DEBUG:Twilio:[Core](0x16bf0f000): Queue Description: 4 for PeerConnection: BFe6eCDa88fc4caae3CC524E7Dcb2Ec7.\r\n2020-03-28 17:32:32.119584+1100 MDLink Health[13454:4768652] DEBUG:Twilio:[Core](0x16c513000): Sending message (5039 bytes):\r\n{\"body\":{\"participant\":{\"revision\":1,\"tracks\":[{\"enabled\":true,\"id\":\"75d5b2EEebDCD2A2E61e10011Bfe48DE\",\"kind\":\"audio\",\"name\":\"Microphone\",\"priority\":\"standard\"},{\"enabled\":true,\"id\":\"b5dd3A7EFA7EA9Bd345dD761aacEE54e\",\"kind\":\"video\",\"name\":\"Camera\",\"priority\":\"standard\"}]},\"peer_connections\":[{\"description\":{\"revision\":4,\"sdp\":\"v=0\\r\\no=- 5094857780483517174 4 IN IP4 127.0.0.1\\r\\ns=-\\r\\nt=0 0\\r\\na=group:BUNDLE audio video\\r\\na=msid-semantic: WMS D1b23F9B1Edade9F8FBe70BdAC42D94C\\r\\nm=audio 50699 UDP/TLS/RTP/SAVPF 111 103 9 0 8 105 13 110 113 126 104 106 112\\r\\nc=IN IP4 194.193.132.64\\r\\na=rtcp:9 IN IP4 0.0.0.0\\r\\na=candidate:1912282794 1 udp 2122260223 192.168.1.145 50699 typ host generation 0 network-id 1 network-cost 10\\r\\na=candidate:4037135986 1 udp 2122197247 2405:6e00:2303:b82e:ed2d:874:b696:3c6e 50700 typ host generation 0 network-id 7 network-cost 900\\r\\na=candidate:3944342259 1 udp 2122129151 100.85.67.47 50296 typ host generation 0 network-id 6 network-cost 900\\r\\na=candidate:4286008536 1 udp 2122066175 2405:6e00:2303:b82e:10be:fa52:5b85:6fd5 50297 typ host generation 0 network-id 2 network-cost 10\\r\\na=candidate:4286008536 1 udp 2122000639 2405:6e00:2303:b82e:10be:fa52:5b85:6fd5 50298 typ host generation 0 network-id 3 network-cost 10\\r\\na=candidate:4038268958 1 udp 1686052607 194.193.132.64 50699 typ srflx raddr 192.168.1.145 rport 50699 generation 0 network-id 1 network-cost 10\\r\\na=candidate:487168807 1 udp 1685921535 120.21.18.175 1656 typ srflx raddr 100.85.67.47 rport 50296 generation 0 network-id 6 network-cost 900\\r\\na=ice-ufrag:ftQO\\r\\na=ice-pwd:wgBjZ55QB0NbyVPntGtY9zcL\\r\\na=ice-options:trickle\\r\\na=fingerprint:sha-256 BA:C6:76:78:08:B1:6C:1A:C8:E3:57:2C:83:FE:2C:47:76:11:3A:62:4A:B2:39:46:B1:B3:BF:56:A0:F9:CA:79\\r\\na=setup:actpass\\r\\na=mid:audio\\r\\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\\r\\na=sendrecv\\r\\na=rtcp-mux\\r\\na=rtpmap:111 opus/48000/2\\r\\na=rtcp-fb:111 transport-cc\\r\\na=fmtp:111 minptime=10;useinbandfec=1\\r\\na=rtpmap:103 ISAC/16000\\r\\na=rtpmap:9 G722/8000\\r\\na=rtpmap:0 PCMU/8000\\r\\na=rtpmap:8 PCMA/8000\\r\\na=rtpmap:105 CN/16000\\r\\na=rtpmap:13 CN/8000\\r\\na=rtpmap:110 telephone-event/48000\\r\\na=rtpmap:113 telephone-event/16000\\r\\na=rtpmap:126 telephone-event/8000\\r\\na=rtpmap:104 ISAC/32000\\r\\na=rtpmap:106 CN/32000\\r\\na=rtpmap:112 telephone-event/32000\\r\\na=ssrc:553315398 cname:hkAi0vZ9PEKaBaYa\\r\\na=ssrc:553315398 msid:D1b23F9B1Edade9F8FBe70BdAC42D94C 75d5b2EEebDCD2A2E61e10011Bfe48DE\\r\\na=ssrc:553315398 mslabel:D1b23F9B1Edade9F8FBe70BdAC42D94C\\r\\na=ssrc:553315398 label:75d5b2EEebDCD2A2E61e10011Bfe48DE\\r\\nm=video 9 UDP/TLS/RTP/SAVPF 96 97 101 125 100 102 127 98 99\\r\\nc=IN IP4 0.0.0.0\\r\\na=rtcp:9 IN IP4 0.0.0.0\\r\\na=ice-ufrag:ftQO\\r\\na=ice-pwd:wgBjZ55QB0NbyVPntGtY9zcL\\r\\na=ice-options:trickle\\r\\na=fingerprint:sha-256 BA:C6:76:78:08:B1:6C:1A:C8:E3:57:2C:83:FE:2C:47:76:11:3A:62:4A:B2:39:46:B1:B3:BF:56:A0:F9:CA:79\\r\\na=setup:actpass\\r\\na=mid:video\\r\\na=extmap:2 urn:ietf:params:rtp-hdrext:toffset\\r\\na=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\\r\\na=extmap:4 urn:3gpp:video-orientation\\r\\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\\r\\na=extmap:6 http://www.webrtc.org/experiments/rtp-hdrext/playout-delay\\r\\na=extmap:7 http://www.webrtc.org/experiments/rtp-hdrext/video-content-type\\r\\na=extmap:8 http://www.webrtc.org/experiments/rtp-hdrext/video-timing\\r\\na=sendrecv\\r\\na=rtcp-mux\\r\\na=rtcp-rsize\\r\\na=rtpmap:96 VP8/90000\\r\\na=rtcp-fb:96 goog-remb\\r\\na=rtcp-fb:96 transport-cc\\r\\na=rtcp-fb:96 ccm fir\\r\\na=rtcp-fb:96 nack\\r\\na=rtcp-fb:96 nack pli\\r\\na=rtpmap:97 rtx/90000\\r\\na=fmtp:97 apt=96\\r\\na=rtpmap:101 rtx/90000\\r\\na=fmtp:101 apt=100\\r\\na=rtpmap:125 rtx/90000\\r\\na=fmtp:125 apt=102\\r\\na=rtpmap:100 H264/90000\\r\\na=rtcp-fb:100 goog-remb\\r\\na=rtcp-fb:100 transport-cc\\r\\na=rtcp-fb:100 ccm fir\\r\\na=rtcp-fb:100 nack\\r\\na=rtcp-fb:100 nack pli\\r\\na=fmtp:100 level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=42e01f\\r\\na=rtpmap:102 red/90000\\r\\na=rtpmap:127 ulpfec/90000\\r\\na=rtpmap:98 VP9/90000\\r\\na=rtcp-fb:98 goog-remb\\r\\na=rtcp-fb:98 transport-cc\\r\\na=rtcp-fb:98 ccm fir\\r\\na=rtcp-fb:98 nack\\r\\na=rtcp-fb:98 nack pli\\r\\na=rtpmap:99 rtx/90000\\r\\na=fmtp:99 apt=98\\r\\na=ssrc-group:FID 2269185341 1247838727\\r\\na=ssrc:2269185341 cname:hkAi0vZ9PEKaBaYa\\r\\na=ssrc:2269185341 msid:D1b23F9B1Edade9F8FBe70BdAC42D94C b5dd3A7EFA7EA9Bd345dD761aacEE54e\\r\\na=ssrc:2269185341 mslabel:D1b23F9B1Edade9F8FBe70BdAC42D94C\\r\\na=ssrc:2269185341 label:b5dd3A7EFA7EA9Bd345dD761aacEE54e\\r\\na=ssrc:1247838727 cname:hkAi0vZ9PEKaBaYa\\r\\na=ssrc:1247838727 msid:D1b23F9B1Edade9F8FBe70BdAC42D94C b5dd3A7EFA7EA9Bd345dD761aacEE54e\\r\\na=ssrc:1247838727 mslabel:D1b23F9B1Edade9F8FBe70BdAC42D94C\\r\\na=ssrc:1247838727 label:b5dd3A7EFA7EA9Bd345dD761aacEE54e\\r\\n\",\"type\":\"offer\"},\"id\":\"BFe6eCDa88fc4caae3CC524E7Dcb2Ec7\"}],\"session\":\"e385320155430877bd1a284a4a714a569ae6f8dac8ba06d5e41c8a7e78817d861791083cdb5219c46861ba945e7aa60632f7596135c1b9c6e9de59852447c511\",\"type\":\"update\",\"version\":2},\"type\":\"msg\"}\r\n2020-03-28 17:32:32.335142+1100 MDLink Health[13454:4768652] DEBUG:Twilio:[Core](0x16c513000): Received message:\r\n{\"type\":\"heartbeat\"}\r\n2020-03-28 17:32:32.736903+1100 MDLink Health[13454:4768652] DEBUG:Twilio:[Core](0x16c513000): Received message:\r\n{\"body\":{\"version\":2,\"type\":\"update\",\"peer_connections\":[{\"id\":\"BFe6eCDa88fc4caae3CC524E7Dcb2Ec7\",\"description\":{\"type\":\"answer\",\"sdp\":\"v=0\\r\\no=- 242963683246742954 4 IN IP4 127.0.0.1\\r\\ns=-\\r\\nt=0 0\\r\\na=msid-semantic: WMS *\\r\\na=group:BUNDLE audio video\\r\\nm=audio 9 UDP/TLS/RTP/SAVPF 111 103 9 0 8 105 13 110 113 126\\r\\nc=IN IP4 0.0.0.0\\r\\na=rtcp:9 IN IP4 0.0.0.0\\r\\na=ice-options:trickle\\r\\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\\r\\na=rtpmap:111 opus/48000/2\\r\\na=rtcp-fb:111 transport-cc\\r\\na=fmtp:111 minptime=10;useinbandfec=1\\r\\na=rtpmap:103 ISAC/16000\\r\\na=rtpmap:9 G722/8000\\r\\na=rtpmap:0 PCMU/8000\\r\\na=rtpmap:8 PCMA/8000\\r\\na=rtpmap:105 CN/16000\\r\\na=rtpmap:13 CN/8000\\r\\na=rtpmap:110 telephone-event/48000\\r\\na=rtpmap:113 telephone-event/16000\\r\\na=rtpmap:126 telephone-event/8000\\r\\na=setup:active\\r\\na=mid:audio\\r\\na=sendrecv\\r\\na=ice-ufrag:pU/V\\r\\na=ice-pwd:O0HPjD82DLf470nldJjY94MW\\r\\na=fingerprint:sha-256 21:6E:79:C9:AC:5E:64:07:86:53:EA:8A:A2:32:CC:1B:65:5A:B1:E5:E5:87:DE:4E:7F:D6:1A:AB:35:3B:36:CA\\r\\na=ssrc:2693948403 msid:- 630c3901-bc45-4c0e-8a8a-9521a1f3c9fb\\r\\na=ssrc:2693948403 cname:iIszjAOXAQC3doHr\\r\\na=rtcp-mux\\r\\nm=video 9 UDP/TLS/RTP/SAVPF 96 97 97 101 125 100 102 127\\r\\nc=IN IP4 0.0.0.0\\r\\na=rtcp:9 IN IP4 0.0.0.0\\r\\na=ice-options:trickle\\r\\na=extmap:2 urn:ietf:params:rtp-hdrext:toffset\\r\\na=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\\r\\na=extmap:4 urn:3gpp:video-orientation\\r\\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\\r\\na=extmap:6 http://www.webrtc.org/experiments/rtp-hdrext/playout-delay\\r\\na=extmap:7 http://www.webrtc.org/experiments/rtp-hdrext/video-content-type\\r\\na=extmap:8 http://www.webrtc.org/experiments/rtp-hdrext/video-timing\\r\\na=rtcp-rsize\\r\\na=rtpmap:96 VP8/90000\\r\\na=rtcp-fb:96 goog-remb\\r\\na=rtcp-fb:96 transport-cc\\r\\na=rtcp-fb:96 ccm fir\\r\\na=rtcp-fb:96 nack\\r\\na=rtcp-fb:96 nack pli\\r\\na=rtpmap:97 rtx/90000\\r\\na=fmtp:97 apt=96\\r\\na=rtpmap:101 rtx/90000\\r\\na=fmtp:101 apt=100\\r\\na=rtpmap:125 rtx/90000\\r\\na=fmtp:125 apt=102\\r\\na=rtpmap:100 H264/90000\\r\\na=rtcp-fb:100 goog-remb\\r\\na=rtcp-fb:100 transport-cc\\r\\na=rtcp-fb:100 ccm fir\\r\\na=rtcp-fb:100 nack\\r\\na=rtcp-fb:100 nack pli\\r\\na=fmtp:100 level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=42e01f\\r\\na=rtpmap:102 red/90000\\r\\na=rtpmap:127 ulpfec/90000\\r\\na=setup:active\\r\\na=mid:video\\r\\na=sendrecv\\r\\na=ice-ufrag:pU/V\\r\\na=ice-pwd:O0HPjD82DLf470nldJjY94MW\\r\\na=fingerprint:sha-256 21:6E:79:C9:AC:5E:64:07:86:53:EA:8A:A2:32:CC:1B:65:5A:B1:E5:E5:87:DE:4E:7F:D6:1A:AB:35:3B:36:CA\\r\\na=ssrc-group:FID 3194551002 3376353173\\r\\na=ssrc:3194551002 msid:- dbb3003f-7ff6-4f00-b98a-b3d120c3da4f\\r\\na=ssrc:3194551002 cname:iIszjAOXAQC3doHr\\r\\na=ssrc:3376353173 msid:- dbb3003f-7ff6-4f00-b98a-b3d120c3da4f\\r\\na=ssrc:3376353173 cname:iIszjAOXAQC3doHr\\r\\na=rtcp-mux\\r\\n\",\"revision\":4}}],\"sid\":\"RM9ae6f8dac8ba06d5e41c8a7e78817d86\",\"name\":\"RM9ae6f8dac8ba06d5e41c8a7e78817d86\",\"participant\":{\"sid\":\"PA1791083cdb5219c46861ba945e7aa606\",\"identity\":\"2F3B1031-F613-4B8F-AD66-8343E4493FDC-1585377147\",\"tracks\":[{\"kind\":\"video\",\"priority\":\"standard\",\"id\":\"b5dd3A7EFA7EA9Bd345dD761aacEE54e\",\"enabled\":true,\"sid\":\"MTf145daf3eecc79a6b71d09beda750708\",\"name\":\"Camera\",\"state\":\"ready\"},{\"kind\":\"audio\",\"priority\":\"standard\",\"id\":\"75d5b2EEebDCD2A2E61e10011Bfe48DE\",\"enabled\":true,\"sid\":\"MTed0c552700d63f57d34254cc22fdd091\",\"name\":\"Microphone\",\"state\":\"ready\"}],\"revision\":1,\"state\":\"connected\"},\"participants\":[{\"sid\":\"PA38fbc20e94f91b7c1fffeb94276ed483\",\"identity\":\"Che Bowen-1585377135\",\"tracks\":[{\"kind\":\"audio\",\"priority\":\"standard\",\"id\":\"630c3901-bc45-4c0e-8a8a-9521a1f3c9fb\",\"enabled\":true,\"sid\":\"MTa3de64d499659de74fbe9416a78c48e6\",\"name\":\"630c3901-bc45-4c0e-8a8a-9521a1f3c9fb\",\"state\":\"ready\"},{\"kind\":\"video\",\"priority\":\"standard\",\"id\":\"dbb3003f-7ff6-4f00-b98a-b3d120c3da4f\",\"enabled\":true,\"sid\":\"MT9b9a9e8a89e2a809860f5fcfcc8fe646\",\"name\":\"dbb3003f-7ff6-4f00-b98a-b3d120c3da4f\",\"state\":\"ready\"}],\"revision\":3,\"state\":\"connected\"}],\"recording\":{\"enabled\":false,\"revision\":1},\"subscribe\":{\"revision\":1,\"rules\":[{\"type\":\"include\",\"all\":true}]},\"subscribed\":{\"revision\":2,\"tracks\":[{\"id\":\"630c3901-bc45-4c0e-8a8a-9521a1f3c9fb\",\"sid\":\"MTa3de64d499659de74fbe9416a78c48e6\"},{\"id\":\"dbb3003f-7ff6-4f00-b98a-b3d120c3da4f\",\"sid\":\"MT9b9a9e8a89e2a809860f5fcfcc8fe646\"}]},\"published\":{\"revision\":1,\"tracks\":[{\"kind\":\"video\",\"priority\":\"standard\",\"id\":\"b5dd3A7EFA7EA9Bd345dD761aacEE54e\",\"enabled\":true,\"sid\":\"MTf145daf3eecc79a6b71d09beda750708\",\"name\":\"Camera\",\"state\":\"ready\"},{\"kind\":\"audio\",\"priority\":\"standard\",\"id\":\"75d5b2EEebDCD2A2E61e10011Bfe48DE\",\"enabled\":true,\"sid\":\"MTed0c552700d63f57d34254cc22fdd091\",\"name\":\"Microphone\",\"state\":\"ready\"}]}},\"type\":\"msg\"}\r\n2020-03-28 17:32:32.739289+1100 MDLink Health[13454:4768464] DEBUG:Twilio:[Core](0x16c13f000): Open -> Updating. Process an event\r\n2020-03-28 17:32:32.739515+1100 MDLink Health[13454:4768464] DEBUG:Twilio:[Core](0x16c13f000): Process remote answer at revision 4.\r\n2020-03-28 17:32:32.739596+1100 MDLink Health[13454:4768464] DEBUG:Twilio:[Core](0x16c13f000): Process remote sdp for: BFe6eCDa88fc4caae3CC524E7Dcb2Ec7 revision is: 4.\r\n2020-03-28 17:32:32.740371+1100 MDLink Health[13454:4768535] DEBUG:Twilio:[Core](MediaFactoryImpl::signaling): Applying local description to: BFe6eCDa88fc4caae3CC524E7Dcb2Ec7 rev: 4\r\n2020-03-28 17:32:32.743658+1100 MDLink Health[13454:4768464] DEBUG:Twilio:[Core](0x16c13f000): onSetSessionLocalDescription: BFe6eCDa88fc4caae3CC524E7Dcb2Ec7\r\n2020-03-28 17:32:32.743823+1100 MDLink Health[13454:4768535] DEBUG:Twilio:[Core](MediaFactoryImpl::signaling): Applying remote description to: BFe6eCDa88fc4caae3CC524E7Dcb2Ec7 rev: 4\r\n2020-03-28 17:32:32.744655+1100 MDLink Health[13454:4768464] DEBUG:Twilio:[Core](0x16c13f000): Done processing onSetSessionLocalDescription: BFe6eCDa88fc4caae3CC524E7Dcb2Ec7\r\n2020-03-28 17:32:32.744929+1100 MDLink Health[13454:4768464] DEBUG:Twilio:[Core](0x16c13f000): onSetSessionRemoteDescription: BFe6eCDa88fc4caae3CC524E7Dcb2Ec7\r\n2020-03-28 17:32:32.745634+1100 MDLink Health[13454:4768464] DEBUG:Twilio:[Core](0x16c13f000): Updating -> Open\r\n2020-03-28 17:32:32.952992+1100 MDLink Health[13454:4768581] DEBUG:Twilio:[Core](0x16c0b3000): Invoking cancelled closure.\r\n2020-03-28 17:32:32.954441+1100 MDLink Health[13454:4768581] DEBUG:Twilio:[Core](0x16c0b3000): Media for PeerConnection BFe6eCDa88fc4caae3CC524E7Dcb2Ec7 transitioned from MediaInactive -> MediaActive\r\n2020-03-28 17:32:32.954566+1100 MDLink Health[13454:4768581] DEBUG:Twilio:[Core](0x16c0b3000): PeerConnection BFe6eCDa88fc4caae3CC524E7Dcb2Ec7 Media activity state transitioned from MediaInactive -> MediaActive\r\n2020-03-28 17:32:32.954643+1100 MDLink Health[13454:4768581] DEBUG:Twilio:[Core](0x16c0b3000): Media Activity state changed to MediaActive\r\n2020-03-28 17:32:32.954708+1100 MDLink Health[13454:4768581] DEBUG:Twilio:[Core](0x16c0b3000): At least one media Track is active in Room.\r\n2020-03-28 17:32:32.967826+1100 MDLink Health[13454:4768699] INFO:Twilio:[Core](0x16ca67000): Connected to sdkgw.us1.twilio.com:443.\r\n2020-03-28 17:32:36.924805+1100 MDLink Health[13454:4768652] DEBUG:Twilio:[Core](0x16c513000): Sending message (21 bytes):\r\n{\"type\":\"heartbeat\"}\r\n2020-03-28 17:32:37.058254+1100 MDLink Health[13454:4768652] DEBUG:Twilio:[Core](0x16c513000): Received message:\r\n{\"type\":\"heartbeat\"}\r\n2020-03-28 17:32:41.437900+1100 MDLink Health[13454:4768652] DEBUG:Twilio:[Core](0x16c513000): Received message:\r\n{\"type\":\"heartbeat\"}\r\n2020-03-28 17:32:41.725110+1100 MDLink Health[13454:4768652] DEBUG:Twilio:[Core](0x16c513000): Sending message (21 bytes):\r\n{\"type\":\"heartbeat\"}\r\n2020-03-28 17:32:45.936146+1100 MDLink Health[13454:4768652] DEBUG:Twilio:[Core](0x16c513000): Received message:\r\n{\"type\":\"heartbeat\"}\r\n2020-03-28 17:32:46.527519+1100 MDLink Health[13454:4768652] DEBUG:Twilio:[Core](0x16c513000): Sending message (21 bytes):\r\n{\"type\":\"heartbeat\"}\r\n2020-03-28 17:32:47.027753+1100 MDLink Health[13454:4768440] DEBUG:Twilio:[Core](0x16bf0f000): ICE connection state transitioned from Connected -> Completed\r\n2020-03-28 17:32:47.027897+1100 MDLink Health[13454:4768440] DEBUG:Twilio:[Core](0x16bf0f000): PeerConnection BFe6eCDa88fc4caae3CC524E7Dcb2Ec7 Ice connection state transitioned from Connected -> Completed\r\n2020-03-28 17:32:47.027975+1100 MDLink Health[13454:4768440] DEBUG:Twilio:[Core](0x16bf0f000): Room Media state changed to Completed", "title": null, "type": "comment" }, { "action": "created", "author": "mrchauhan2802", "comment_id": 605404825, "datetime": 1585377769000, "masked_author": "username_0", "text": "The code is the same as you given in the GitHub", "title": null, "type": "comment" }, { "action": "created", "author": "mrchauhan2802", "comment_id": 605795526, "datetime": 1585547360000, "masked_author": "username_0", "text": "Any Update ?", "title": null, "type": "comment" }, { "action": "created", "author": "ceaglest", "comment_id": 606105772, "datetime": 1585585936000, "masked_author": "username_1", "text": "Are you saying that the iOS 3.2.1 Participant did not see the JS Safari 13.0.4 Participant? I am going to ask the JS team to see if there are any known issues with Safari that might prevent video from being seen.\r\n\r\nBest,\r\nChris", "title": null, "type": "comment" }, { "action": "created", "author": "ceaglest", "comment_id": 606200299, "datetime": 1585596712000, "masked_author": "username_1", "text": "I could not reproduce the issue locally with Safari 13.1 in a Peer-to-Peer Room and I am not sure from your description which side (iOS App or Safari on macOS) is not displaying RemoteVideoTracks.\r\n\r\nIn case the remote video does not render on the iOS app, I will mention that we made some improvements to how the Quickstart example handles rendering when there is more than 1 RemoteVideoTrack. If you based your code off of it, you might not have these changes.\r\n\r\nhttps://github.com/twilio/video-quickstart-ios/pull/442\r\n\r\nIf the problem is on the JS (1.x) side, make sure that you are handling participantConnected and trackAdded events so that the remote video is always being attached to a DOM element.", "title": null, "type": "comment" }, { "action": "created", "author": "mrchauhan2802", "comment_id": 606350571, "datetime": 1585619695000, "masked_author": "username_0", "text": "But it's only happening in iOS \r\nAndroid and web app is fine \r\nBy the way, it's not safari its open in iOS app and its happen when I join from the iOS app when I create it's working perfect", "title": null, "type": "comment" }, { "action": "created", "author": "mrchauhan2802", "comment_id": 606350682, "datetime": 1585619716000, "masked_author": "username_0", "text": "if you want you can look out my code", "title": null, "type": "comment" }, { "action": "created", "author": "ceaglest", "comment_id": 606813762, "datetime": 1585681342000, "masked_author": "username_1", "text": "Android and web app is fine\r\nBy the way, it's not safari its open in iOS app and its happen when I join from the iOS app when I create it's working perfect\r\n\r\nIf the issue only occurs with the iOS SDK, and only when the iOS app joins the Room second then I think you are not handling the already connected RemoteParticipant correctly. In the Room SID that you shared media was flowing in both directions. The Quickstart app handles all of these cases, especially after changes in https://github.com/twilio/video-quickstart-ios/pull/442.\r\n\r\nBest,\r\nChris", "title": null, "type": "comment" }, { "action": "created", "author": "mrchauhan2802", "comment_id": 607018561, "datetime": 1585714121000, "masked_author": "username_0", "text": "so what i do now ?", "title": null, "type": "comment" }, { "action": "created", "author": "ceaglest", "comment_id": 607053964, "datetime": 1585721262000, "masked_author": "username_1", "text": "Please share the code either on this issue or via a [support ticket](https://www.twilio.com/console/support/tickets/create).", "title": null, "type": "comment" }, { "action": "created", "author": "mrchauhan2802", "comment_id": 608997170, "datetime": 1585989946000, "masked_author": "username_0", "text": "deinit {\r\n // We are done with camera\r\n if let camera = self.camera {\r\n camera.stopCapture()\r\n self.camera = nil\r\n }\r\n }\r\n \r\n // MARK: UIViewController\r\n override func viewDidLoad() {\r\n super.viewDidLoad()\r\n \r\n self.title = \"Video Call\"\r\n self.messageLabel.adjustsFontSizeToFitWidth = true;\r\n self.messageLabel.minimumScaleFactor = 0.75;\r\n \r\n roomTextField.text = \"appo_room_\" + id\r\n \r\n if PlatformUtils.isSimulator {\r\n self.previewView.removeFromSuperview()\r\n } else {\r\n // Preview our local camera track in the local video preview view.\r\n self.startPreview()\r\n }\r\n \r\n // Disconnect and mic button will be displayed when the Client is connected to a Room.\r\n self.disconnectButton.isHidden = true\r\n self.micButton.isHidden = true\r\n \r\n self.roomTextField.autocapitalizationType = .none\r\n self.roomTextField.delegate = self\r\n \r\n let tap = UITapGestureRecognizer(target: self, action: #selector(VideoViewVC.dismissKeyboard))\r\n self.view.addGestureRecognizer(tap)\r\n \r\n }\r\n \r\n var prefersHomeIndicatorAutoHidden: Bool {\r\n return self.room != nil\r\n }\r\n \r\n func setupRemoteVideoView() {\r\n // Creating `TVIVideoView` programmatically\r\n self.remoteView = VideoView.init(frame: CGRect.zero, delegate:self)\r\n \r\n self.view.insertSubview(self.remoteView!, at: 0)\r\n \r\n // `TVIVideoView` supports scaleToFill, scaleAspectFill and scaleAspectFit\r\n // scaleAspectFit is the default mode when you create `TVIVideoView` programmatically.\r\n self.remoteView!.contentMode = .scaleAspectFit;\r\n \r\n let centerX = NSLayoutConstraint(item: self.remoteView!,\r\n attribute: NSLayoutAttribute.centerX,\r\n relatedBy: NSLayoutRelation.equal,\r\n toItem: self.view,\r\n attribute: NSLayoutAttribute.centerX,\r\n multiplier: 1,\r\n constant: 0);\r\n self.view.addConstraint(centerX)\r\n let centerY = NSLayoutConstraint(item: self.remoteView!,\r\n attribute: NSLayoutAttribute.centerY,\r\n relatedBy: NSLayoutRelation.equal,\r\n toItem: self.view,\r\n attribute: NSLayoutAttribute.centerY,\r\n multiplier: 1,\r\n constant: 0);\r\n self.view.addConstraint(centerY)\r\n let width = NSLayoutConstraint(item: self.remoteView!,\r\n attribute: NSLayoutAttribute.width,\r\n relatedBy: NSLayoutRelation.equal,\r\n toItem: self.view,\r\n attribute: NSLayoutAttribute.width,\r\n multiplier: 1,\r\n constant: 0);\r\n self.view.addConstraint(width)\r\n let height = NSLayoutConstraint(item: self.remoteView!,\r\n attribute: NSLayoutAttribute.height,\r\n relatedBy: NSLayoutRelation.equal,\r\n toItem: self.view,\r\n attribute: NSLayoutAttribute.height,\r\n multiplier: 1,\r\n constant: 0);\r\n self.view.addConstraint(height)\r\n }\r\n \r\n // MARK: IBActions\r\n @IBAction func backButtonAction(_ sender: Any) {\r\n self.navigationController?.popViewController(animated: true)\r\n self.localAudioTrack = nil\r\n }\r\n \r\n @IBAction func connect(sender: AnyObject) {\r\n connectRoom()\r\n }\r\n \r\n func connectRoom(){\r\n // Configure access token either from server or manually.\r\n // If the default wasn't changed, try fetching from server.\r\n \r\n //if (accessToken == \"\")\r\n identity = UIDevice.current.identifierForVendor!.uuidString\r\n //print(result[0])\r\n let urlString = \"\\(tokenUrl)?identity=\\(identity!)&room_name=\\(\"appo_room_\" + id)\"\r\n \r\n if (accessToken == nil) {\r\n do {\r\n accessToken = try TokenUtilsVideo.fetchToken(url: urlString)\r\n } catch {\r\n let message = \"Failed to fetch access token\"\r\n logMessage(messageText: message)\r\n return\r\n }\r\n }\r\n \r\n // Prepare local media which we will share with Room Participants.\r\n self.prepareLocalMedia()\r\n \r\n // Preparing the connect options with the access token that we fetched (or hardcoded).\r\n let connectOptions = ConnectOptions.init(token: accessToken!) { (builder) in\r\n \r\n // Use the local media that we prepared earlier.\r\n builder.audioTracks = self.localAudioTrack != nil ? [self.localAudioTrack!] : [LocalAudioTrack]()\r\n builder.videoTracks = self.localVideoTrack != nil ? [self.localVideoTrack!] : [LocalVideoTrack]()\r\n \r\n // Use the preferred audio codec\r\n if let preferredAudioCodec = Settings.shared.audioCodec {\r\n builder.preferredAudioCodecs = [preferredAudioCodec]\r\n }\r\n \r\n // Use the preferred video codec\r\n if let preferredVideoCodec = Settings.shared.videoCodec {\r\n builder.preferredVideoCodecs = [preferredVideoCodec]\r\n }\r\n \r\n // Use the preferred encoding parameters\r\n if let encodingParameters = Settings.shared.getEncodingParameters() {\r\n builder.encodingParameters = encodingParameters\r\n }\r\n \r\n // The name of the Room where the Client will attempt to connect to. Please note that if you pass an empty\r\n // Room `name`, the Client will create one for you. You can get the name or sid from any connected Room.\r\n builder.roomName = self.roomTextField.text\r\n }\r\n \r\n // Connect to the Room using the options we provided.\r\n \r\n room = TwilioVideoSDK.connect(options: connectOptions, delegate: self)\r\n// TwilioVideo.setLogLevel(.all)\r\n TwilioVideoSDK.setLogLevel(.debug)\r\n\r\n \r\n \r\n logMessage(messageText: \"Attempting to connect to room \\(String(describing: self.roomTextField.text))\")\r\n \r\n self.showRoomUI(inRoom: true)\r\n self.dismissKeyboard()\r\n }\r\n \r\n @IBAction func disconnect(sender: AnyObject) {\r\n \r\n self.setUIEnabled(false)\r\n \r\n DispatchQueue.main.async {\r\n // Update UI\r\n self.room!.disconnect()\r\n }\r\n \r\n \r\n logMessage(messageText: \"Attempting to disconnect from room \\(room!.name)\")\r\n \r\n \r\n }\r\n \r\n @IBAction func toggleMic(sender: AnyObject) {\r\n if (self.localAudioTrack != nil) {\r\n self.localAudioTrack?.isEnabled = !(self.localAudioTrack?.isEnabled)!\r\n \r\n // Update the button title\r\n if (self.localAudioTrack?.isEnabled == true) {\r\n self.micButton.setTitle(\"Mute\", for: .normal)\r\n self.micButton.isSelected = false\r\n } else {\r\n self.micButton.setTitle(\"Unmute\", for: .normal)\r\n self.micButton.isSelected = true\r\n }\r\n }\r\n }\r\n \r\n // MARK: Private\r\n func startPreview() {\r\n if PlatformUtils.isSimulator {\r\n return\r\n }\r\n \r\n let frontCamera = CameraSource.captureDevice(position: .front)\r\n let backCamera = CameraSource.captureDevice(position: .back)\r\n\r\n if (frontCamera != nil || backCamera != nil) {\r\n\r\n let options = CameraSourceOptions { (builder) in\r\n // To support building with Xcode 10.x.\r\n #if XCODE_1100\r\n if #available(iOS 13.0, *) {\r\n // Track UIWindowScene events for the key window's scene.\r\n // The example app disables multi-window support in the .plist (see UIApplicationSceneManifestKey).\r\n builder.orientationTracker = UserInterfaceTracker(scene: UIApplication.shared.keyWindow!.windowScene!)\r\n }\r\n #endif\r\n }\r\n // Preview our local camera track in the local video preview view.\r\n camera = CameraSource(options: options, delegate: self)\r\n localVideoTrack = LocalVideoTrack(source: camera!, enabled: true, name: \"Camera\")\r\n\r\n // Add renderer to video track for local preview\r\n localVideoTrack!.addRenderer(self.previewView)\r\n logMessage(messageText: \"Video track created\")\r\n\r\n if (frontCamera != nil && backCamera != nil) {\r\n // We will flip camera on tap.\r\n let tap = UITapGestureRecognizer(target: self, action: #selector(VideoViewVC.flipCamera))\r\n self.previewView.addGestureRecognizer(tap)\r\n }\r\n\r\n camera!.startCapture(device: frontCamera != nil ? frontCamera! : backCamera!) { (captureDevice, videoFormat, error) in\r\n if let error = error {\r\n self.logMessage(messageText: \"Capture failed with error.\\ncode = \\((error as NSError).code) error = \\(error.localizedDescription)\")\r\n } else {\r\n self.previewView.shouldMirror = (captureDevice.position == .front)\r\n }\r\n }\r\n }\r\n else {\r\n self.logMessage(messageText:\"No front or back capture device found!\")\r\n }\r\n \r\n //\r\n \r\n // Preview our local camera track in the local video preview view.\r\n \r\n// camera = TVICameraCapturer(source: .frontCamera, delegate: self)\r\n// localVideoTrack = LocalVideoTrack.init(capturer: camera!, enabled: true, constraints: nil, name: \"Camera\")\r\n// if (localVideoTrack == nil) {\r\n// logMessage(messageText: \"Failed to create video track\")\r\n// } else {\r\n// // Add renderer to video track for local preview\r\n// localVideoTrack!.addRenderer(self.previewView)\r\n//\r\n// logMessage(messageText: \"Video track created\")\r\n//\r\n// // We will flip camera on tap.\r\n// let tap = UITapGestureRecognizer(target: self, action: #selector(VideoViewVC.flipCamera))\r\n// self.previewView.addGestureRecognizer(tap)\r\n// }\r\n }\r\n \r\n// @ objc func flipCamera() {\r\n// if (self.camera?.source == .frontCamera) {\r\n// self.camera?.selectSource(.backCameraWide)\r\n// } else {\r\n// self.camera?.selectSource(.frontCamera)\r\n// }\r\n// }\r\n \r\n @objc func flipCamera() {\r\n var newDevice: AVCaptureDevice?\r\n\r\n if let camera = self.camera, let captureDevice = camera.device {\r\n if captureDevice.position == .front {\r\n newDevice = CameraSource.captureDevice(position: .back)\r\n } else {\r\n newDevice = CameraSource.captureDevice(position: .front)\r\n }\r\n\r\n if let newDevice = newDevice {\r\n camera.selectCaptureDevice(newDevice) { (captureDevice, videoFormat, error) in\r\n if let error = error {\r\n self.logMessage(messageText: \"Error selecting capture device.\\ncode = \\((error as NSError).code) error = \\(error.localizedDescription)\")\r\n } else {\r\n self.previewView.shouldMirror = (captureDevice.position == .front)\r\n }\r\n }\r\n }\r\n }\r\n }\r\n \r\n func prepareLocalMedia() {\r\n \r\n // We will share local audio and video when we connect to the Room.\r\n \r\n // Create an audio track.\r\n if (localAudioTrack == nil) {\r\n localAudioTrack = LocalAudioTrack.init(options: nil, enabled: true, name: \"Microphone\")\r\n \r\n if (localAudioTrack == nil) {\r\n logMessage(messageText: \"Failed to create audio track\")\r\n }\r\n }\r\n \r\n // Create a video track which captures from the camera.\r\n if (localVideoTrack == nil) {\r\n self.startPreview()\r\n }\r\n }\r\n \r\n // Update our UI based upon if we are in a Room or not\r\n func showRoomUI(inRoom: Bool) {\r\n self.connectButton.isHidden = inRoom\r\n self.roomTextField.isHidden = inRoom\r\n self.roomLine.isHidden = inRoom\r\n self.roomLabel.isHidden = inRoom\r\n self.micButton.isHidden = !inRoom\r\n self.disconnectButton.isHidden = !inRoom\r\n self.navigationController?.setNavigationBarHidden(inRoom, animated: true)\r\n UIApplication.shared.isIdleTimerDisabled = inRoom\r\n\r\n // Show / hide the automatic home indicator on modern iPhones.\r\n self.setNeedsUpdateOfHomeIndicatorAutoHidden()\r\n\r\n }\r\n \r\n @objc func timerRunning() {\r\n \r\n nameLabel.isHidden = false\r\n timeLabel.isHidden = false\r\n timeProgress.isHidden = false\r\n// backButton.isHidden = false\r\n \r\n timeRemaining -= 1\r\n let completionPercentage = Int(((Float(totalTime) - Float(timeRemaining))/Float(totalTime)) * 100)\r\n timeProgress.setProgress(Float(timeRemaining)/Float(totalTime), animated: false)\r\n //nameLabel.text = \"\\(completionPercentage)% done\"\r\n let minutesLeft = Int(timeRemaining) / 60 % 60\r\n let secondsLeft = Int(timeRemaining) % 60\r\n timeLabel.text = \"\\(minutesLeft):\\(secondsLeft)\"\r\n// manageTimerEnd(seconds: timeRemaining)\r\n isOnBreak = true\r\n }\r\n \r\n @objc func dismissKeyboard() {\r\n if (self.roomTextField.isFirstResponder) {\r\n self.roomTextField.resignFirstResponder()\r\n }\r\n }\r\n \r\n func cleanupRemoteParticipant() {\r\n if self.remoteParticipant != nil {\r\n self.remoteView?.removeFromSuperview()\r\n self.remoteView = nil\r\n self.remoteParticipant = nil\r\n }\r\n }\r\n \r\n func renderRemoteParticipant(participant : RemoteParticipant) -> Bool {\r\n // This example renders the first subscribed RemoteVideoTrack from the RemoteParticipant.\r\n let videoPublications = participant.remoteVideoTracks\r\n for publication in videoPublications {\r\n if let subscribedVideoTrack = publication.remoteTrack,\r\n publication.isTrackSubscribed {\r\n setupRemoteVideoView()\r\n subscribedVideoTrack.addRenderer(self.remoteView!)\r\n self.remoteParticipant = participant\r\n return true\r\n }\r\n }\r\n return false\r\n }\r\n \r\n func renderRemoteParticipants(participants : Array<RemoteParticipant>) {\r\n for participant in participants {\r\n // Find the first renderable track.\r\n if participant.remoteVideoTracks.count > 0,\r\n renderRemoteParticipant(participant: participant) {\r\n break\r\n }\r\n }\r\n }\r\n \r\n func logMessage(messageText: String) {\r\n messageLabel.text = messageText\r\n }\r\n \r\n // Progress View\r\n \r\n private func setUIEnabled(_ enabled: Bool) {\r\n enabled ? SVProgressHUD.dismiss() : SVProgressHUD.show()\r\n }\r\n}\r\n\r\n// MARK: UITextFieldDelegate\r\nextension VideoViewVC : UITextFieldDelegate {\r\n func textFieldShouldReturn(_ textField: UITextField) -> Bool {\r\n self.connect(sender: textField)\r\n return true\r\n }\r\n}\r\n\r\n// MARK: TVIRoomDelegate\r\nextension VideoViewVC : RoomDelegate {\r\n \r\n func didConnect(to room: Room) {\r\n \r\n // At the moment, this example only supports rendering one Participant at a time.\r\n \r\n logMessage(messageText: \"Connected to room \\(room.name) as \\(String(describing: room.localParticipant?.identity))\")\r\n \r\n for remoteParticipant in room.remoteParticipants {\r\n remoteParticipant.delegate = self\r\n\r\n }\r\n }\r\n \r\n func roomDidDisconnect(room: Room, error: Error?) {\r\n logMessage(messageText: \"Disconncted from room \\(room.name), error = \\(String(describing: error))\")\r\n \r\n self.cleanupRemoteParticipant()\r\n self.room = nil\r\n \r\n self.showRoomUI(inRoom: false)\r\n }\r\n \r\n func roomDidFailToConnect(room: Room, error: Error) {\r\n logMessage(messageText: \"Failed to connect to room with error\")\r\n self.room = nil\r\n \r\n self.showRoomUI(inRoom: false)\r\n }\r\n \r\n func participantDidConnect(room: Room, participant: RemoteParticipant) {\r\n// if (self.remoteParticipant == nil) {\r\n// self.remoteParticipant = participant\r\n// self.remoteParticipant?.delegate = self\r\n// }\r\n \r\n// startPreview()\r\n \r\n participant.delegate = self\r\n\r\n logMessage(messageText: \"Participant \\(participant.identity) connected with \\(participant.remoteAudioTracks.count) audio and \\(participant.remoteVideoTracks.count) video tracks\")\r\n \r\n timeProgress.isHidden = false\r\n //2\r\n if !timerIsOn {\r\n timer = Timer.scheduledTimer(timeInterval: 1.0, target: self, selector: #selector(timerRunning), userInfo: nil, repeats: true)\r\n //3\r\n timerIsOn = true\r\n }\r\n }\r\n \r\n func participantDidDisconnect(room: Room, participant: RemoteParticipant) {\r\n// if (self.remoteParticipant == participant) {\r\n// cleanupRemoteParticipant()\r\n// }\r\n logMessage(messageText: \"Room \\(room.name), Participant \\(participant.identity) disconnected\")\r\n }\r\n}\r\n\r\n// MARK: TVIRemoteParticipantDelegate\r\nextension VideoViewVC : RemoteParticipantDelegate {\r\n \r\n func remoteParticipant(_ participant: RemoteParticipant,\r\n publishedVideoTrack publication: RemoteVideoTrackPublication) {\r\n \r\n // Remote Participant has offered to share the video Track.\r\n \r\n logMessage(messageText: \"Participant \\(participant.identity) published \\(publication.trackName) video track\")\r\n }\r\n \r\n func remoteParticipant(_ participant: RemoteParticipant,\r\n unpublishedVideoTrack publication: RemoteVideoTrackPublication) {\r\n \r\n // Remote Participant has stopped sharing the video Track.\r\n \r\n logMessage(messageText: \"Participant \\(participant.identity) unpublished \\(publication.trackName) video track\")\r\n }\r\n \r\n func remoteParticipant(_ participant: RemoteParticipant,\r\n publishedAudioTrack publication: RemoteAudioTrackPublication) {\r\n \r\n // Remote Participant has offered to share the audio Track.\r\n \r\n logMessage(messageText: \"Participant \\(participant.identity) published \\(publication.trackName) audio track\")\r\n }\r\n \r\n func remoteParticipant(_ participant: RemoteParticipant,\r\n unpublishedAudioTrack publication: RemoteAudioTrackPublication) {\r\n \r\n // Remote Participant has stopped sharing the audio Track.\r\n \r\n logMessage(messageText: \"Participant \\(participant.identity) unpublished \\(publication.trackName) audio track\")\r\n }\r\n \r\n func didSubscribeToVideoTrack(videoTrack: RemoteVideoTrack, publication: RemoteVideoTrackPublication, participant: RemoteParticipant) {\r\n // The LocalParticipant is subscribed to the RemoteParticipant's video Track. Frames will begin to arrive now.\r\n\r\n logMessage(messageText: \"Subscribed to \\(publication.trackName) video track for Participant \\(participant.identity)\")\r\n\r\n if (self.remoteParticipant == nil) {\r\n _ = renderRemoteParticipant(participant: participant)\r\n }\r\n }\r\n \r\n func didUnsubscribeFromVideoTrack(videoTrack: RemoteVideoTrack, publication: RemoteVideoTrackPublication, participant: RemoteParticipant) {\r\n // We are unsubscribed from the remote Participant's video Track. We will no longer receive the\r\n // remote Participant's video.\r\n \r\n logMessage(messageText: \"Unsubscribed from \\(publication.trackName) video track for Participant \\(participant.identity)\")\r\n\r\n if self.remoteParticipant == participant {\r\n cleanupRemoteParticipant()\r\n\r\n // Find another Participant video to render, if possible.\r\n if var remainingParticipants = room?.remoteParticipants,\r\n let index = remainingParticipants.index(of: participant) {\r\n remainingParticipants.remove(at: index)\r\n renderRemoteParticipants(participants: remainingParticipants)\r\n }\r\n }\r\n }\r\n \r\n func didSubscribeToAudioTrack(audioTrack: RemoteAudioTrack, publication: RemoteAudioTrackPublication, participant: RemoteParticipant) {\r\n // We are subscribed to the remote Participant's audio Track. We will start receiving the\r\n // remote Participant's audio now.\r\n \r\n logMessage(messageText: \"Subscribed to \\(publication.trackName) audio track for Participant \\(participant.identity)\")\r\n }\r\n \r\n func didUnsubscribeFromAudioTrack(audioTrack: RemoteAudioTrack, publication: RemoteAudioTrackPublication, participant: RemoteParticipant) {\r\n // We are unsubscribed from the remote Participant's audio Track. We will no longer receive the\r\n // remote Participant's audio.\r\n \r\n logMessage(messageText: \"Unsubscribed from \\(publication.trackName) audio track for Participant \\(participant.identity)\")\r\n }\r\n \r\n func remoteParticipant(_ participant: RemoteParticipant,\r\n enabledVideoTrack publication: RemoteVideoTrackPublication) {\r\n logMessage(messageText: \"Participant \\(participant.identity) enabled \\(publication.trackName) video track\")\r\n }\r\n \r\n func remoteParticipant(_ participant: RemoteParticipant,\r\n disabledVideoTrack publication: RemoteVideoTrackPublication) {\r\n logMessage(messageText: \"Participant \\(participant.identity) disabled \\(publication.trackName) video track\")\r\n }\r\n \r\n func remoteParticipant(_ participant: RemoteParticipant,\r\n enabledAudioTrack publication: RemoteAudioTrackPublication) {\r\n logMessage(messageText: \"Participant \\(participant.identity) enabled \\(publication.trackName) audio track\")\r\n }\r\n \r\n func remoteParticipant(_ participant: RemoteParticipant,\r\n disabledAudioTrack publication: RemoteAudioTrackPublication) {\r\n logMessage(messageText: \"Participant \\(participant.identity) disabled \\(publication.trackName) audio track\")\r\n }\r\n \r\n func failedToSubscribe(toAudioTrack publication: RemoteAudioTrackPublication,\r\n error: Error,\r\n for participant: RemoteParticipant) {\r\n logMessage(messageText: \"FailedToSubscribe \\(publication.trackName) audio track, error = \\(String(describing: error))\")\r\n }\r\n \r\n func failedToSubscribe(toVideoTrack publication: RemoteVideoTrackPublication,\r\n error: Error,\r\n for participant: RemoteParticipant) {\r\n logMessage(messageText: \"FailedToSubscribe \\(publication.trackName) video track, error = \\(String(describing: error))\")\r\n }\r\n}\r\n\r\n// MARK: TVIVideoViewDelegate\r\nextension VideoViewVC : VideoViewDelegate {\r\n func videoViewDimensionsDidChange(view: VideoView, dimensions: CMVideoDimensions) {\r\n self.view.setNeedsLayout()\r\n }\r\n}\r\n\r\n// MARK: TVICameraCapturerDelegate\r\nextension VideoViewVC : CameraSourceDelegate {\r\n \r\n// func cameraCapturer(_ capturer: CameraSource, didStartWith source: CameraSource ) {\r\n// self.previewView.shouldMirror = (capturer.position == .front)\r\n// }\r\n \r\n func cameraSourceDidFail(source: CameraSource, error: Error) {\r\n logMessage(messageText: \"Camera source failed with error: \\(error.localizedDescription)\")\r\n }\r\n}", "title": null, "type": "comment" }, { "action": "created", "author": "mrchauhan2802", "comment_id": 608997195, "datetime": 1585989959000, "masked_author": "username_0", "text": "Here is my code please help", "title": null, "type": "comment" }, { "action": "created", "author": "mrchauhan2802", "comment_id": 609634524, "datetime": 1586159598000, "masked_author": "username_0", "text": "0\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"}],\"complete\":false,\"revision\":7,\"ufrag\":\"h6ZC\"},\"id\":\"F7ceDcFC5b823b7AbB1AfE9f9be1F8C8\"}],\"session\":\"e385320155430877bd1a284a4a714a5625e12589eb0a7ee217370d1ce7e6126291096240b9eda60054f5fa77fec9231ecaae6d148bac479243210976e7c4ab02\",\"type\":\"update\",\"version\":2},\"type\":\"msg\"}\r\n2020-04-06 17:47:43.353016+1000 MDLink Health[23624:7949148] DEBUG:Twilio:[Core](0x16e203000): ICE connection state transitioned from Checking -> Connected\r\n2020-04-06 17:47:43.353357+1000 MDLink Health[23624:7949148] DEBUG:Twilio:[Core](0x16e203000): PeerConnection F7ceDcFC5b823b7AbB1AfE9f9be1F8C8 Ice connection state transitioned from Checking -> Connected\r\n2020-04-06 17:47:43.353574+1000 MDLink Health[23624:7949148] DEBUG:Twilio:[Core](0x16e203000): Room Media state changed to Connected\r\n2020-04-06 17:47:43.353732+1000 MDLink Health[23624:7948702] INFO:Twilio:[Core](0x1032f9840): Subscribed to Participant's Che Bowen-1586159199 video track with sid MT9da79abc9c96dfbc2a12c03d342acc3e\r\n2020-04-06 17:48:06.055998+1000 MDLink Health[23624:7949148] INFO:Twilio:[Core](0x16e203000): Media is connected\r\n2020-04-06 17:48:06.056902+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:06.057051+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:06.057188+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:06.057339+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:06.057428+1000 MDLink Health[23624:7948702] DEBUG:Twilio:[Platform](0x1032f9840): Did move to window with size: {414, 896}.\r\nMetal content scale factor is now: 2.000\r\n2020-04-06 17:48:06.057499+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.248747+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.249086+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.249232+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.249363+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.249492+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.249644+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.249760+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.255380+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.255504+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.255590+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.255675+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.255758+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.255839+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.259535+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.259905+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.260070+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.260384+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.260518+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.260687+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.261762+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.261925+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.262000+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.262085+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.262306+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.262465+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.262572+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.262714+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.262891+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.262955+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.263115+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.263270+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.263575+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.263836+1000 MDLink Health[23624:7949148] DEBUG:Twilio:[Core](0x16e203000): ICE connection state transitioned from Connected -> Completed\r\n2020-04-06 17:48:08.254079+1000 MDLink Health[23624:7949407] DEBUG:Twilio:[Core](0x16dda3000): Received message:\r\n{\"type\":\"heartbeat\"}\r\n2020-04-06 17:48:08.254407+1000 MDLink Health[23624:7949715] INFO:Twilio:[Core](0x16e987000): Connecting to sdkgw.us1.twilio.com:443.\r\n2020-04-06 17:48:08.263868+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.264143+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.264326+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.264549+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.264589+1000 MDLink Health[23624:7949148] DEBUG:Twilio:[Core](0x16e203000): PeerConnection F7ceDcFC5b823b7AbB1AfE9f9be1F8C8 Ice connection state transitioned from Connected -> Completed\r\n2020-04-06 17:48:08.264773+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.264810+1000 MDLink Health[23624:7949148] DEBUG:Twilio:[Core](0x16e203000): Room Media state changed to Completed\r\n2020-04-06 17:48:08.264897+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.265071+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.265196+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.265502+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.265632+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.265730+1000 MDLink Health[23624:7949148] DEBUG:Twilio:[Core](0x16e203000): onSetSessionRemoteDescription: F7ceDcFC5b823b7AbB1AfE9f9be1F8C8\r\n2020-04-06 17:48:08.265861+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.266038+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.265986+1000 MDLink Health[23624:7949407] DEBUG:Twilio:[Core](0x16dda3000): Sending message (1926 bytes):\r\n{\"body\":{\"participant\":{\"revision\":1,\"tracks\":[{\"enabled\":true,\"id\":\"4dD2FfD86762c28Dae8F15bcD5F3B1D6\",\"kind\":\"audio\",\"name\":\"Microphone\",\"priority\":\"standard\"},{\"enabled\":true,\"id\":\"eE6bFA1f69CB86fDF6b57753A6786dDE\",\"kind\":\"video\",\"name\":\"Camera\",\"priority\":\"standard\"}]},\"peer_connections\":[{\"ice\":{\"candidates\":[{\"candidate\":\"candidate:1912282794 1 udp 2122260223 192.168.1.145 54555 typ host generation 0 ufrag h6ZC network-id 1 network-cost 10\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"},{\"candidate\":\"candidate:229563698 1 udp 2122197247 2405:6e00:230e:263a:9d8d:2020-04-06 17:48:08.266123+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.266472+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.266534+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.266609+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.266651+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.266702+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\ndeba:b8ec:9e7b 54556 typ host generation 0 ufrag h6ZC network-id 7 network-cost 900\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"},{\"candidate\":\"candidate:1358307311 1 udp 2122129151 100.102.216.80 55427 typ host generation 0 ufrag h6ZC network-id 6 network-cost 900\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"},{\"candidate\":\"candidate:3050894565 1 udp 2122066175 2405:6e00:230e:263a:f1:bf51:5a31:9540 55428 typ host generation 0 ufrag h6ZC network-id 2 network-cost 10\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"},{\"candidate\":\"candidate:3050894565 1 udp 2122000639 2405:6e00:230e:263a:f1:bf51:5a31:9540 55429 typ host generation 0 ufrag h6ZC network-id 3 network-cost 10\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"},{\"candidate\":\"candidate:4038268958 1 udp 1686052607 194.193.132.64 54555 typ srflx raddr 192.168.1.145 rport 54555 generation 0 ufrag h6ZC network-id 1 network-cost 10\",\"sd2020-04-06 17:48:08.266751+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\npMLineIndex\":0,\"sdpMid\":\"audio\"},{\"candidate\":\"candidate:2625314940 1 udp 1685921535 120.21.5.51 2947 typ srflx raddr 100.102.216.80 rport 55427 generation 0 ufrag h6ZC network-id 6 network-cost 900\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"}],\"complete\":true,\"revision\":8,\"ufrag\":\"h6ZC\"},\"id\":\"F7ceDcFC5b823b7AbB1AfE9f9be1F8C8\"}],\"session\":\"e385320155430877bd1a284a4a714a5625e12589eb0a7ee217370d1ce7e6126291096240b9eda60054f5fa77fec9231ecaae6d148bac479243210976e7c4ab02\",\"type\":\"update\",\"version\":2},\"type\":\"msg\"}\r\n2020-04-06 17:48:08.267266+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.267328+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.267387+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.267430+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.267478+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.267534+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:482020-04-06 17:48:08.266912+1000 MDLink Health[23624:7949139] DEBUG:Twilio:[Core](MediaFactoryImpl::signaling): Create local answer: F7ceDcFC5b823b7AbB1AfE9f9be1F8C8\r\n2020-04-06 17:48:08.268406+1000 MDLink Health[23624:7949407] DEBUG:Twilio:[Core](0x16dda3000): Received message:\r\n{\"type\":\"heartbeat\"}\r\n:08.267571+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.268845+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.268965+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.269061+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.269154+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.269262+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.269359+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.269451+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.269544+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.269670+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.269765+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.269860+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.269956+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.270046+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.270078+10002020-04-06 17:48:08.270144+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.270274+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.270341+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.270388+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.270437+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.270485+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.270538+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.270581+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.270619+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.270962+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.271039+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.271094+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.271157+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.271200+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.271254+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.271311+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.271526+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.271709+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.271813+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.271830+1000 MDLink Health[23624:7949148] DEBUG:Twilio:[Core](0x16e203000): ICE connection state transitioned from Completed -> Connected\r\n2020-04-06 17:48:08.271878+1000 MDLink Health[23624:7949148] DEBUG:Twilio:[Core](0x16e203000): PeerConnection F7ceDcFC5b823b7AbB1AfE9f9be1F8C8 Ice connection state transitioned from Completed -> Connected\r\n MDLink Health[23624:7949407] DEBUG:Twilio:[Core](0x16dda3000): Sending message (21 bytes):\r\n{\"type\":\"heartbeat\"}\r\n2020-04-06 17:48:08.271914+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.270128+1000 MDLink Health[23624:7949139] DEBUG:Twilio:[Core](MediaFactoryImpl::signaling): Including track id: eE6bFA1f69CB86fDF6b57753A6786dDE for simulcast.\r\n2020-04-06 17:48:08.272246+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.272334+1000 MDLink Health[23624:7949148] DEBUG:Twilio:[Core](0x16e203000): Room Media state changed to Connected\r\n2020-04-06 17:48:08.272384+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.272526+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.272536+1000 MDLink Health[23624:7949407] DEBUG:Twilio:[Core](0x16dda3000): Closing the WebSocket by request.\r\n2020-04-06 17:48:08.272661+1000 MDLink Health[23624:7949148] INFO:Twilio:[Core](0x16e203000): Media is connected\r\n2020-04-06 17:48:08.272702+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.274601+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.274898+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.275063+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.275171+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.275265+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.275457+1000 MDLink Health[23624:7949469] DEBUG:Twilio:[Platform](0x16e28f000): Capture video output dropped a sample buffer. Reason = OutOfBuffers\r\n2020-04-06 17:48:08.275553+1000 MDLink Health[23624:7949407] DEBUG:Twilio:[Core](0x16dda3000): Queuing a close request without done.\r\n2020-04-06 17:48:08.275793+1000 MDLink Health[23624:7949148] DEBUG:Twilio:[Core](0x16e203000): onCreateSessionLocalDescription F7ceDcFC5b823b7AbB1AfE9f9be1F8C8\r\n2020-04-06 17:48:08.276915+1000 MDLink Health[23624:7949407] DEBUG:Twilio:[Core](0x16dda3000): Receive completed, the Client closed the WebSocket.\r\n2020-04-06 17:48:08.277088+1000 MDLink Health[23624:7949407] DEBUG:Twilio:[Core](0x16dda3000): The transport was closed with error 89.\r\n2020-04-06 17:48:08.277155+1000 MDLink Health[23624:7949407] DEBUG:Twilio:[Core](0x16dda3000): Closing the connection due to a transport error.\r\n2020-04-06 17:48:08.278272+1000 MDLink Health[23624:7949148] DEBUG:Twilio:[Core](0x16e203000): SDP Utils: New SSRC 3418615934 replaced with Old SSRC 3418615934\r\n2020-04-06 17:48:08.278560+1000 MDLink Health[23624:7949148] DEBUG:Twilio:[Core](0x16e203000): SDP Utils: New SSRC 196486158 replaced with Old SSRC 196486158\r\n2020-04-06 17:48:08.278707+1000 MDLink Health[23624:7949148] DEBUG:Twilio:[Core](0x16e203000): SDP Utils: New SSRC 3262544055 replaced with Old SSRC 3262544055\r\n2020-04-06 17:48:08.278804+1000 MDLink Health[23624:7949148] DEBUG:Twilio:[Core](0x16e203000): SDP Utils: New SSRC group 196486158 3262544055 --- Original SSRC group 196486158 3262544055\r\n2020-04-06 17:48:08.279147+1000 MDLink Health[23624:7949407] DEBUG:Twilio:[Core](0x16dda3000): Sending message (15 bytes):\r\n{\"type\":\"bye\"}\r\n2020-04-06 17:48:08.279928+1000 MDLink Health[23624:7949407] INFO:Twilio:[Core](0x16dda3000): Connection 81834a17-50a0-471d-83ca-6d63b316d341 was closed with reason 2.\r\n2020-04-06 17:48:08.279999+1000 MDLink Health[23624:7949407] DEBUG:Twilio:[Core](0x16dda3000): The final message send is complete.\r\n2020-04-06 17:48:08.280392+1000 MDLink Health[23624:7949139] DEBUG:Twilio:[Core](MediaFactoryImpl::signaling): Applying local description to: F7ceDcFC5b823b7AbB1AfE9f9be1F8C8 rev: 2\r\n2020-04-06 17:48:08.282996+1000 MDLink Health[23624:7949148] INFO:Twilio:[Core](0x16e203000): Local answer is ready for F7ceDcFC5b823b7AbB1AfE9f9be1F8C8.\r\n2020-04-06 17:48:08.283141+1000 MDLink Health[23624:7949148] DEBUG:Twilio:[Core](0x16e203000): Queue Description: 2 for PeerConnection: F7ceDcFC5b823b7AbB1AfE9f9be1F8C8.\r\n2020-04-06 17:48:08.283259+1000 MDLink Health[23624:7949148] DEBUG:Twilio:[Core](0x16e203000): Handling connection 81834a17-50a0-471d-83ca-6d63b316d341 close reason 2.\r\n2020-04-06 17:48:08.283378+1000 MDLink Health[23624:7949148] DEBUG:Twilio:[Core](0x16e203000): Starting session expiry timer.\r\n2020-04-06 17:48:08.283475+1000 MDLink Health[23624:7949148] DEBUG:Twilio:[Core](0x16e203000): The network is reachable, retrying connection in 110 ms.\r\n2020-04-06 17:48:08.283525+1000 MDLink Health[23624:7949148] DEBUG:Twilio:[Core](0x16e203000): RoomSignalingImpl::onConnectionTerminated\r\n2020-04-06 17:48:08.283579+1000 MDLink Health[23624:7949148] DEBUG:Twilio:[Core](0x16e203000): RoomSignalingImpl: completed insights_publisher_->stop()\r\n2020-04-06 17:48:08.283628+1000 MDLink Health[23624:7949148] DEBUG:Twilio:[Core](0x16e203000): RoomSignalingImpl: State transition successful: kConnected -> kSyncing\r\n2020-04-06 17:48:08.283687+1000 MDLink Health[23624:7948702] INFO:Twilio:[Core](0x1032f9840): Reconnecting to Room: appo_room_5084 caused by failure: Signaling connection disconnected\r\n2020-04-06 17:48:08.283793+1000 MDLink Health[23624:7949148] DEBUG:Twilio:[Core](0x16e203000): onSetSessionLocalDescription: F7ceDcFC5b823b7AbB1AfE9f9be1F8C8\r\n2020-04-06 17:48:08.283842+1000 MDLink Health[23624:7949148] DEBUG:Twilio:[Core](0x16e203000): Updating -> Open\r\n2020-04-06 17:48:08.283886+1000 MDLink Health[23624:7949148] DEBUG:Twilio:[Core](0x16e203000): Done processing onSetSessionLocalDescription: F7ceDcFC5b823b7AbB1AfE9f9be1F8C8\r\n2020-04-06 17:48:08.402627+1000 MDLink Health[23624:7949148] DEBUG:Twilio:[Core](0x16e203000): onSignalingReconnecting\r\n2020-04-06 17:48:08.402866+1000 MDLink Health[23624:7949148] DEBUG:Twilio:[Core](0x16e203000): RoomSignalingImpl::doReconnect\r\n2020-04-06 17:48:08.402981+1000 MDLink Health[23624:7949148] DEBUG:Twilio:[Core](0x16e203000): RoomSignalingImpl: completed insights_publisher_->stop()\r\n2020-04-06 17:48:08.403137+1000 MDLink Health[23624:7949148] DEBUG:Twilio:[Core](0x16e203000): Opening connection 0122c125-b1e0-4773-848f-953006b5ad52 to wss://global.vss.twilio.com/signaling.\r\n2020-04-06 17:48:08.403980+1000 MDLink Health[23624:7949407] DEBUG:Twilio:[Core](0x16dda3000): Initialize connection 0122c125-b1e0-4773-848f-953006b5ad52.\r\n2020-04-06 17:48:08.406937+1000 MDLink Health[23624:7949407] INFO:Twilio:[Core](0x16dda3000): Will connect to host global.vss.twilio.com.\r\n2020-04-06 17:48:08.409379+1000 MDLink Health[23624:7949407] DEBUG:Twilio:[Core](0x16dda3000): Resolved host global.vss.twilio.com.\r\n2020-04-06 17:48:08.409714+1000 MDLink Health[23624:7949407] DEBUG:Twilio:[Core](0x16dda3000): Connecting to 3.106.99.191...\r\n2020-04-06 17:48:08.447062+1000 MDLink Health[23624:7949407] DEBUG:Twilio:[Core](0x16dda3000): Connected to 3.106.99.191.\r\n2020-04-06 17:48:08.447448+1000 MDLink Health[23624:7949407] DEBUG:Twilio:[Core](0x16dda3000): Established a TCP connection with 3.106.99.191.\r\n2020-04-06 17:48:08.517990+1000 MDLink Health[23624:7949407] DEBUG:Twilio:[Core](0x16dda3000): Completed a TLS handshake with 3.106.99.191.\r\n2020-04-06 17:48:08.518290+1000 MDLink Health[23624:7949407] DEBUG:Twilio:[Core](0x16dda3000): Sending WebSocket handshake:\r\nGET /signaling HTTP/1.1\r\n\r\nHost: global.vss.twilio.com\r\n\r\nUpgrade: websocket\r\n\r\nConnection: upgrade\r\n\r\nSec-WebSocket-Key: lvjoc82HEvknrfBcDKog9g==\r\n\r\nSec-WebSocket-Version: 13\r\n\r\nSec-WebSocket-Extensions: permessage-deflate; server_max_window_bits=15; client_max_window_bits=15\r\n\r\nUser-Agent: Boost.Beast/277 twilio-video-cpp/5.1.1\r\n2020-04-06 17:48:08.555804+1000 MDLink Health[23624:7949407] DEBUG:Twilio:[Core](0x16dda3000): Received WebSocket response:\r\nHTTP/1.1 101 Switching Protocols\r\n\r\nDate: Mon, 06 Apr 2020 07:48:08 GMT\r\n\r\nConnection: upgrade\r\n\r\nSec-WebSocket-Accept: Oucx87/VixEBoUMmdSQMBJAR/xE=\r\n\r\nSec-WebSocket-Extensions: permessage-deflate\r\n\r\nUpgrade: WebSocket\r\n2020-04-06 17:48:08.556168+1000 MDLink Health[23624:7949407] INFO:Twilio:[Core](0x16dda3000): Completed WebSocket handshake with 3.106.99.191.\r\n2020-04-06 17:48:08.556649+1000 MDLink Health[23624:7948949] DEBUG:Twilio:[Core](0x16dae7000): AppleReachability::AppleReachability()\r\n2020-04-06 17:48:08.556817+1000 MDLink Health[23624:7948949] DEBUG:Twilio:[Core](0x16dae7000): Creating zeroAddrReachability\r\n2020-04-06 17:48:08.557860+1000 MDLink Health[23624:7948949] DEBUG:Twilio:[Core](0x16dae7000): AppleReachability::~AppleReachability()\r\n2020-04-06 17:48:08.557885+1000 MDLink Health[23624:7949407] DEBUG:Twilio:[Core](0x16dda3000): Sending message (6675 bytes):\r\n{\"body\":{\"participant\":{\"revision\":1,\"tracks\":[{\"enabled\":true,\"id\":\"4dD2FfD86762c28Dae8F15bcD5F3B1D6\",\"kind\":\"audio\",\"name\":\"Microphone\",\"priority\":\"standard\"},{\"enabled\":true,\"id\":\"eE6bFA1f69CB86fDF6b57753A6786dDE\",\"kind\":\"video\",\"name\":\"Camera\",\"priority\":\"standard\"}]},\"peer_connections\":[{\"description\":{\"revision\":2,\"sdp\":\"v=0\\r\\no=- 2337492009394132343 3 IN IP4 127.0.0.1\\r\\ns=-\\r\\nt=0 0\\r\\na=group:BUNDLE audio video\\r\\na=msid-semantic: WMS C63f5fEFc1f54e9C0D462b96E745903D\\r\\nm=audio 54555 UDP/TLS/RTP/SAVPF 111 103 9 0 8 105 13 110 113 126\\r\\nc=IN IP4 194.193.132.64\\r\\na=rtcp:9 IN IP4 0.0.0.0\\r\\na=candidate:1912282794 1 udp 2122260223 192.168.1.145 54555 typ host generation 0 network-id 1 network-cost 10\\r\\na=candidate:229563698 1 udp 2122197247 2405:6e00:230e:263a:9d8d:deba:b8ec:9e7b 54556 typ host generation 0 network-id 7 network-cost 900\\r\\na=candidate:1358307311 1 udp 2122129151 100.102.216.80 55427 typ host generation 0 network-id 6 network-cost 900\\r\\na=candidate:3050894565 1 udp 2122066175 2405:6e00:230e:263a:f1:bf51:5a31:9540 55428 typ host generation 0 network-id 2 network-cost 10\\r\\na=candidate:3050894565 1 udp 2122000639 2405:6e00:230e:263a:f1:bf51:5a31:9540 55429 typ host generation 0 network-id 3 network-cost 10\\r\\na=candidate:4038268958 1 udp 1686052607 194.193.132.64 54555 typ srflx raddr 192.168.1.145 rport 54555 generation 0 network-id 1 network-cost 10\\r\\na=candidate:2625314940 1 udp 1685921535 120.21.5.51 2947 typ srflx raddr 100.102.216.80 rport 55427 generation 0 network-id 6 network-cost 900\\r\\na=ice-ufrag:h6ZC\\r\\na=ice-pwd:z39K3B47cPYqzWXZj4ma97tZ\\r\\na=ice-options:trickle\\r\\na=fingerprint:sha-256 2C:65:9E:AF:B7:99:BB:2B:06:A6:8B:43:A0:B7:E8:2A:37:B1:FF:6D:7A:58:43:0D:CA:FD:31:75:E4:64:F6:D6\\r\\na=setup:passive\\r\\na=mid:audio\\r\\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\\r\\na=sendrecv\\r\\na=rtcp-mux\\r\\na=rtpmap:111 opus/48000/2\\r\\na=rtcp-fb:111 transport-cc\\r\\na=fmtp:111 minptime=10;useinbandfec=1\\r\\na=rtpmap:103 ISAC/16000\\r\\na=rtpmap:9 G722/8000\\r\\na=rtpmap:0 PCMU/8000\\r\\na=rtpmap:8 PCMA/8000\\r\\na=rtpmap:105 CN/16000\\r\\na=rtpmap:13 CN/8000\\r\\na=rtpmap:110 telephone-event/48000\\r\\na=rtpmap:113 telephone-event/16000\\r\\na=rtpmap:126 telephone-event/8000\\r\\na=ssrc:3418615934 cname:4zD1KaYwni8++wVc\\r\\na=ssrc:3418615934 msid:C63f5fEFc1f54e9C0D462b96E745903D 4dD2FfD86762c28Dae8F15bcD5F3B1D6\\r\\na=ssrc:3418615934 mslabel:C63f5fEFc1f54e9C0D462b96E745903D\\r\\na=ssrc:3418615934 label:4dD2FfD86762c28Dae8F15bcD5F3B1D6\\r\\nm=video 9 UDP/TLS/RTP/SAVPF 96 97 101 125 100 102 127\\r\\nc=IN IP4 0.0.0.0\\r\\na=rtcp:9 IN IP4 0.0.0.0\\r\\na=ice-ufrag:h6ZC\\r\\na=ice-pwd:z39K3B47cPYqzWXZj4ma97tZ\\r\\na=ice-options:trickle\\r\\na=fingerprint:sha-256 2C:65:9E:AF:B7:99:BB:2B:06:A6:8B:43:A0:B7:E8:2A:37:B1:FF:6D:7A:58:43:0D:CA:FD:31:75:E4:64:F6:D6\\r\\na=setup:passive\\r\\na=mid:video\\r\\na=extmap:2 urn:ietf:params:rtp-hdrext:toffset\\r\\na=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\\r\\na=extmap:4 urn:3gpp:video-orientation\\r\\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\\r\\na=extmap:6 http://www.webrtc.org/experiments/rtp-hdrext/playout-delay\\r\\na=extmap:7 http://www.webrtc.org/experiments/rtp-hdrext/video-content-type\\r\\na=extmap:8 http://www.webrtc.org/experiments/rtp-hdrext/video-timing\\r\\na=sendrecv\\r\\na=rtcp-mux\\r\\na=rtcp-rsize\\r\\na=rtpmap:96 VP8/90000\\r\\na=rtcp-fb:96 goog-remb\\r\\na=rtcp-fb:96 transport-cc\\r\\na=rtcp-fb:96 ccm fir\\r\\na=rtcp-fb:96 nack\\r\\na=rtcp-fb:96 nack pli\\r\\na=rtpmap:97 rtx/90000\\r\\na=fmtp:97 apt=96\\r\\na=rtpmap:101 rtx/90000\\r\\na=fmtp:101 apt=100\\r\\na=rtpmap:125 rtx/90000\\r\\na=fmtp:125 apt=102\\r\\na=rtpmap:100 H264/90000\\r\\na=rtcp-fb:100 goog-remb\\r\\na=rtcp-fb:100 transport-cc\\r\\na=rtcp-fb:100 ccm fir\\r\\na=rtcp-fb:100 nack\\r\\na=rtcp-fb:100 nack pli\\r\\na=fmtp:100 level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=42e01f\\r\\na=rtpmap:102 red/90000\\r\\na=rtpmap:127 ulpfec/90000\\r\\na=ssrc-group:FID 196486158 3262544055\\r\\na=ssrc:196486158 cname:4zD1KaYwni8++wVc\\r\\na=ssrc:196486158 msid:C63f5fEFc1f54e9C0D462b96E745903D eE6bFA1f69CB86fDF6b57753A6786dDE\\r\\na=ssrc:196486158 mslabel:C63f5fEFc1f54e9C0D462b96E745903D\\r\\na=ssrc:196486158 label:eE6bFA1f69CB86fDF6b57753A6786dDE\\r\\na=ssrc:3262544055 cname:4zD1KaYwni8++wVc\\r\\na=ssrc:3262544055 msid:C63f5fEFc1f54e9C0D462b96E745903D eE6bFA1f69CB86fDF6b57753A6786dDE\\r\\na=ssrc:3262544055 mslabel:C63f5fEFc1f54e9C0D462b96E745903D\\r\\na=ssrc:3262544055 label:eE6bFA1f69CB86fDF6b57753A6786dDE\\r\\n\",\"type\":\"answer\"},\"ice\":{\"candidates\":[{\"candidate\":\"candidate:1912282794 1 udp 2122260223 192.168.1.145 54555 typ host generation 0 ufrag h6ZC network-id 1 network-cost 10\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"},{\"candidate\":\"candidate:229563698 1 udp 2122197247 2405:6e00:230e:263a:9d8d:deba:b8ec:9e7b 54556 typ host generation 0 ufrag h6ZC network-id 7 network-cost 900\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"},{\"candidate\":\"candidate:1358307311 1 udp 2122129151 100.102.216.80 55427 typ host generation 0 ufrag h6ZC network-id 6 network-cost 900\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"},{\"candidate\":\"candidate:3050894565 1 udp 2122066175 2405:6e00:230e:263a:f1:bf51:5a31:9540 55428 typ host generation 0 ufrag h6ZC network-id 2 network-cost 10\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"},{\"candidate\":\"candidate:3050894565 1 udp 2122000639 2405:6e00:230e:263a:f1:bf51:5a31:9540 55429 typ host generation 0 ufrag h6ZC network-id 3 network-cost 10\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"},{\"candidate\":\"candidate:4038268958 1 udp 1686052607 194.193.132.64 54555 typ srflx raddr 192.168.1.145 rport 54555 generation 0 ufrag h6ZC network-id 1 network-cost 10\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"},{\"candidate\":\"candidate:2625314940 1 udp 1685921535 120.21.5.51 2947 typ srflx raddr 100.102.216.80 rport 55427 generation 0 ufrag h6ZC network-id 6 network-cost 900\",\"sdpMLineIndex\":0,\"sdpMid\":\"audio\"}],\"complete\":true,\"revision\":8,\"ufrag\":\"h6ZC\"},\"id\":\"F7ceDcFC5b823b7AbB1AfE9f9be1F8C8\"}],\"session\":\"e385320155430877bd1a284a4a714a5625e12589eb0a7ee217370d1ce7e6126291096240b9eda60054f5fa77fec9231ecaae6d148bac479243210976e7c4ab02\",\"token\":\"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiIsImN0eSI6InR3aWxpby1mcGE7dj0xIn0.eyJqdGkiOiJTS2YyNjYwYjA5OTMyOTllNDdmNGYwMmY1MGQxZGZkZTE4LTE1ODYxNTkyMzkiLCJpc3MiOiJTS2YyNjYwYjA5OTMyOTllNDdmNGYwMmY1MGQxZGZkZTE4Iiwic3ViIjoiQUNlMzg1MzIwMTU1NDMwODc3YmQxYTI4NGE0YTcxNGE1NiIsImV4cCI6MTU4NjE2MDEzOSwiZ3JhbnRzIjp7ImlkZW50aXR5IjoiMkYzQjEwMzEtRjYxMy00QjhGLUFENjYtODM0M0U0NDkzRkRDLTE1ODYxNTkyMzkiLCJ2aWRlbyI6eyJyb29tIjoiYXBwb19yb29tXzUwODQifX19.HZKCSDrrfSuWYkSa4Sy9s0FFFc1yigfzLKaJ8Yu4Uzo\",\"type\":\"sync\",\"version\":2},\"id\":\"0122c125-b1e0-4773-848f-953006b5ad52\",\"timeout\":5000,\"type\":\"hello\"}\r\n2020-04-06 17:48:08.558465+1000 MDLink Health[23624:7948949] DEBUG:Twilio:[Core](0x16dae7000): AppleReachability::onConnectionEstablished, socket_fd = 25\r\n2020-04-06 17:48:08.563224+1000 MDLink Health[23624:7948949] DEBUG:Twilio:[Core](0x16dae7000): AppleReachability started listening on address pair on 25 socket\r\n2020-04-06 17:48:08.599284+1000 MDLink Health[23624:7949407] DEBUG:Twilio:[Core](0x16dda3000): Received message:\r\n{\"negotiatedTimeout\":5000,\"type\":\"welcome\"}\r\n2020-04-06 17:48:08.599834+1000 MDLink Health[23624:7949407] DEBUG:Twilio:[Core](0x16dda3000): Connection 0122c125-b1e0-4773-848f-953006b5ad52 is ready.\r\n2020-04-06 17:48:09.211584+1000 MDLink Health[23624:7949407] DEBUG:Twilio:[Core](0x16dda3000): Received message:\r\n{\"body\":{\"version\":2,\"type\":\"synced\",\"peer_connections\":[{\"id\":\"F7ceDcFC5b823b7AbB1AfE9f9be1F8C8\",\"description\":{\"type\":\"offer\",\"sdp\":\"v=0\\r\\no=- 9099294771362502096 3 IN IP4 127.0.0.1\\r\\ns=-\\r\\nt=0 0\\r\\na=msid-semantic: WMS *\\r\\na=group:BUNDLE audio video\\r\\nm=audio 9 UDP/TLS/RTP/SAVPF 111 103 9 0 8 105 13 110 113 126\\r\\nc=IN IP4 0.0.0.0\\r\\na=rtcp:9 IN IP4 0.0.0.0\\r\\na=ice-options:trickle\\r\\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\\r\\na=rtpmap:111 opus/48000/2\\r\\na=rtcp-fb:111 transport-cc\\r\\na=fmtp:111 minptime=10;useinbandfec=1\\r\\na=rtpmap:103 ISAC/16000\\r\\na=rtpmap:9 G722/8000\\r\\na=rtpmap:0 PCMU/8000\\r\\na=rtpmap:8 PCMA/8000\\r\\na=rtpmap:105 CN/16000\\r\\na=rtpmap:13 CN/8000\\r\\na=rtpmap:110 telephone-event/48000\\r\\na=rtpmap:113 telephone-event/16000\\r\\na=rtpmap:126 telephone-event/8000\\r\\na=setup:actpass\\r\\na=mid:audio\\r\\na=sendrecv\\r\\na=ice-ufrag:EsIm\\r\\na=ice-pwd:IAB5fhSIdQgBvV+NKA0ha8tP\\r\\na=fingerprint:sha-256 B4:49:2A:F8:2A:08:F6:32:A0:9E:16:FC:ED:49:AC:60:0F:1D:A4:D4:A4:56:C9:B0:4B:19:DF:0C:3B:98:9B:86\\r\\na=ssrc:3824928268 msid:- 751d30f2-fbff-4e01-be30-4981f8227899\\r\\na=ssrc:3824928268 cname:WFSRrkpIxxHpRL5a\\r\\na=ssrc:3824928268 mslabel:-\\r\\na=ssrc:3824928268 label:751d30f2-fbff-4e01-be30-4981f8227899\\r\\na=rtcp-mux\\r\\nm=video 9 UDP/TLS/RTP/SAVPF 96 97 101 125 100 102 127\\r\\nc=IN IP4 0.0.0.0\\r\\na=rtcp:9 IN IP4 0.0.0.0\\r\\na=ice-options:trickle\\r\\na=extmap:2 urn:ietf:params:rtp-hdrext:toffset\\r\\na=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\\r\\na=extmap:4 urn:3gpp:video-orientation\\r\\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\\r\\na=extmap:6 http://www.webrtc.org/experiments/rtp-hdrext/playout-delay\\r\\na=extmap:7 http://www.webrtc.org/experiments/rtp-hdrext/video-content-type\\r\\na=extmap:8 http://www.webrtc.org/experiments/rtp-hdrext/video-timing\\r\\na=extmap:10 http://tools.ietf.org/html/draft-ietf-avtext-framemarking-07\\r\\na=rtcp-rsize\\r\\na=rtpmap:96 VP8/90000\\r\\na=rtcp-fb:96 goog-remb\\r\\na=rtcp-fb:96 transport-cc\\r\\na=rtcp-fb:96 ccm fir\\r\\na=rtcp-fb:96 nack\\r\\na=rtcp-fb:96 nack pli\\r\\na=rtpmap:97 rtx/90000\\r\\na=fmtp:97 apt=96\\r\\na=rtpmap:101 rtx/90000\\r\\na=fmtp:101 apt=100\\r\\na=rtpmap:125 rtx/90000\\r\\na=fmtp:125 apt=102\\r\\na=rtpmap:100 H264/90000\\r\\na=rtcp-fb:100 goog-remb\\r\\na=rtcp-fb:100 transport-cc\\r\\na=rtcp-fb:100 ccm fir\\r\\na=rtcp-fb:100 nack\\r\\na=rtcp-fb:100 nack pli\\r\\na=fmtp:100 level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=42e01f\\r\\na=rtpmap:102 red/90000\\r\\na=rtpmap:127 ulpfec/90000\\r\\na=setup:actpass\\r\\na=mid:video\\r\\na=sendrecv\\r\\na=ice-ufrag:EsIm\\r\\na=ice-pwd:IAB5fhSIdQgBvV+NKA0ha8tP\\r\\na=fingerprint:sha-256 B4:49:2A:F8:2A:08:F6:32:A0:9E:16:FC:ED:49:AC:60:0F:1D:A4:D4:A4:56:C9:B0:4B:19:DF:0C:3B:98:9B:86\\r\\na=ssrc-group:FID 3824823462 684774438\\r\\na=ssrc:3824823462 msid:- 18989a83-3221-4b41-802e-84a2b17f0839\\r\\na=ssrc:3824823462 cname:WFSRrkpIxxHpRL5a\\r\\na=ssrc:3824823462 mslabel:-\\r\\na=ssrc:3824823462 label:18989a83-3221-4b41-802e-84a2b17f0839\\r\\na=ssrc:684774438 msid:- 18989a83-3221-4b41-802e-84a2b17f0839\\r\\na=ssrc:684774438 cname:WFSRrkpIxxHpRL5a\\r\\na=ssrc:684774438 mslabel:-\\r\\na=ssrc:684774438 label:18989a83-3221-4b41-802e-84a2b17f0839\\r\\na=rtcp-mux\\r\\n\",\"revision\":2},\"initial_answer\":{\"type\":\"answer\",\"sdp\":\"v=0\\r\\no=- 9099294771362502096 2 IN IP4 127.0.0.1\\r\\ns=-\\r\\nt=0 0\\r\\na=msid-semantic: WMS *\\r\\na=group:BUNDLE audio video\\r\\nm=audio 9 UDP/TLS/RTP/SAVPF 111 103 9 0 8 105 13 110 113 126\\r\\nc=IN IP4 0.0.0.0\\r\\na=rtcp:9 IN IP4 0.0.0.0\\r\\na=ice-options:trickle\\r\\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\\r\\na=rtpmap:111 opus/48000/2\\r\\na=rtcp-fb:111 transport-cc\\r\\na=fmtp:111 minptime=10;useinbandfec=1\\r\\na=rtpmap:103 ISAC/16000\\r\\na=rtpmap:9 G722/8000\\r\\na=rtpmap:0 PCMU/8000\\r\\na=rtpmap:8 PCMA/8000\\r\\na=rtpmap:105 CN/16000\\r\\na=rtpmap:13 CN/8000\\r\\na=rtpmap:110 telephone-event/48000\\r\\na=rtpmap:113 telephone-event/16000\\r\\na=rtpmap:126 telephone-event/8000\\r\\na=setup:active\\r\\na=mid:audio\\r\\na=recvonly\\r\\na=ice-ufrag:EsIm\\r\\na=ice-pwd:IAB5fhSIdQgBvV+NKA0ha8tP\\r\\na=fingerprint:sha-256 B4:49:2A:F8:2A:08:F6:32:A0:9E:16:FC:ED:49:AC:60:0F:1D:A4:D4:A4:56:C9:B0:4B:19:DF:0C:3B:98:9B:86\\r\\na=rtcp-mux\\r\\nm=video 9 UDP/TLS/RTP/SAVPF 96 97 101 125 100 102 127\\r\\nc=IN IP4 0.0.0.0\\r\\na=rtcp:9 IN IP4 0.0.0.0\\r\\na=ice-options:trickle\\r\\na=extmap:2 urn:ietf:params:rtp-hdrext:toffset\\r\\na=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\\r\\na=extmap:4 urn:3gpp:video-orientation\\r\\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\\r\\na=extmap:6 http://www.webrtc.org/experiments/rtp-hdrext/playout-delay\\r\\na=extmap:7 http://www.webrtc.org/experiments/rtp-hdrext/video-content-type\\r\\na=extmap:8 http://www.webrtc.org/experiments/rtp-hdrext/video-timing\\r\\na=rtcp-rsize\\r\\na=rtpmap:96 VP8/90000\\r\\na=rtcp-fb:96 goog-remb\\r\\na=rtcp-fb:96 transport-cc\\r\\na=rtcp-fb:96 ccm fir\\r\\na=rtcp-fb:96 nack\\r\\na=rtcp-fb:96 nack pli\\r\\na=rtpmap:97 rtx/90000\\r\\na=fmtp:97 apt=96\\r\\na=rtpmap:101 rtx/90000\\r\\na=fmtp:101 apt=100\\r\\na=rtpmap:125 rtx/90000\\r\\na=fmtp:125 apt=102\\r\\na=rtpmap:100 H264/90000\\r\\na=rtcp-fb:100 goog-remb\\r\\na=rtcp-fb:100 transport-cc\\r\\na=rtcp-fb:100 ccm fir\\r\\na=rtcp-fb:100 nack\\r\\na=rtcp-fb:100 nack pli\\r\\na=fmtp:100 level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=42e01f\\r\\na=rtpmap:102 red/90000\\r\\na=rtpmap:127 ulpfec/90000\\r\\na=setup:active\\r\\na=mid:video\\r\\na=recvonly\\r\\na=ice-ufrag:EsIm\\r\\na=ice-pwd:IAB5fhSIdQgBvV+NKA0ha8tP\\r\\na=fingerprint:sha-256 B4:49:2A:F8:2A:08:F6:32:A0:9E:16:FC:ED:49:AC:60:0F:1D:A4:D4:A4:56:C9:B0:4B:19:DF:0C:3B:98:9B:86\\r\\na=rtcp-mux\\r\\n\",\"revision\":1}}],\"sid\":\"RM25e12589eb0a7ee217370d1ce7e61262\",\"name\":\"appo_room_5084\",\"participant\":{\"sid\":\"PA91096240b9eda60054f5fa77fec9231e\",\"identity\":\"2F3B1031-F613-4B8F-AD66-8343E4493FDC-1586159239\",\"tracks\":[{\"kind\":\"video\",\"priority\":\"standard\",\"id\":\"eE6bFA1f69CB86fDF6b57753A6786dDE\",\"enabled\":true,\"sid\":\"MT7b94683f6e11e37fc74e0b94b25b04ca\",\"name\":\"Camera\",\"state\":\"ready\"},{\"kind\":\"audio\",\"priority\":\"standard\",\"id\":\"4dD2FfD86762c28Dae8F15bcD5F3B1D6\",\"enabled\":true,\"sid\":\"MT6660f21b071ae36f6249daf63a986168\",\"name\":\"Microphone\",\"state\":\"ready\"}],\"revision\":1,\"state\":\"connected\"},\"participants\":[{\"sid\":\"PA1eff6c38c5262e3f370b1c19866157d1\",\"identity\":\"Che Bowen-1586159199\",\"tracks\":[{\"kind\":\"video\",\"priority\":\"standard\",\"id\":\"18989a83-3221-4b41-802e-84a2b17f0839\",\"enabled\":true,\"sid\":\"MT9da79abc9c96dfbc2a12c03d342acc3e\",\"name\":\"18989a83-3221-4b41-802e-84a2b17f0839\",\"state\":\"ready\"},{\"kind\":\"audio\",\"priority\":\"standard\",\"id\":\"751d30f2-fbff-4e01-be30-4981f8227899\",\"enabled\":true,\"sid\":\"MT6a51cbc241fd69925910c5024343a6e1\",\"name\":\"751d30f2-fbff-4e01-be30-4981f8227899\",\"state\":\"ready\"}],\"revision\":3,\"state\":\"connected\"}],\"recording\":{\"enabled\":false,\"revision\":1},\"subscribed\":{\"revision\":2,\"tracks\":[{\"id\":\"18989a83-3221-4b41-802e-84a2b17f0839\",\"sid\":\"MT9da79abc9c96dfbc2a12c03d342acc3e\"},{\"id\":\"751d30f2-fbff-4e01-be30-4981f8227899\",\"sid\":\"MT6a51cbc241fd69925910c5024343a6e1\"}]},\"published\":{\"revision\":1,\"tracks\":[{\"kind\":\"video\",\"priority\":\"standard\",\"id\":\"eE6bFA1f69CB86fDF6b57753A6786dDE\",\"enabled\":true,\"sid\":\"MT7b94683f6e11e37fc74e0b94b25b04ca\",\"name\":\"Camera\",\"state\":\"ready\"},{\"kind\":\"audio\",\"priority\":\"standard\",\"id\":\"4dD2FfD86762c28Dae8F15bcD5F3B1D6\",\"enabled\":true,\"sid\":\"MT6660f21b071ae36f6249daf63a986168\",\"name\":\"Microphone\",\"state\":\"ready\"}]}},\"type\":\"msg\"}\r\n2020-04-06 17:48:09.214818+1000 MDLink Health[23624:7949148] DEBUG:Twilio:[Core](0x16e203000): onAccepted\r\n2020-04-06 17:48:09.215037+1000 MDLink Health[23624:7949148] DEBUG:Twilio:[Core](0x16e203000): RoomSignalingImpl: State transition successful: kSyncing -> kConnected\r\n2020-04-06 17:48:09.215214+1000 MDLink Health[23624:7948702] INFO:Twilio:[Core](0x1032f9840): Reconnected to Room: appo_room_5084\r\n2020-04-06 17:48:09.215486+1000 MDLink Health[23624:7949148] DEBUG:Twilio:[Core](0x16e203000): Open -> Updating. Process an event\r\n2020-04-06 17:48:09.215610+1000 MDLink Health[23624:7949148] DEBUG:Twilio:[Core](0x16e203000): Updating -> Open\r\n2020-04-06 17:48:09.215727+1000 MDLink Health[23624:7949148] DEBUG:Twilio:[Core](0x16e203000): Open -> Updating. Process an event\r\n2020-04-06 17:48:09.215840+1000 MDLink Health[23624:7949148] DEBUG:Twilio:[Core](0x16e203000): Updating -> Open\r\n2020-04-06 17:48:09.342720+1000 MDLink Health[23624:7948949] DEBUG:Twilio:[Core](0x16dae7000): Invoking cancelled closure.\r\n2020-04-06 17:48:09.344871+1000 MDLink Health[23624:7948949] DEBUG:Twilio:[Core](0x16dae7000): Media for PeerConnection F7ceDcFC5b823b7AbB1AfE9f9be1F8C8 transitioned from MediaInactive -> MediaActive\r\n2020-04-06 17:48:09.345174+1000 MDLink Health[23624:7948949] DEBUG:Twilio:[Core](0x16dae7000): PeerConnection F7ceDcFC5b823b7AbB1AfE9f9be1F8C8 Media activity state transitioned from MediaInactive -> MediaActive\r\n2020-04-06 17:48:09.345311+1000 MDLink Health[23624:7948949] DEBUG:Twilio:[Core](0x16dae7000): Media Activity state changed to MediaActive\r\n2020-04-06 17:48:09.345435+1000 MDLink Health[23624:7948949] DEBUG:Twilio:[Core](0x16dae7000): At least one media Track is active in Room.\r\n2020-04-06 17:48:09.872100+1000 MDLink Health[23624:7949715] INFO:Twilio:[Core](0x16e987000): Connected to sdkgw.us1.twilio.com:443.", "title": null, "type": "comment" }, { "action": "created", "author": "mrchauhan2802", "comment_id": 609634634, "datetime": 1586159612000, "masked_author": "username_0", "text": "Now you can track the error", "title": null, "type": "comment" }, { "action": "created", "author": "ceaglest", "comment_id": 609957710, "datetime": 1586197206000, "masked_author": "username_1", "text": "@username_0 can you attach a .swift source file? It is very difficult to read your plain text snippet as many parts of the code are broken and commented out.", "title": null, "type": "comment" }, { "action": "created", "author": "ceaglest", "comment_id": 610004340, "datetime": 1586202955000, "masked_author": "username_1", "text": "Hi @username_0,\r\n\r\nHere is a zipped .swift file that I was able to piece together from the plain text that you provided in your comment.\r\n\r\n[VideoNotPreviewed.swift.zip](https://github.com/twilio/video-quickstart-ios/files/4440391/VideoNotPreviewed.swift.zip)\r\n\r\nI looked at our logs for RM25e12589eb0a7ee217370d1ce7e61262, the device logs you provided were incomplete. Your Room has up to 8 Participants and there are 4 iOS Participants connected at the same time. The code you shared is based on our QuickStart and only renders 1 RemoteParticipant at a time, not 4.\r\n\r\nWhat is the scenario you are trying to achieve, is it 1:1 video conferencing? If this is the case I recommend:\r\n\r\n1. When the user leaves VideoViewVC you need to actually disconnect from the Room. Call `room.disconnect()` and wait from `roomDidDisconnect` to be called. Are you allowing the user to press the \"back\" button without disconnecting?\r\n\r\nThanks,\r\nChris", "title": null, "type": "comment" }, { "action": "created", "author": "mrchauhan2802", "comment_id": 610198578, "datetime": 1586240496000, "masked_author": "username_0", "text": "Yes", "title": null, "type": "comment" }, { "action": "created", "author": "ceaglest", "comment_id": 610506442, "datetime": 1586278938000, "masked_author": "username_1", "text": "@username_0 did you try to disconnect your iOS participants?\r\n\r\nDid it resolve the issue?", "title": null, "type": "comment" }, { "action": "created", "author": "mrchauhan2802", "comment_id": 611302894, "datetime": 1586401733000, "masked_author": "username_0", "text": "Yes issue resolve", "title": null, "type": "comment" }, { "action": "closed", "author": "mrchauhan2802", "comment_id": null, "datetime": 1586401737000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
2
26
158,140
false
false
158,140
true
concourse/concourse
concourse
537,224,029
4,893
null
[ { "action": "opened", "author": "deniseyu", "comment_id": null, "datetime": 1576186233000, "masked_author": "username_0", "text": "## What challenge are you facing?\r\n\r\nIn the v5.7 line (possibly earlier) the resource version page will \"drop\" versions that have been pulled using an outdated resource type image. They still exist in the database and as part of build histories elsewhere, so they're not actually gone, just hiding. I unfortunately did not manage to take a screenshot because Taylor fixed the problem by running `fly check-resource` too quickly 😄 \r\n\r\nI'll try to explain using a timeline:\r\n\r\n1. Resource `concourse-pr` versions `100`, `101`, `102` fetched with `github-pr` custom resource type version `1.0.0`\r\n1. Authors of `github-pr` publish a new image, versioned `1.0.1`\r\n1. Pipeline automatically pulls that new version, we didn't stick that version because we want the latest and greatest `github-pr` resource type\r\n1. Someone opens a `concourse-pr` and version `104` is fetched using `github-pr` version `1.0.1`\r\n1. On the `concourse-pr` resource history view, I can only see version `104`\r\n\r\nThis problem goes away if you run `fly check-resource --from version:100`.\r\n\r\n## What would make this better?\r\n\r\nDefaulting to keeping all resource versions on the page as it was before, if it's possible!\r\n\r\n## Are you interested in implementing this yourself?\r\n\r\nThis involves pretty deep context around how resource configuration versions are computed, so @clarafu would probably need to be involved!", "title": "Preserve resource version history when underlying resource type is updated?", "type": "issue" } ]
2
3
1,921
false
true
1,386
false
edgexfoundry/edgex-go
edgexfoundry
567,947,230
2,389
{ "number": 2389, "repo": "edgex-go", "user_login": "edgexfoundry" }
[ { "action": "opened", "author": "brandonforster", "comment_id": null, "datetime": 1582157372000, "masked_author": "username_0", "text": "Fixes #2358 \r\nFixes #2388 \r\n\r\nThis PR will address the two outstanding bugs above. It ensures that after a provision watcher is updated, the ID returned by the database is propagated back into the provision watcher object before its `notify` method is called. It also ensures that during a provision watcher update, IDs are actually checked and not allow a provision watcher with the same name to be inserted into the database.\r\n\r\nAs part of this work, code was cleaned up and linter issues were addressed.", "title": "Fix provision watcher bugs around updating", "type": "issue" }, { "action": "created", "author": "brandonforster", "comment_id": 589177767, "datetime": 1582217207000, "masked_author": "username_0", "text": "@username_1 please verify this fixes your issue.", "title": null, "type": "comment" }, { "action": "created", "author": "hahattan", "comment_id": 589465401, "datetime": 1582251276000, "masked_author": "username_1", "text": "Yes it fixed the issue .", "title": null, "type": "comment" }, { "action": "created", "author": "tingyuz", "comment_id": 591456656, "datetime": 1582727664000, "masked_author": "username_2", "text": "This PR does fix the bug mentioned in the original issue ticket. However when considering a bigger picture of device provisioning some form of security mechanism is needed. The details are captured in a newly create issue here: https://github.com/edgexfoundry/edgex-go/issues/2415", "title": null, "type": "comment" } ]
5
9
13,164
false
true
856
true
tatigabru/kaggle-rsna
null
663,493,704
4
null
[ { "action": "opened", "author": "tutu96177", "comment_id": null, "datetime": 1595397055000, "masked_author": "username_0", "text": "The follow fig has two normal , is there right?\r\n![图片](https://user-images.githubusercontent.com/31872099/88139473-5a0d5900-cc22-11ea-99d9-b578b7c087e4.png)", "title": "Data distributed fig is wrong", "type": "issue" }, { "action": "created", "author": "tatigabru", "comment_id": 676557158, "datetime": 1597857767000, "masked_author": "username_1", "text": "Thank you! did not see that", "title": null, "type": "comment" } ]
2
2
183
false
false
183
false
etcd-io/etcd
etcd-io
527,230,812
11,382
null
[ { "action": "opened", "author": "micheelengronne", "comment_id": null, "datetime": 1574433118000, "masked_author": "username_0", "text": "As stated [here](https://github.com/etcd-io/etcd/blob/master/Documentation/op-guide/security.md), etcd supports TLS.\r\n\r\nBut the key file can only be used if it is a basic unencrypted file.\r\n\r\nIt would be a great improvement if the private key could be served from a pkcs11 interface (HSM, smartcard).", "title": "pkcs11 support", "type": "issue" }, { "action": "created", "author": "micheelengronne", "comment_id": 610379598, "datetime": 1586265317000, "masked_author": "username_0", "text": "/active", "title": null, "type": "comment" }, { "action": "created", "author": "micheelengronne", "comment_id": 654393016, "datetime": 1594059671000, "masked_author": "username_0", "text": "/active", "title": null, "type": "comment" } ]
2
7
858
false
true
314
false
inorichi/tachiyomi
null
642,597,071
3,359
null
[ { "action": "opened", "author": "Omar-AbdulAzeez", "comment_id": null, "datetime": 1592757255000, "masked_author": "username_0", "text": "Anilist tracking just stopped working. It doesn't auto update so I openes the tracking tab and tried to update manually it gives a failed to connect error (SS included). I tried to re log in but now I just can't log in... after I put the email and password and tried to log in it closes the browser without integrating with tachiyomi.\r\n![Screenshot_20200621-182604_Tachiyomi](https://user-images.githubusercontent.com/49833164/85230053-c7448900-b3ed-11ea-82dd-a2b651e5f4ab.jpg)", "title": "Anilist tracking failed to connect to graphql.anilist.co", "type": "issue" }, { "action": "created", "author": "Omar-AbdulAzeez", "comment_id": 647154173, "datetime": 1592758748000, "masked_author": "username_0", "text": "Ok so... I had my suspicions\r\nIt seems the app isn't connected to the internet because of a certificate error?? I edited the title as well\r\n![Screenshot_20200621-185712_Tachiyomi](https://user-images.githubusercontent.com/49833164/85230538-31126200-b3f1-11ea-8635-c691eff4bec5.jpg)", "title": null, "type": "comment" }, { "action": "created", "author": "arkon", "comment_id": 647157860, "datetime": 1592760714000, "masked_author": "username_1", "text": "I wish you had filled out the template fully.\n\nWhat version of Android are you using?", "title": null, "type": "comment" }, { "action": "created", "author": "Omar-AbdulAzeez", "comment_id": 647166371, "datetime": 1592765395000, "masked_author": "username_0", "text": "Sorry... I thought it was something to do with anilist at first so I just didn't bother... it's android 9\r\nAnd it got fixed on its own... I tried restarting the app a couple of times didn't work but at some point I did another restart and it was fixed idk what changed", "title": null, "type": "comment" }, { "action": "closed", "author": "arkon", "comment_id": null, "datetime": 1593870473000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
5
1,111
false
false
1,111
false
boostorg/mp11
boostorg
541,383,810
43
{ "number": 43, "repo": "mp11", "user_login": "boostorg" }
[ { "action": "opened", "author": "D-Barber", "comment_id": null, "datetime": 1576969882000, "masked_author": "username_0", "text": "I used mp11 to implement a list left rotation algorithm a while ago and having recently had cause to use it again (and extend it to cover some edge cases in my original implementaion) I thought I'd submit it here as a possible extension to the library. The implementation here is largely dictated by the SFINAE deficiencies of the Visual Studio 2013 compiler, as several versions of an alternative SFINAE-based implementation were fine for all the other test configurations. If you feel the fundamental idea has merit but I've missed a way to leverage the library more heavily to simplify the implementation then I'll happily put more time into making changes to it!", "title": "Add mp_rotate_left and mp_rotate_right", "type": "issue" }, { "action": "created", "author": "pdimov", "comment_id": 575944863, "datetime": 1579387296000, "masked_author": "username_1", "text": "Thanks. I removed the default argument and simplified the implementation a bit. This foregoes the 0 optimization, but that's not going to be a common case. One could have gone either way on that.", "title": null, "type": "comment" }, { "action": "created", "author": "D-Barber", "comment_id": 576854740, "datetime": 1579636769000, "masked_author": "username_0", "text": "Thanks @username_1. Removing the optimisation makes sense, it significantly simplifies the implementation.", "title": null, "type": "comment" } ]
2
3
963
false
false
963
true
PolymathNetwork/polymath-core
PolymathNetwork
294,127,582
130
null
[ { "action": "opened", "author": "adamdossa", "comment_id": null, "datetime": 1517677811000, "masked_author": "username_0", "text": "Currently they are not (via `onlyShareholders` modifier) - this means an issuer could blacklist all addresses to avoid balance holders being able to vote to freeze funds.\r\n\r\nHaving said that it seems questionable as to whether or not blacklisted addresses are eligable.\r\n\r\nOne approach which would help, would be to reduce the totalSupply of the token when an address is blacklisted (by the amount of balance held by the address being blacklisted) and reverse this if an address is then re-whitelisted.", "title": "Should blacklisted ST balance holders be allowed to vote to freeze funds?", "type": "issue" } ]
1
1
502
false
false
502
false
TheLabbingProject/pylabber
TheLabbingProject
655,856,086
45
{ "number": 45, "repo": "pylabber", "user_login": "TheLabbingProject" }
[ { "action": "opened", "author": "Aharonyn", "comment_id": null, "datetime": 1594647191000, "masked_author": "username_0", "text": "variable.", "title": "Added a new property for external usage of the APP_IP environment ...", "type": "issue" } ]
2
2
9
false
true
9
false
Mermade/widdershins
Mermade
372,650,251
186
null
[ { "action": "opened", "author": "DavidBiesack", "comment_id": null, "datetime": 1540234340000, "masked_author": "username_0", "text": "**Describe the bug**\r\nrestrictions not being documented for OpenAPI 2.0 (which widdershins implicitly converts to openapi 3.0).\r\nI also see the same result (no schema restrictions documented) with OpenAPI 3.0 input\r\n\r\n* [ x] - I have checked that my input document is valid **OpenAPI 2.0**/3.0.x or AsyncAPI 1.x\r\n\r\n**To Reproduce**\r\nSteps to reproduce the behavior:\r\n1. Command-line: `npx widdershins -o /tmp/example.md /tmp/example.yaml`\r\n\r\ninput `example.yaml` and output `example.md` attached as text files\r\n\r\n[example.yaml](https://github.com/Mermade/widdershins/files/2502700/example.yaml.txt)\r\n[example.md](https://github.com/Mermade/widdershins/files/2502701/example.md.txt)\r\n\r\n**Expected behavior**\r\nlist `minimum`, `maximum` etc for properties in the schema\r\n\r\n**Versions**:\r\n- Node.js (note only LTS versions are supported): 5.6.0\r\n\r\n**Additional context**\r\nAdd any other context about the problem here.", "title": "Schema property restrictions (such as minimum, maximum) not documented", "type": "issue" } ]
1
1
913
false
false
913
false
ktorio/ktor
ktorio
599,152,686
1,791
null
[ { "action": "opened", "author": "wellingtoncosta", "comment_id": null, "datetime": 1586813995000, "masked_author": "username_0", "text": "Hi,\r\n\r\nI'm planning to use ktor-client in a Kotlin Multiplatform project, building for Android and iOS.\r\n\r\nMy question is about `ktor-client-ios-iosarm64` and `ktor-client-ios-iosx64` artifacts and how exactly I should use them.\r\n\r\nI was seeing a demo project and I noticed these artifacts used as dependencies for [`iosarm64` ](https://github.com/SimonSchubert/Newsout/blob/master/shared/build.gradle#L87) and [`iosx64`](https://github.com/SimonSchubert/Newsout/blob/master/shared/build.gradle#L91) architectures in iOS target, but in ktor examples I just noticed use of `ktor-client-ios` dependency. So, I would like to know what I should use in my project.", "title": "Just a question about ios-iosarm64 and ios-iosx64 artifacts", "type": "issue" }, { "action": "created", "author": "e5l", "comment_id": 613917980, "datetime": 1586941803000, "masked_author": "username_1", "text": "Hi @username_0, you can use `ktor-client-ios`; It should resolve platform dependencies for you.", "title": null, "type": "comment" }, { "action": "created", "author": "wellingtoncosta", "comment_id": 613979778, "datetime": 1586949806000, "masked_author": "username_0", "text": "Thanks @username_1!!", "title": null, "type": "comment" }, { "action": "closed", "author": "wellingtoncosta", "comment_id": null, "datetime": 1586949813000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
2
4
772
false
false
772
true
2DegreesInvesting/r2dii.analysis
2DegreesInvesting
540,967,326
13
null
[ { "action": "opened", "author": "maurolepore", "comment_id": null, "datetime": 1576844258000, "masked_author": "username_0", "text": "", "title": "target_year defaults to latest year in selected market-ref_sectors", "type": "issue" }, { "action": "created", "author": "jdhoffa", "comment_id": 635846251, "datetime": 1590741072000, "masked_author": "username_1", "text": "Closed by #70", "title": null, "type": "comment" }, { "action": "closed", "author": "jdhoffa", "comment_id": null, "datetime": 1590741082000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
3
13
false
false
13
false
keptn/keptn
keptn
490,896,487
748
null
[ { "action": "opened", "author": "johannes-b", "comment_id": null, "datetime": 1568009672000, "masked_author": "username_0", "text": "**Release date**\r\n24-07-2019\r\n---\r\n### Phase 1 - Release of keptn libraries\r\n\r\n**Result:** go-utils > **go-utils:0.1.1**\r\n\r\n- [x] all feature/bugfix/hotfix branches merged into develop\r\n- [x] inactive branches deleted\r\n- [x] _on develop branch:_ release notes are up-to-date\r\n- [x] _on develop branch:_ version bump\r\n- [x] _on develop branch:_ releasenotes_develop.md renamed to releasenotes_**Vx.x.x**.md\r\n- [x] _on develop branch:_ `git commit`\r\n- [x] release-x.x.x branch created: `git checkout -b release-x.x.x`\r\n- [x] PR from release-x.x.x to master\r\n- [x] libraries on GitHub released based on release notes\r\n- [x] master branch tagged\r\n- [x] PR from master to develop\r\n- [x] new (empty) release notes (releasenotes_develop.md) file on develop branch\r\n\r\n---\r\n### Phase 2 - Release of external keptn services\r\n\r\n**foreach:**\r\n- [x] (JB) github-service > **github-service:0.3.0.latest**\r\n- [x] (JB) servicenow-service > **servicenow-service:0.1.3.latest**\r\n- [x] (JB) dynatrace-service > **dynatrace-service:0.2.0.latest**\r\n- [x] (JE) pitometer-service > **pitometer-service:0.2.0.latest**\r\n- [x] (JB/JE) jmeter-service > **jmeter-service:0.1.1.latest**\r\n- [x] (JE) helm-service > **helm-service:0.1.1.latest**\r\n- [x] (JE) gatekeeper-service > **gatekeeper-service:0.1.1.latest**\r\n- [x] (JE) openshift-route-service > **openshift-route-service:0.1.1.latest**\r\n\r\n **begin**\r\n\r\n - [ ] all feature/bugfix/hotfix branches merged into develop\r\n - [ ] inactive branches deleted\r\n - [ ] _on develop branch:_ use latest go-utils library (run `dep ensure`)\r\n - [ ] _on develop branch:_ release notes are up-to-date\r\n - [ ] _on develop branch:_ version bump\r\n - [ ] _on develop branch:_ releasenotes_develop.md renamed to releasenotes_**Vx.x.x**.md\r\n - [ ] _on develop branch:_ `git commit`\r\n - [ ] release-x.x.x branch created: `git checkout -b release-x.x.x`\r\n - [ ] changes pushed to release branch: `git push` > Travis built image > see [DockerHub](https://cloud.docker.com/u/keptn/repository/list)\r\n\r\n **end**\r\n\r\n---\r\n### Phase 3 - Release of keptn core\r\n\r\n**foreach:**\r\n- [x] control > **control:0.3.0.latest**\r\n- [x] authenticator > **authenticator:0.2.3.latest**\r\n- [x] eventbroker-go > **eventbroker-go:0.1.0.latest**\r\n- [x] eventbroker-ext > **eventbroker-ext:0.3.0.latest**\r\n- [x] bridge > **bridge:0.1.3.latest**\r\n- [x] distributor > **distributor:0.1.0.latest**\r\n\r\n **begin**\r\n\r\n - [ ] all feature/bugfix/hotfix branches merged into develop\r\n - [ ] inactive branches deleted\r\n - [ ] _on develop branch:_ use latest go-utils library (run `dep ensure`)\r\n - [ ] _on develop branch:_ release notes are up-to-date\r\n - [ ] _on develop branch:_ version bump\r\n - [ ] _on develop branch:_ releasenotes_develop.md renamed to releasenotes_**Vx.x.x**.md\r\n - [ ] _on develop branch:_ `git commit`\r\n - [ ] release-x.x.x branch created: `git checkout -b release-x.x.x`\r\n - [ ] changes pushed to release branch: `git push` > Travis built image > see [DockerHub](https://cloud.docker.com/u/keptn/repository/list)\r\n\r\n **end**\r\n\r\n---\r\n### Phase 4 - Release of keptn installer \r\n\r\n**Result:** installer > **installer:0.4.0.latest**\r\n\r\n- [x] (TBD) upgrade script from keptn 0.2.x to keptn 0.3.0 available\r\n- [x] all feature/bugfix/hotfix branches merged into develop\r\n- [x] inactive branches deleted\r\n- [x] _on develop branch:_ release notes are up-to-date\r\n- [x] _on develop branch:_ version bump\r\n- [x] _on develop branch:_ releasenotes_develop.md renamed to releasenotes_**Vx.x.x**.md\r\n- [x] _on develop branch:_ manifests/keptn/uniform-services.yaml updated, i.e., use **x.x.x.latest** tags for service images\r\n- [x] _on develop branch:_ manifests/keptn/uniform-services-openshift.yaml updated, i.e., use **x.x.x.latest** tags for service images\r\n- [x] _on develop branch:_ manifests/keptn/core.yaml updated, i.e., use **x.x.x.latest** tags for service images\r\n- [x] _on develop branch:_ manifests/installer/installer.yaml updated, i.e., reference to **installer:0.x.x.latest**\r\n- [x] _on develop branch:_ `git commit`\r\n- [x] release-x.x.x branch created: `git checkout -b release-x.x.x`\r\n- [x] changes pushed to release branch: `git push` > Travis built image > see [DockerHub](https://cloud.docker.com/u/keptn/repository/list)\r\n\r\n---\r\n### Phase 5 - Release of keptn cli\r\n\r\n**Result:** cli > **cli:0.4.0.latest**\r\n\r\n- [x] all feature/bugfix/hotfix branches merged into develop\r\n- [x] inactive branches deleted\r\n- [x] _on develop branch:_ use latest go-utils library (run `dep ensure`)\r\n- [x] _on develop branch:_ release notes are up-to-date\r\n- [x] _on develop branch:_ README.md is up-to-date\r\n- [x] _on develop branch:_ releasenotes_develop.md renamed to releasenotes_**Vx.x.x**.md\r\n- [x] _on develop branch:_ version + ./cli/version bump\r\n- [x] _on develop branch:_ `git commit`\r\n- [x] release-x.x.x branch created: `git checkout -b release-x.x.x`\r\n- [x] changes pushed to release branch: `git push` > Travis built image > see [Storage](https://console.cloud.google.com/storage/browser/keptn-cli?project=sai-research)\r\n\r\n---\r\n### Phase 6 - Preparation phase\r\n- [x] keptn.sh/docs is up-to-date\r\n- [x] keptn/examples released > **examples:0.4.0**\r\n- [ ] keptn/specification is up-to-date\r\n---\r\n### Phase 7 - Test phase\r\n- [x] (TBD) upgrade script tested\r\n- [x] download of **keptn CLI 0.4.0.latest** > [LINK to CLI](https://console.cloud.google.com/storage/browser/keptn-cli/0.4.0-20190722.1522/?project=sai-research)\r\n- [x] install keptn cli and execute: `keptn version` output: `CLI version: 0.4.0-20190722.1522`\r\n- [x] pre-view of **keptn.sh/docs** > [LINK](https://deploy-preview-232--keptn.netlify.com/docs/develop/)\r\n- [x] GKE (Johannes/Jürgen)\r\n - [x] installation on platform `keptn install --keptn-version=release-0.4.0 -p=gke`\r\n - [x] use cases completed according to keptn.sh/docs without monitoring\r\n - [x] use cases completed according to keptn.sh/docs with Dynatrace\r\n - [x] use cases completed according to keptn.sh/docs with Prometheus\r\n - [x] bridge entries verified\r\n- [x] OpenShift (Jürgen)\r\n - [x] installation on platform `keptn install --keptn-version=release-0.4.0 -p=openshift`\r\n - [x] use cases completed according to keptn.sh/docs without monitoring\r\n - [x] use cases completed according to keptn.sh/docs with Dynatrace\r\n - [x] use cases completed according to keptn.sh/docs with Prometheus\r\n - [x] bridge entries verified\r\n- [x] AKS (Jürgen)\r\n - [x] installation on platform `keptn install --keptn-version=release-0.4.0 -p=aks`\r\n - [x] use cases completed according to keptn.sh/docs without monitoring\r\n - [x] use cases completed according to keptn.sh/docs with Dynatrace\r\n - [x] use cases completed according to keptn.sh/docs with Prometheus\r\n - [x] bridge entries verified\r\n- [ ] Kubernetes (Andi)\r\n - [x] connect to cluster and verify `kubectl config current-context`\r\n - [x] installation on platform `keptn install --keptn-version=release-0.4.0 -p=kubernetes`\r\n - [x] use cases completed according to keptn.sh/docs without monitoring\r\n - [ ] use cases completed according to keptn.sh/docs with Dynatrace\r\n - [x] use cases completed according to keptn.sh/docs with Prometheus\r\n - [x] bridge entries verified\r\n- [ ] PKS (Mike)\r\n - [x] connect to cluster (`pks login` + `pks get-credentials`) and verify `kubectl config current-context`\r\n - [x] installation on platform `keptn install --keptn-version=release-0.4.0 -p=kubernetes`\r\n - [x] use cases completed according to keptn.sh/docs without monitoring\r\n - [x] use cases completed according to keptn.sh/docs with Dynatrace\r\n - [x] use cases completed according to keptn.sh/docs with Prometheus\r\n - [ ] bridge entries verified\r\n- [x] download keptn CLI 0.4.0.latest Windows + Installation on GKE\r\n- [x] download keptn CLI 0.4.0.latest Linux + Installation on GKE\r\n---\r\n\r\n### Official release of services and core - 3 ...\r\n**foreach:**\r\n- [ ] (JB) github-service > **github-service:0.3.0**\r\n- [ ] (JB) servicenow-service > **servicenow-service:0.1.3**\r\n- [ ] (JB) pitometer-service > **pitometer-service:0.2.0**\r\n- [ ] (JB) dynatrace-service > **dynatrace-service:0.2.0**\r\n- [ ] (JB) jmeter-service > **jmeter-service:0.1.1**\r\n- [ ] helm-service > **helm-service:0.1.1**\r\n- [ ] gatekeeper-service > **gatekeeper-service:0.1.1**\r\n- [ ] openshift-route-service > **openshift-route-service:0.1.1**\r\n- [ ] authenticator > **authenticator:0.2.3**\r\n- [ ] bridge > **bridge:0.1.3**\r\n- [ ] control > **control:0.3.0**\r\n- [ ] eventbroker-go > **eventbroker-go:0.1.0**\r\n- [ ] eventbroker-ext > **eventbroker-ext:0.3.0**\r\n- [ ] distributor > **distributor:0.1.0**\r\n\r\n **begin**\r\n\r\n - [x] _on release-x.x.x branch:_ deploy/service.yaml updated, i.e., reference to **tag**\r\n - [x] check if all PRs are merged\r\n - [x] PR from release-x.x.x to master\r\n - [x] Travis built image > see [DockerHub](https://cloud.docker.com/u/keptn/repository/list)\r\n - [x] service on GitHub released based on release notes\r\n - [x] master branch tagged\r\n - [x] PR from master to develop\r\n - [ ] new (empty) release notes (releasenotes_develop.md) file on develop branch\r\n\r\n **end**\r\n\r\n---\r\n### Official release of installer - 2 ...\r\n\r\n**Result:** installer> **installer:0.4.0**\r\n\r\n- [x] _on release-x.x.x branch:_ manifests/keptn/uniform-services.yaml updated, i.e., reference to **tag**\r\n- [x] _on release-x.x.x branch:_ manifests/keptn/uniform-services-openshift.yaml updated, i.e., reference to **tag**\r\n- [x] _on release-x.x.x branch:_ manifests/keptn/uniform-distributors.yaml updated, i.e., reference to **tag**\r\n- [x] _on release-x.x.x branch:_ manifests/keptn/uniform-distributors-openshift.yaml updated, i.e., ref to **tag**\r\n- [x] _on release-x.x.x branch:_ manifests/keptn/core.yaml updated, i.e., env variables reference to **tag**\r\n- [x] _on release-x.x.x branch:_ ./manifests/installer/installer.yaml updated, i.e., reference to **tag** \r\n- [x] (_on release-x.x.x branch:_ upgradeKeptn.sh updated, i.e., reference to **tag**) \r\n- [x] PR from release-x.x.x to master\r\n- [x] Travis built image > see [DockerHub](https://cloud.docker.com/u/keptn/repository/list)\r\n- [x] installer on GitHub released based on release notes\r\n- [x] master branch tagged\r\n- [x] PR from master to develop\r\n- [ ] new (empty) release notes (releasenotes_develop.md) file on develop branch\r\n\r\n---\r\n### Official release of keptn - 1 ... go.\r\n\r\n**Result:** cli> **cli:0.4.0**\r\n\r\n- [x] PR from release-x.x.x to master\r\n- [x] Travis built image > see [Storage](https://console.cloud.google.com/storage/browser/keptn-cli?project=sai-research)\r\n- [x] release keptn on GitHub based on release notes (upload keptn cli for mac, linux, windows)\r\n- [x] master branch tagged\r\n- [x] PR from master to develop\r\n- [ ] new (empty) release notes (releasenotes_develop.md) file on develop branch\r\n- [x] update *Get Started* on keptn.sh with newest release\r\n- [x] release of keptn.sh\r\n- [x] send out Slack notification\r\n- [x] send out Release-Email", "title": "Release 0.5.0-beta", "type": "issue" }, { "action": "closed", "author": "agrimmer", "comment_id": null, "datetime": 1568703811000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
2
10,962
false
false
10,962
false
fonsp/Pluto.jl
null
702,440,817
441
null
[ { "action": "opened", "author": "0Art0", "comment_id": null, "datetime": 1600230851000, "masked_author": "username_0", "text": "I refreshed the browser page of the Pluto notebook after a long period of inactivity, and an error showed up. Usually the Pluto notebook takes a long time to reconnect after inactivity, and refreshing the page solves this.\r\n\r\nHere is the error message with the stack trace:\r\n\r\n```\r\nBad query\r\nPlease report this error!\r\n\r\n\r\nGo back\r\n\r\n\r\nError message:\r\n\r\nArgumentError: Malformed UUID string: \"undefined\"\r\nStacktrace:\r\n [1] Base.UUID(::String) at .\\uuid.jl:39\r\n [2] (::Pluto.var\"#serve_openfile#105\"{Pluto.ServerSession,Pluto.ServerSecurity})(::HTTP.Messages.Request) at C:\\Users\\91886\\.julia\\packages\\Pluto\\upwxH\\src\\webserver\\Static.jl:85\r\n [3] handle(::HTTP.Handlers.RequestHandlerFunction{Pluto.var\"#serve_openfile#105\"{Pluto.ServerSession,Pluto.ServerSecurity}}, ::HTTP.Messages.Request) at C:\\Users\\91886\\.julia\\packages\\HTTP\\atT5q\\src\\Handlers.jl:253\r\n [4] handle(::HTTP.Handlers.Router{Symbol(\"##253\")}, ::HTTP.Messages.Request) at C:\\Users\\91886\\.julia\\packages\\HTTP\\atT5q\\src\\Handlers.jl:467\r\n [5] (::Pluto.var\"#196#203\"{Pluto.ServerSession,HTTP.Handlers.Router{Symbol(\"##253\")},Base.RefValue{Function}})(::HTTP.Streams.Stream{HTTP.Messages.Request,HTTP.ConnectionPool.Transaction{Sockets.TCPSocket}}) at C:\\Users\\91886\\.julia\\packages\\Pluto\\upwxH\\src\\webserver\\WebServer.jl:171\r\n [6] handle at C:\\Users\\91886\\.julia\\packages\\HTTP\\atT5q\\src\\Handlers.jl:269 [inlined]\r\n [7] #4 at C:\\Users\\91886\\.julia\\packages\\HTTP\\atT5q\\src\\Handlers.jl:345 [inlined]\r\n [8] macro expansion at C:\\Users\\91886\\.julia\\packages\\HTTP\\atT5q\\src\\Servers.jl:367 [inlined]\r\n [9] (::HTTP.Servers.var\"#13#14\"{HTTP.Handlers.var\"#4#5\"{HTTP.Handlers.StreamHandlerFunction{Pluto.var\"#196#203\"{Pluto.ServerSession,HTTP.Handlers.Router{Symbol(\"##253\")},Base.RefValue{Function}}}},HTTP.ConnectionPool.Transaction{Sockets.TCPSocket},HTTP.Streams.Stream{HTTP.Messages.Request,HTTP.ConnectionPool.Transaction{Sockets.TCPSocket}}})() at .\\task.jl:358\r\n```", "title": "Bad query - ArgumentError: Malformed UUID string: \"undefined\"", "type": "issue" }, { "action": "created", "author": "dralletje", "comment_id": 693427238, "datetime": 1600264977000, "masked_author": "username_1", "text": "Do you remember what the url was that you reloaded?", "title": null, "type": "comment" }, { "action": "created", "author": "0Art0", "comment_id": 694779547, "datetime": 1600423601000, "masked_author": "username_0", "text": "I was loading a file that was saved locally.", "title": null, "type": "comment" }, { "action": "created", "author": "fonsp", "comment_id": 694846458, "datetime": 1600433192000, "masked_author": "username_2", "text": "@username_1 This might have been the old `Ctrl+R` rebinding, which redirected to `/open?path=/asdf.jl&secret=undefined`", "title": null, "type": "comment" }, { "action": "created", "author": "fonsp", "comment_id": 694846999, "datetime": 1600433264000, "masked_author": "username_2", "text": "@username_1 This might have been the old `Ctrl+R` rebinding, which redirects to `/open?path=/asdf.jl&secret=undefined`.\r\n\r\nThere may be other ways to get redirected to `/open?...&secret=undefined` - we should check for that malformed UUID exception and redirect instead", "title": null, "type": "comment" }, { "action": "created", "author": "fonsp", "comment_id": 703800720, "datetime": 1601921600000, "masked_author": "username_2", "text": "Fixed by https://github.com/username_2/Pluto.jl/pull/529", "title": null, "type": "comment" }, { "action": "closed", "author": "fonsp", "comment_id": null, "datetime": 1601921600000, "masked_author": "username_2", "text": "", "title": null, "type": "issue" } ]
3
7
2,459
false
false
2,459
true
PaddlePaddle/PaddleHub
PaddlePaddle
606,733,657
547
null
[ { "action": "opened", "author": "guchuanhang", "comment_id": null, "datetime": 1587808270000, "masked_author": "username_0", "text": "1.基于resnet_v2_50_imagenet,进行猫狗分类后,如何保存这个模型?", "title": "如何获取迁移学习后的模型?", "type": "issue" }, { "action": "created", "author": "daniao2017", "comment_id": 619380339, "datetime": 1587821577000, "masked_author": "username_1", "text": "可以报名参加[百度的Python小白逆袭大神](https://aistudio.baidu.com/aistudio/education/group/info/1224)课程,看一下day4的作业\r\n```\r\nconfig = hub.RunConfig(\r\n use_cuda=False, #是否使用GPU训练,默认为False;\r\n num_epoch=3, #Fine-tune的轮数;\r\n checkpoint_dir=\"cv_finetune_turtorial_demo\",#模型checkpoint保存路径, 若用户没有指定,程序会自动生成;\r\n batch_size=3, #训练的批大小,如果使用GPU,请根据实际情况调整batch_size;\r\n eval_interval=10, #模型评估的间隔,默认每100个step评估一次验证集;\r\n strategy=hub.finetune.strategy.DefaultFinetuneStrategy()) #Fine-tune优化策略;\r\n```\r\n记得点下star,让我们多点得奖机会~", "title": null, "type": "comment" }, { "action": "created", "author": "Steffy-zxf", "comment_id": 619382977, "datetime": 1587822770000, "masked_author": "username_2", "text": "@username_0 你好! 用PaddleHub 迁移学习功能会自动保存训练时最好的模型,模型保存在RunConfig中指定的checkpoint_dir路径中。", "title": null, "type": "comment" }, { "action": "closed", "author": "guchuanhang", "comment_id": null, "datetime": 1588041028000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "guchuanhang", "comment_id": 620340242, "datetime": 1588041028000, "masked_author": "username_0", "text": "多谢,周末试一下。", "title": null, "type": "comment" }, { "action": "reopened", "author": "guchuanhang", "comment_id": null, "datetime": 1588294156000, "masked_author": "username_0", "text": "1.基于resnet_v2_50_imagenet,进行猫狗分类后,如何保存这个模型?", "title": "如何获取迁移学习后的模型?", "type": "issue" }, { "action": "created", "author": "guchuanhang", "comment_id": 622195783, "datetime": 1588294383000, "masked_author": "username_0", "text": "首先,在AI Studio PaddleHub进行图像分类。有保存的代码。在jupyter notebook.进行测试的时候也有打印:\r\n`[2020-05-01 08:43:20,098] [ INFO] - Load the best model from ./cv_finetune_turtorial_demo/best_model`\r\n可是在当前目录下就是搜索不到这个文件夹", "title": null, "type": "comment" }, { "action": "closed", "author": "haoyuying", "comment_id": null, "datetime": 1603368427000, "masked_author": "username_3", "text": "", "title": null, "type": "issue" } ]
4
8
992
false
false
992
true
slact/nchan
null
607,284,332
569
null
[ { "action": "opened", "author": "surajsavita", "comment_id": null, "datetime": 1587970097000, "masked_author": "username_0", "text": "I believe nchan_subscriber_first_message directive should be allowed to set higher number as we can configure higher numbers in nchan_message_buffer_length which makes more messages to store per channel.\r\nRef: https://github.com/username_1/nchan/blob/7077fc8cf761870e4fd437f961865514408b4e94/src/nchan_setup.c#L835", "title": "Can we relax limit of having max 32 in configuration of nchan_subscriber_first_message directive ", "type": "issue" }, { "action": "created", "author": "slact", "comment_id": 620269378, "datetime": 1588026585000, "masked_author": "username_1", "text": "Can you give me a real-world use case for a large value for `nchan_subscriber_first_message`?", "title": null, "type": "comment" }, { "action": "created", "author": "surajsavita", "comment_id": 620516102, "datetime": 1588069182000, "masked_author": "username_0", "text": "Setting nchan_subscriber_first_message to some higher value can help in having functionality similar to head and tail.\r\nI have Batch Tasks while those are running I want to show last few minutes logs live on the UI to give more context on how that batch is performing.\r\nConsumer can connect anytime during run and they should be able to see last lets say 100 logs but not all previous logs as there could be more than 5000 logs depending upon when they are checking. \r\nBy setting nchan_subscriber_first_message to -100 I can be sure consumers will get on 100 messages from latest which works more like a tail -100 <filename>.", "title": null, "type": "comment" } ]
2
3
1,027
false
false
1,027
true
Callidon/bloom-filters
null
415,023,570
4
null
[ { "action": "opened", "author": "deepak-ranolia", "comment_id": null, "datetime": 1551259524000, "masked_author": "username_0", "text": "In angular project\r\nStep 1 : run **_npm install bloom-filters --save_**\r\nStep 2: Add _**\"node_modules/bloom-filters/bloom-filters.js\"**_ in angular.json\r\nStep 3: Import in component file as _**import * as BloomFilter from 'bloom-filters'**_\r\n\r\n\r\n\r\nmy package.json is \r\n{\r\n \"name\": \"\",\r\n \"version\": \"0.0.0\",\r\n \"scripts\": {\r\n \"ng\": \"ng\",\r\n \"start\": \"ng serve\",\r\n \"build\": \"ng build\",\r\n \"test\": \"ng test\",\r\n \"lint\": \"ng lint\",\r\n \"e2e\": \"ng e2e\"\r\n },\r\n \"private\": true,\r\n \"dependencies\": {\r\n \"@angular/animations\": \"~7.1.0\",\r\n \"@angular/cdk\": \"~7.1.0\",\r\n \"@angular/common\": \"~7.1.0\",\r\n \"@angular/compiler\": \"~7.1.0\",\r\n \"@angular/core\": \"~7.1.0\",\r\n \"@angular/forms\": \"~7.1.0\",\r\n \"@angular/platform-browser\": \"~7.1.0\",\r\n \"@angular/platform-browser-dynamic\": \"~7.1.0\",\r\n \"@angular/router\": \"~7.1.0\",\r\n \"@types/axios\": \"^0.14.0\",\r\n \"aes-js\": \"^3.1.2\",\r\n \"angular-filepond\": \"^1.0.5\",\r\n \"bloom-filters\": \"^0.5.2\",\r\n \"chart.js\": \"^2.7.3\",\r\n \"core-js\": \"^2.5.4\",\r\n \"d3\": \"^5.7.0\",\r\n \"datatables.net\": \"^1.10.19\",\r\n \"datatables.net-dt\": \"^1.10.19\",\r\n \"echarts\": \"^4.2.0-rc.2\",\r\n \"js-sha256\": \"^0.9.0\",\r\n \"jssha\": \"^2.3.1\",\r\n \"ng2-charts\": \"^1.6.0\",\r\n \"ng2-pdf-viewer\": \"^5.2.3\",\r\n \"ng2-toastr\": \"^4.1.2\",\r\n \"ngx-echarts\": \"^4.1.0\",\r\n \"ngx-extended-pdf-viewer\": \"^0.9.14\",\r\n \"rxjs\": \"~6.3.3\",\r\n \"tslib\": \"^1.9.0\",\r\n \"zone.js\": \"~0.8.26\"\r\n },let filter = new BloomFilter(15, 0.01)\r\n \"devDependencies\": {\r\n \"@angular-devkit/build-angular\": \"~0.11.0\",\r\n \"@angular/cli\": \"~7.1.2\",\r\n \"@angular/compiler-cli\": \"~7.1.0\",\r\n \"@angular/language-service\": \"~7.1.0\",\r\n \"@schematics/angular\": \"~7.1.0\",\r\n \"@types/echarts\": \"^4.1.3\",\r\n \"@types/jasmine\": \"~2.8.8\",\r\n \"@types/jasminewd2\": \"~2.0.3\",\r\n \"@types/node\": \"^8.9.5\",\r\n \"codelyzer\": \"~4.5.0\",\r\n \"jasmine-core\": \"~2.99.1\",\r\n \"jasmine-spec-reporter\": \"~4.2.1\",\r\n \"karma\": \"~3.1.1\",\r\n \"karma-chrome-launcher\": \"~2.2.0\",\r\n \"karma-coverage-istanbul-reporter\": \"~2.0.1\",\r\n \"karma-jasmine\": \"~1.1.2\",\r\n \"karma-jasmine-html-reporter\": \"^0.2.2\",\r\n \"protractor\": \"~5.4.0\",\r\n \"ts-node\": \"~7.0.0\",\r\n \"tslint\": \"~5.11.0\",\r\n \"typescript\": \"~3.1.6\"\r\n }\r\n}\r\n\r\n\r\n**GOT the title error**\r\n\r\n\r\n\r\n**Solution might be\r\n1.** _[](https://webpack.js.org/guides/author-libraries/#expose-the-library)_\r\n2. how to import node npm module in angular project", "title": "ERROR TypeError: \"bloom_filters__WEBPACK_IMPORTED_MODULE_2__ is not a constructor\"", "type": "issue" }, { "action": "created", "author": "Callidon", "comment_id": 467791981, "datetime": 1551260190000, "masked_author": "username_1", "text": "You are not using the package like it should be used. The `bloom-filter` package exposes several data structures. Thus, with `import * as BloomFilter from 'bloom-filters'`, you are importing all of these structures and not the `BloomFilter` one.\r\n\r\nFuthermore, this is an issue related to your usage of Webpack, and not to this package.\r\n\r\nYou should follow the README more closely. The following code should work in your case.\r\n```javascript\r\n// only import the BllomFilter datastructure\r\nimport { BloomFilter } from 'bloom-filters'\r\n\r\nlet filter = new BloomFilter(15, 0.01)\r\n\r\n// alternatively, create a Bloom Filter from an array with 1% error rate\r\nfilter = BloomFilter.from([ 'alice', 'bob' ], 0.01)\r\n\r\n// add some value in the filter\r\nfilter.add('alice')\r\nfilter.add('bob')\r\n\r\n// lookup for some data\r\nconsole.log(filter.has('bob')) // output: true\r\nconsole.log(filter.has('daniel')) // output: false\r\n\r\n// print false positive rate (around 0.01)\r\nconsole.log(filter.rate())\r\n```", "title": null, "type": "comment" }, { "action": "closed", "author": "Callidon", "comment_id": null, "datetime": 1551270650000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
3
3,420
false
false
3,420
false
RedisGraph/spring-redisgraph
RedisGraph
578,965,241
6
{ "number": 6, "repo": "spring-redisgraph", "user_login": "RedisGraph" }
[ { "action": "created", "author": "gkorland", "comment_id": 597592943, "datetime": 1583928150000, "masked_author": "username_0", "text": "@username_1 do we need to release a new JRedisGraph first?", "title": null, "type": "comment" }, { "action": "created", "author": "DvirDukhan", "comment_id": 597714774, "datetime": 1583942040000, "masked_author": "username_1", "text": "@username_0 \r\nThere was an issue with Jedis dependency not propagated so it had to be included explicitly.\r\nLet's merge first, and then I'll try to remove it and use JRedisGraph to implicitly include it.", "title": null, "type": "comment" }, { "action": "created", "author": "gkorland", "comment_id": 597732457, "datetime": 1583943908000, "masked_author": "username_0", "text": "@username_1 I recall the issue, I just meant we need to make sure both have the same jedis version", "title": null, "type": "comment" } ]
4
5
2,159
false
true
357
true
pytorch/audio
pytorch
656,901,983
784
{ "number": 784, "repo": "audio", "user_login": "pytorch" }
[ { "action": "opened", "author": "mthrok", "comment_id": null, "datetime": 1594761139000, "masked_author": "username_0", "text": "Summary:\n- Import torchaudio.\n - Change test util module name from test_case_utils to case_utils\n\nDifferential Revision: D22261638", "title": "Import torchaudio 20200714 #782", "type": "issue" } ]
2
2
268
false
true
130
false
IntelRealSense/librealsense
IntelRealSense
612,944,317
6,351
null
[ { "action": "opened", "author": "LYKlyk", "comment_id": null, "datetime": 1588719420000, "masked_author": "username_0", "text": "| | |\r\n|---|---|\r\n|**librealsense**|2.34.0 RELEASE|\r\n|**OS**|Windows|\r\n\r\nPlease provide a description of the problem", "title": "Exception was thrown when inspecting Raw RGB Camera property Enable / disable auto-exposure", "type": "issue" }, { "action": "created", "author": "ev-mp", "comment_id": 624478539, "datetime": 1588748662000, "masked_author": "username_1", "text": "@username_0 , Please specify the camera type, FW version used and provide a screenshot or any other description of the problem.", "title": null, "type": "comment" }, { "action": "created", "author": "LYKlyk", "comment_id": 624997602, "datetime": 1588819663000, "masked_author": "username_0", "text": "My Os is Windows10, My device is Realsense SR300, I try to use \"Intel RealSense SDK Sample Browser\" (Hand Tracking for Windows* Release Notes (11.0.27.1404), https://software.intel.com/content/www/us/en/develop/articles/realsense-sdk-windows-eol.html) to get color/depth stream and hand skeleton. But the application is not work. When I use \"Raw Stream\" , I cannot get any frame. When I use \"Hands Viewer\", I always show \"Init Failed\".", "title": null, "type": "comment" }, { "action": "created", "author": "ev-mp", "comment_id": 664553055, "datetime": 1595873217000, "masked_author": "username_1", "text": "@username_0 , this warning mentioned in ticket's title is about the non-intel web or another UVC camera connected to PC. Can be ignored.\r\nhttps://github.com/IntelRealSense/librealsense/issues/6784#issuecomment-662108300\r\nduplicated in #6784", "title": null, "type": "comment" }, { "action": "created", "author": "ev-mp", "comment_id": 664562101, "datetime": 1595874282000, "masked_author": "username_1", "text": "The new wrapper functionalities are now part of the [v2.37.0 release](https://github.com/IntelRealSense/librealsense/wiki/Release-Notes#pre-release-2370)", "title": null, "type": "comment" }, { "action": "closed", "author": "ev-mp", "comment_id": null, "datetime": 1595874283000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" }, { "action": "reopened", "author": "ev-mp", "comment_id": null, "datetime": 1595874295000, "masked_author": "username_1", "text": "| | |\r\n|---|---|\r\n|**librealsense**|2.34.0 RELEASE|\r\n|**OS**|Windows|\r\n\r\nPlease provide a description of the problem", "title": "Exception was thrown when inspecting Raw RGB Camera property Enable / disable auto-exposure", "type": "issue" }, { "action": "created", "author": "ev-mp", "comment_id": 666266689, "datetime": 1596102498000, "masked_author": "username_1", "text": "@username_0 hello, to clarify -\r\nYou mention an issue with Intel RealSense SDK ((11.0.27.1404), which is a discontinued product as stated on the link. \r\nWhile at the ticket description you specify LRS v2.34.0, and also the message that appears in the ticket title is fired by Librealsense SDK (that I posted earlier)\r\n\r\nDo you need support with LRS v.2.34.0?", "title": null, "type": "comment" }, { "action": "created", "author": "RealSenseSupport", "comment_id": 668115938, "datetime": 1596471930000, "masked_author": "username_2", "text": "Hi @username_0 Do you need further help on this? If we don't hear from you in 7 days, this issue will be closed.", "title": null, "type": "comment" }, { "action": "closed", "author": "RealSenseCustomerSupport", "comment_id": null, "datetime": 1597420941000, "masked_author": "username_3", "text": "", "title": null, "type": "issue" } ]
4
10
1,642
false
false
1,642
true
DaedalusGame/Soot
null
481,485,511
103
null
[ { "action": "opened", "author": "Fireztonez", "comment_id": null, "datetime": 1565941265000, "masked_author": "username_0", "text": "Hello,\r\nI just craft a Burst Speader, and when you Left-Click on it with your hand, it will break directly, as fast of you can break a torch, but, you can't harvest without a pickaxe, so, you break and doesn't get back... I think the the block Hardness of the Ember Spreader is broken! And I think it should be nice to fixed that rapidly, if possible, because this is really anoying to loose something as expensive just because Left-click on it!\r\n\r\n**Version:**\r\nForge: 1.12.2 - 14.23.5.2838\r\nEmbers Rekindled: 1.13-hotfix2\r\nSoot: 1.6", "title": "Ember Spread Burst have no hardness", "type": "issue" }, { "action": "closed", "author": "DaedalusGame", "comment_id": null, "datetime": 1595411973000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
2
534
false
false
534
false
Nylle/JavaFixture
null
574,567,286
18
null
[ { "action": "opened", "author": "ilyakorneckis", "comment_id": null, "datetime": 1583231431000, "masked_author": "username_0", "text": "I get this error when trying to instantiate a spring-kafka interface `org.springframework.kafka.listener.MessageListenerContainer`\r\n\r\n```\r\ncom.github.nylle.javafixture.SpecimenException: Unsupported type: interface java.util.Collection\r\n\r\n\tat com.github.nylle.javafixture.specimen.CollectionSpecimen.createFromInterfaceType(CollectionSpecimen.java:133)\r\n\tat com.github.nylle.javafixture.specimen.CollectionSpecimen.create(CollectionSpecimen.java:76)\r\n\tat com.github.nylle.javafixture.specimen.InterfaceSpecimen$GenericInvocationHandler.lambda$invoke$0(InterfaceSpecimen.java:62)\r\n\tat java.base/java.util.HashMap.computeIfAbsent(HashMap.java:1133)\r\n\tat com.github.nylle.javafixture.specimen.InterfaceSpecimen$GenericInvocationHandler.invoke(InterfaceSpecimen.java:62)\r\n```", "title": "Error building MessageListenerContainer", "type": "issue" }, { "action": "created", "author": "Nylle", "comment_id": 594375439, "datetime": 1583308320000, "masked_author": "username_1", "text": "The underlying problem is the `Collection`-interface, which was simply forgotten. 😇", "title": null, "type": "comment" }, { "action": "created", "author": "Nylle", "comment_id": 594440423, "datetime": 1583317549000, "masked_author": "username_1", "text": "Fixed with release 1.2.4", "title": null, "type": "comment" }, { "action": "closed", "author": "Nylle", "comment_id": null, "datetime": 1583317554000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
4
878
false
false
878
false
fsprojects/Paket
fsprojects
520,236,526
3,704
null
[ { "action": "opened", "author": "apobekiaris", "comment_id": null, "datetime": 1573247622000, "masked_author": "username_0", "text": "I am manually creating Nuspec files and need to know which versions are resolved for each package. I tried the find-package-versions but I am not sure that this is what I want. i already paket installed so there is a lock file which contains my versions. How to correctly read it? or is any other way ?", "title": "Find resolved versions", "type": "issue" }, { "action": "created", "author": "apobekiaris", "comment_id": 552073832, "datetime": 1573283573000, "masked_author": "username_0", "text": "I guess I was looking for show-installed-packages", "title": null, "type": "comment" }, { "action": "closed", "author": "apobekiaris", "comment_id": null, "datetime": 1573283573000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
1
3
351
false
false
351
false
mgdm/Mosquitto-PHP
null
221,794,574
67
null
[ { "action": "opened", "author": "mattsches", "comment_id": null, "datetime": 1492170349000, "masked_author": "username_0", "text": "Can be mqttv31 or mqttv311. Defaults to mqttv31.\r\n\r\nI suppose `Mosquitto-PHP` makes use of the default protocol version and there is no way to set the version in the client code? Unfortunately my broker (Home Assistant built-in broker) requires `mqttv311` :(\r\n\r\nWill now try to set up my own custom broker using `Mosquitto` and integrate it into my Home Assistant setup, but it would be nice to be able to set the version in my client script.", "title": "Option to set the version of the MQTT protocol", "type": "issue" }, { "action": "created", "author": "mgdm", "comment_id": 294221204, "datetime": 1492198615000, "masked_author": "username_1", "text": "I didn't realise that was possible, though I've just had a look into the library code and can see how it's done now:\r\n\r\nhttps://github.com/eclipse/mosquitto/blob/master/lib/mosquitto.h#L947\r\n\r\n I'll give it a go in the next couple of days, I don't have a lot of time right at this moment.", "title": null, "type": "comment" }, { "action": "created", "author": "mattsches", "comment_id": 294315023, "datetime": 1492286740000, "masked_author": "username_0", "text": "Thanks, no hurry! I got it to work by configuring the broker to accept 3.1.", "title": null, "type": "comment" }, { "action": "created", "author": "mgdm", "comment_id": 294359685, "datetime": 1492358946000, "masked_author": "username_1", "text": "Hi, I've had a go at it now, can you give the patch in https://github.com/username_1/Mosquitto-PHP/pull/68 a go and let me know how you get on?", "title": null, "type": "comment" }, { "action": "created", "author": "mattsches", "comment_id": 299645430, "datetime": 1494082866000, "masked_author": "username_0", "text": "Finally found the time to check out your branch and test it against the embedded MQTT broker of Home Assistant.\r\n\r\nI can confirm that setting the protocol works, and that it makes a difference on the broker side.\r\n\r\nThe following does NOT work against the broker:\r\n```php\r\n$c = new \\Mosquitto\\Client();\r\n$c->setProtocolVersion(\\Mosquitto\\ProtocolVersion::V31);\r\n...\r\n```\r\nwhile this works:\r\n```php\r\n$c = new \\Mosquitto\\Client();\r\n$c->setProtocolVersion(\\Mosquitto\\ProtocolVersion::V311);\r\n...\r\n```\r\n\r\nTo sum it up: Your patch works as expected :smile:", "title": null, "type": "comment" }, { "action": "closed", "author": "mgdm", "comment_id": null, "datetime": 1494273807000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
6
1,493
false
false
1,493
true
sabbelasichon/typo3-rector
null
517,371,171
391
null
[ { "action": "opened", "author": "sabbelasichon", "comment_id": null, "datetime": 1572897819000, "masked_author": "username_0", "text": "Breaking: #72427 - Removed TypoScript-related methods and properties\n\n\nhttps://docs.typo3.org/c/typo3/cms-core/master/en-us/Changelog/8.0/Breaking-72427-RemovedTypoScript-relatedMethodsAndProperties.html\n\n\n\n.. include:: ../../Includes.txt\n\n\n\n====================================================================\n\nBreaking: #72427 - Removed TypoScript-related methods and properties\n\n====================================================================\n\n\n\nSee :issue:`72427`\n\n\n\nDescription\n\n===========\n\n\n\nThe following methods and properties have been removed:\n\n\n\n* `TYPO3\\CMS\\Core\\TypoScript\\ConfigurationForm::ext_getKeyImage()`\n\n* `TYPO3\\CMS\\Core\\TypoScript\\ExtendedTemplateService::ext_noSpecialCharsOnLabels`\n\n* `TYPO3\\CMS\\Core\\TypoScript\\ExtendedTemplateService::makeHtmlspecialchars()`\n\n* `TYPO3\\CMS\\Core\\TypoScript\\ExtendedTemplateService::ext_getKeyImage()`\n\n* `TYPO3\\CMS\\Core\\TypoScript\\TemplateService::tempPath`\n\n* `TYPO3\\CMS\\Core\\TypoScript\\TemplateService::wrap()`\n\n* `TYPO3\\CMS\\T3editor\\T3editor::isEnabled()`\n\n* `TYPO3\\CMS\\Tstemplate\\Controller\\TypoScriptTemplateObjectBrowserModuleFunctionController::verify_TSobjects()`\n\n\n\nThe TypoScript conditions \"browser\", \"version\", \"device\", \"system\" and \"useragent\" have been removed.\n\n\n\n\n\nImpact\n\n======\n\n\n\nCalling the methods above will result in a PHP fatal error.\n\n\n\nUsing the removed TypoScript conditions will have no effect anymore.\n\n\n\n.. index:: PHP-API, TypoScript", "title": "Breaking: #72427 - Removed TypoScript-related methods and properties\n", "type": "issue" }, { "action": "closed", "author": "sabbelasichon", "comment_id": null, "datetime": 1578519231000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
1
2
1,430
false
false
1,430
false
kaiyuanshe/open-source-articles
kaiyuanshe
446,403,125
65
null
[ { "action": "opened", "author": "ch-shumin", "comment_id": null, "datetime": 1558410338000, "masked_author": "username_0", "text": "https://shimo.im/docs/CmxwseqKysEpqfsQ\r\n翻译整篇文章", "title": "LF Statement Regarding Huawei Entity List Ruling", "type": "issue" }, { "action": "created", "author": "cynbarby", "comment_id": 494240662, "datetime": 1558415041000, "masked_author": "username_1", "text": "已认领。", "title": null, "type": "comment" }, { "action": "created", "author": "cynbarby", "comment_id": 494240749, "datetime": 1558415074000, "masked_author": "username_1", "text": "翻译链接:https://shimo.im/docs/PzdkyBYboEKT0A6g", "title": null, "type": "comment" }, { "action": "created", "author": "tedliu1", "comment_id": 494683442, "datetime": 1558509440000, "masked_author": "username_2", "text": "Published. \r\n权威答复:Linux基金会的回信来了!\r\nhttps://mp.weixin.qq.com/s/UGpdQItcwPACe2k-rGSUuA", "title": null, "type": "comment" }, { "action": "closed", "author": "tedliu1", "comment_id": null, "datetime": 1558509721000, "masked_author": "username_2", "text": "", "title": null, "type": "issue" } ]
3
5
176
false
false
176
false
ArslanM786/markdown-portfolio
null
645,111,103
1
null
[ { "action": "created", "author": "ArslanM786", "comment_id": 649217745, "datetime": 1593060922000, "masked_author": "username_0", "text": "- [ ] Turn on GitHub Pages\r\n- [ ] Outline my portfolio\r\n- [ ] Introduce myself to the world", "title": null, "type": "comment" }, { "action": "created", "author": "ArslanM786", "comment_id": 649217976, "datetime": 1593060966000, "masked_author": "username_0", "text": "- [ ] Turn on GitHub Pages\r\n- [ ] Outline my portfolio\r\n- [ ] Introduce myself to the world", "title": null, "type": "comment" } ]
2
7
1,948
false
true
182
false
softwareguru/airflowsummit-website
softwareguru
567,876,651
5
null
[ { "action": "opened", "author": "pedrogk", "comment_id": null, "datetime": 1582149899000, "masked_author": "username_0", "text": "add the venue description from the sponsorship prospectus. \r\n\r\nWorkshops will be hosted in Google MTV offices near CHM, and walking distance to the Google Store and Android Statue Garden!\r\nAddress: 1883 Landings dr, Mountain View, CA 94043", "title": "Add venue description from Prospectus.", "type": "issue" }, { "action": "closed", "author": "pedrogk", "comment_id": null, "datetime": 1582229327000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
1
2
239
false
false
239
false
SCIInstitute/ShapeWorks
SCIInstitute
567,779,240
377
{ "number": 377, "repo": "ShapeWorks", "user_login": "SCIInstitute" }
[ { "action": "opened", "author": "medakk", "comment_id": null, "datetime": 1582139125000, "masked_author": "username_0", "text": "I mistakenly pushed a change I made while testing something out. This reverts that change.", "title": "Revert changes made in itkParticleShapeStatistics", "type": "issue" }, { "action": "created", "author": "akenmorris", "comment_id": 588419599, "datetime": 1582142331000, "masked_author": "username_1", "text": "This is failing on windows due to this issue:\r\n\r\nhttps://github.com/SCIInstitute/ShapeWorks/pull/378\r\n\r\nStandby to see if that fixes it.", "title": null, "type": "comment" } ]
2
2
226
false
false
226
false
DMPRoadmap/roadmap
DMPRoadmap
604,256,107
2,468
null
[ { "action": "opened", "author": "briri", "comment_id": null, "datetime": 1587500040000, "masked_author": "username_0", "text": "Make sure all controllers are using strong parameters\r\n\r\nhttps://edgeapi.rubyonrails.org/classes/ActionController/StrongParameters.html\r\n\r\n**Related**: It may be necessary to move some params into the context of the form. For example if the params come in as `{ org: { name: \"foo\", abbreviation: \"bar\" }, links: [\"url\"] }` it may be necessary to move `links` into the form so that it's within the `org`. If this is necessary, update the controller to handle the shift and if possible use `accepts_nested_attributes_for`", "title": "Ensure all controllers are using strong parameters", "type": "issue" }, { "action": "closed", "author": "briri", "comment_id": null, "datetime": 1594393865000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
1
2
520
false
false
520
false
VKoskiv/c-ray
null
633,278,591
71
{ "number": 71, "repo": "c-ray", "user_login": "VKoskiv" }
[ { "action": "opened", "author": "madmann91", "comment_id": null, "datetime": 1591525577000, "masked_author": "username_0", "text": "This PR implements a Binned SAH BVH builder, based on \"On fast Construction of SAH-based Bounding Volume Hierarchies\", by I. Wald. The existing Kd-tree/BVH implementation has been kept intact for comparison purposes. It can be enabled again by defining the preprocessor symbol `OLD_KD_TREE`.\r\n\r\nI have only the provided test scene to measure performance, and I cannot really tell if there's a measurable performance improvement because:\r\n\r\n - More than 40% of the time is spent in small functions like `vecSub`. Ray traversal is only 4% of the execution time. Thus, even if this made traversal infinitely faster, not much of an improvement would be visible. This is due to the way you organized your code, as most of those small functions are in separate compilation units and unavailable for the inliner. You have basically two options to fix this problem: Use LTO (on my machine it multiplies performance by almost 3), or move these small functions their respective header file with the `static inline` qualifiers to avoid linking problems (I would recommend going that route, as it gives you more control over what is inlined and what isn't, and doesn't blow up your compilation times).\r\nTo enable LTO, you can bump your CMake requirement to something more modern (e.g. 3.4) and use the following:\r\n```set_property(TARGET c-ray PROPERTY INTERPROCEDURAL_OPTIMIZATION TRUE)```\r\nNote that this _will not_ work on old CMake versions (e.g. 2.8 will not enable LTO for gcc). If you want to use LTO but stick to an old CMake version, you need to append `-flto` to both the linker and compiler flags for gcc (old versions of gcc might not support LTO).\r\n\r\n - The second problem is that the test scene you provide has around 10 meshes that each have their own BVH, but have all to be traversed sequentially, completely nullifying the benefit of using an acceleration data structure altogether. I recommend to either merge those meshes, or to build a top-level BVH that has per-mesh BVHs as leaves. The code in this PR is designed to be able to do that, as only bounding boxes and centers are required to build a BVH (so it works for any primitive type, including other BVHs).\r\n\r\nFinally, there's a large optimization potential that's not taken advantage of, namely early exit for shadow rays. For that, I have added a `TODO` that suggests to add a `tMin` and `tMax` to your rays, so that you can actually cull nodes more efficiently during traversal (because shadow rays can exit the traversal loop early, upon the first intersection found in the given `[tMin, tMax]` range). This in general gives a 20% performance boost when implemented correctly. This PR does not implement this feature, as it would break the compatibility with the existing acceleration data structure.", "title": "Binned SAH BVH builder", "type": "issue" }, { "action": "created", "author": "VKoskiv", "comment_id": 640244064, "datetime": 1591547272000, "masked_author": "username_1", "text": "This is so cool! I'm evaluating it right now, I'll post my comments shortly. Looking great at first glance!", "title": null, "type": "comment" }, { "action": "created", "author": "VKoskiv", "comment_id": 640247415, "datetime": 1591548748000, "masked_author": "username_1", "text": "Okay, I'm speechless here. I just quickly threw in the `INTERPROCEDURAL_OPTIMIZATION` flag to my `CMakeLists.txt` to test it out, and **what**? The `hdr.json` scene rendered 60% faster than ever before.\r\nI *had* tried adding `-flto` to the **linker** flags before, resulting in a slightly smaller binary, but this is just an incredible boost in performance from such a small change.\r\n\r\nI'm still exploring this PR, but I can already tell you you've made my year with this. I am ecstatic!", "title": null, "type": "comment" }, { "action": "created", "author": "VKoskiv", "comment_id": 640256828, "datetime": 1591553088000, "masked_author": "username_1", "text": "You are more than welcome to implement this, changing the existing data structures as you see fit.\r\n\r\nI'd love to know which tools you used for profiling as well. I've used the sampling profiler that comes with Xcode (built on DTrace), but apparently I wasn't that good at interpreting the results, as I had no idea it was as bad as you've shown it to be. 😄 \r\nI think I just failed to identify the massive amount of function call overhead.\r\n\r\nI think the plan going forward would be something like this:\r\n\r\n- For now, I'll tweak the `CMakeLists.txt` file to require `v2.9` and set the `INTERPROCEDURAL_OPTIMIZATION` flag as a stopgap until the heavy functions are inlined in code. As is, just adding that flag boosts performance by ~60% while only slightly increasing build times.\r\n- Remove the old KD-tree implementation. It's much slower than your BVH implementation, so I don't see a reason to preserve it beyond just comparing the performance. We can just checkout an older version to compare performance going forward.\r\n- Implement early exit for shadow rays\r\n\r\nWhat an incredible PR, thanks so much for helping out!", "title": null, "type": "comment" }, { "action": "created", "author": "VKoskiv", "comment_id": 640258248, "datetime": 1591553771000, "masked_author": "username_1", "text": "@username_0 If it's okay by you, I would like to tag you in the README as a contributor.", "title": null, "type": "comment" }, { "action": "created", "author": "madmann91", "comment_id": 640258862, "datetime": 1591553993000, "masked_author": "username_0", "text": "I use `perf` for profiling. It's pretty low-level, but it can perform sampling and can return statistics for cache misses, number of instructions executed, and so on. It's also not intrusive, and has very little overhead, compared to other approaches like `gprof`. To sample an executable, use `perf record <prog> <args>` (where `prog` and `args` are the program name and its command line arguments, respectively), and to show the result use `perf report`. To get statistics, use `perf stat <prog> <args>`. You might want to compile in `RelWithDebInfo` to get valuable annotations in the `perf` report, otherwise you'll only see assembly without line info.\r\n\r\nThank you for the attribution request, I'm fine with it. In any case it's going to be visible on GitHub's contributors page.", "title": null, "type": "comment" }, { "action": "created", "author": "madmann91", "comment_id": 640262060, "datetime": 1591555481000, "masked_author": "username_0", "text": "I'd be curious to know what is the performance difference between the new BVH implementation and the old one on more complicated scenes. Do you have some figures? And maybe also, do you have any complicated (ideally only one mesh, but highly tessellated and with a non-uniform primitive distribution, like e.g. Sponza) test scene that I could play around with?", "title": null, "type": "comment" }, { "action": "created", "author": "VKoskiv", "comment_id": 640270816, "datetime": 1591559634000, "masked_author": "username_1", "text": "@username_0 I'll do a lot more testing in the coming days. The most complex scene I have right now is the stormtrooper scene that you see in the readme, but that one also has the meshes separate, and no top-level acceleration structure of course. So I guess that feature is what should be tackled next.\r\nYou can download the stormtrooper scene [here](https://vkoskiv.com/c-ray/releases/troopers.zip) if you want. And if you do end up making changes to scenes, or new scenes, then use the `scripts/bundler.py` to package them up like that zip in the download link.\r\nI'll keep you posted on the performance metrics I measure once I have them.", "title": null, "type": "comment" }, { "action": "created", "author": "lycium", "comment_id": 640299214, "datetime": 1591574302000, "masked_author": "username_2", "text": "I'm also blown away by your generosity here, @username_0! Checked out your bvh project, it looks very impressive :)", "title": null, "type": "comment" }, { "action": "created", "author": "madmann91", "comment_id": 640600982, "datetime": 1591622705000, "masked_author": "username_0", "text": "@username_2 Thank you! It's not much really. This project looked interesting, so I thought I'd just contribute a bit.", "title": null, "type": "comment" } ]
3
10
6,582
false
false
6,582
true
jlippold/tweakCompatible
null
628,842,834
126,514
null
[ { "action": "opened", "author": "bernaction", "comment_id": null, "datetime": 1591063320000, "masked_author": "username_0", "text": "```\r\n{\r\n \"packageId\": \"com.dpkg.arkrome\",\r\n \"action\": \"working\",\r\n \"userInfo\": {\r\n \"arch32\": false,\r\n \"packageId\": \"com.dpkg.arkrome\",\r\n \"deviceId\": \"iPhone10,6\",\r\n \"url\": \"http://cydia.saurik.com/package/com.dpkg.arkrome/\",\r\n \"iOSVersion\": \"13.5.1\",\r\n \"packageVersionIndexed\": true,\r\n \"packageName\": \"Arkrome\",\r\n \"category\": \"Tweaks\",\r\n \"repository\": \"BigBoss\",\r\n \"name\": \"Arkrome\",\r\n \"installed\": \"1.012\",\r\n \"packageIndexed\": true,\r\n \"packageStatusExplaination\": \"A matching version of this tweak for this iOS version could not be found. Please submit a review if you choose to install.\",\r\n \"id\": \"com.dpkg.arkrome\",\r\n \"commercial\": false,\r\n \"packageInstalled\": true,\r\n \"tweakCompatVersion\": \"0.1.5\",\r\n \"shortDescription\": \"Shows percentage inside battery icon.\",\r\n \"latest\": \"1.012\",\r\n \"author\": \"dpkg_\",\r\n \"packageStatus\": \"Unknown\"\r\n },\r\n \"base64\": \"eyJhcmNoMzIiOmZhbHNlLCJwYWNrYWdlSWQiOiJjb20uZHBrZy5hcmtyb21lIiwiZGV2aWNlSWQiOiJpUGhvbmUxMCw2IiwidXJsIjoiaHR0cDpcL1wvY3lkaWEuc2F1cmlrLmNvbVwvcGFja2FnZVwvY29tLmRwa2cuYXJrcm9tZVwvIiwiaU9TVmVyc2lvbiI6IjEzLjUuMSIsInBhY2thZ2VWZXJzaW9uSW5kZXhlZCI6dHJ1ZSwicGFja2FnZU5hbWUiOiJBcmtyb21lIiwiY2F0ZWdvcnkiOiJUd2Vha3MiLCJyZXBvc2l0b3J5IjoiQmlnQm9zcyIsIm5hbWUiOiJBcmtyb21lIiwiaW5zdGFsbGVkIjoiMS4wMTIiLCJwYWNrYWdlSW5kZXhlZCI6dHJ1ZSwicGFja2FnZVN0YXR1c0V4cGxhaW5hdGlvbiI6IkEgbWF0Y2hpbmcgdmVyc2lvbiBvZiB0aGlzIHR3ZWFrIGZvciB0aGlzIGlPUyB2ZXJzaW9uIGNvdWxkIG5vdCBiZSBmb3VuZC4gUGxlYXNlIHN1Ym1pdCBhIHJldmlldyBpZiB5b3UgY2hvb3NlIHRvIGluc3RhbGwuIiwiaWQiOiJjb20uZHBrZy5hcmtyb21lIiwiY29tbWVyY2lhbCI6ZmFsc2UsInBhY2thZ2VJbnN0YWxsZWQiOnRydWUsInR3ZWFrQ29tcGF0VmVyc2lvbiI6IjAuMS41Iiwic2hvcnREZXNjcmlwdGlvbiI6IlNob3dzIHBlcmNlbnRhZ2UgaW5zaWRlIGJhdHRlcnkgaWNvbi4iLCJsYXRlc3QiOiIxLjAxMiIsImF1dGhvciI6ImRwa2dfIiwicGFja2FnZVN0YXR1cyI6IlVua25vd24ifQ==\",\r\n \"chosenStatus\": \"working\",\r\n \"notes\": \"\"\r\n}\r\n```", "title": "`Arkrome` working on iOS 13.5.1", "type": "issue" }, { "action": "closed", "author": "jlippold", "comment_id": null, "datetime": 1591065780000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
3
3
2,128
false
true
1,886
false
p1nkun1c0rns/awesomeness
p1nkun1c0rns
641,973,042
201
null
[ { "action": "opened", "author": "steinbrueckri", "comment_id": null, "datetime": 1592573622000, "masked_author": "username_0", "text": "# Popeye - A Kubernetes Cluster Sanitizer \r\n\r\n## Description\r\nPopeye is a utility that scans live Kubernetes cluster and reports potential issues with deployed resources and configurations. It sanitizes your cluster based on what's deployed and not what's sitting on disk. By scanning your cluster, it detects misconfigurations and helps you to ensure that best practices are in place, thus preventing future headaches. It aims at reducing the cognitive overload one faces when operating a Kubernetes cluster in the wild. Furthermore, if your cluster employs a metric-server, it reports potential resources over/under allocations and attempts to warn you should your cluster run out of capacity.\r\n\r\nPopeye is a readonly tool, it does not alter any of your Kubernetes resources in any way!\r\n\r\n## Exmaple\r\n![image](https://github.com/derailed/popeye/raw/master/assets/a_score.png)\r\n\r\n## Links\r\nhttps://github.com/derailed/popeye", "title": "Popeye - A Kubernetes Cluster Sanitizer", "type": "issue" }, { "action": "closed", "author": "steinbrueckri", "comment_id": null, "datetime": 1594222120000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
2
3
1,315
false
true
926
false
OpenMS/OpenMS
OpenMS
547,534,487
4,461
null
[ { "action": "opened", "author": "bernt-matthias", "comment_id": null, "datetime": 1578582307000, "masked_author": "username_0", "text": "The test defined here: https://github.com/OpenMS/OpenMS/blob/735441decb37d3d4501b682e45ac83d767b803f4/src/tests/topp/CMakeLists.txt#L267\r\n\r\nfails with:\r\n\r\n```\r\nAbort reasons during feature construction:\r\n- Invalid fit: Fitted model is bigger than 'max_rt_span': 1\r\n```\r\n\r\nthe ini file actually defines 'max_rt_span': 2.5\r\n\r\nSeems to be again due to an outdated ini file:\r\n\r\n```\r\nWarning: Parameters file version (1.8.0) does not match the version of this tool (2.4.0-HEAD-2018-10-26).\r\nYour current parameters are still valid, but there might be new valid values or even new parameters. Upgrading the INI might be useful.\r\n```\r\n\r\nLittle bit of background. For the CTD -> Galaxy tool converter I auto-extract tests for the Galaxy tools from the command line in the CMakeFile and the used ini-files. I understand that OpenMS tries to locate the parameters even if the CTD structure is wrong, my test generation scheme can not do this. Hence I observe differences in the results (in this case in some minor digits of some floating point numbers).", "title": "FeatureFinderCentroided tests ", "type": "issue" }, { "action": "created", "author": "jpfeuffer", "comment_id": 572700196, "datetime": 1578595785000, "masked_author": "username_1", "text": "Can you elaborate? Why exactky do you think it does not honor max_rt_span?", "title": null, "type": "comment" }, { "action": "created", "author": "bernt-matthias", "comment_id": 572706672, "datetime": 1578596649000, "masked_author": "username_0", "text": "Because of the output `Invalid fit: Fitted model is bigger than 'max_rt_span': 1`.. But the ini file sets 2.5.", "title": null, "type": "comment" }, { "action": "created", "author": "bernt-matthias", "comment_id": 572707911, "datetime": 1578596837000, "masked_author": "username_0", "text": "Odd. `-debug 3` shows `\"feature|max_rt_span\" -> \"2.5\" (Maximum RT span in relation to extended area that the model is allowed to have.)` .. then I guess I just mis-interpret the output.", "title": null, "type": "comment" }, { "action": "created", "author": "cbielow", "comment_id": 572919841, "datetime": 1578643533000, "masked_author": "username_2", "text": "the `: 1` just says that this happened once. This number simply depends on the dataset (and parameters).", "title": null, "type": "comment" }, { "action": "created", "author": "cbielow", "comment_id": 572921044, "datetime": 1578643763000, "masked_author": "username_2", "text": "This probably not caused by parameters, but simply by platform. To compare results we use the FuzzyDiff tool (and so should you, I guess).", "title": null, "type": "comment" }, { "action": "closed", "author": "cbielow", "comment_id": null, "datetime": 1578643799000, "masked_author": "username_2", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "cbielow", "comment_id": 572921242, "datetime": 1578643799000, "masked_author": "username_2", "text": "closing, feel free to open if anything remains unclear.", "title": null, "type": "comment" } ]
3
8
1,709
false
false
1,709
false
MyCryptoHQ/MyCrypto
MyCryptoHQ
703,620,648
3,528
{ "number": 3528, "repo": "MyCrypto", "user_login": "MyCryptoHQ" }
[ { "action": "opened", "author": "FrederikBolding", "comment_id": null, "datetime": 1600351405000, "masked_author": "username_0", "text": "- [x] Initial refactor\r\n- [x] Fix bug with requesting signing after unmount\r\n- [ ] Fix issue with changing networks", "title": "[WIP] Refactor Web3 Signer + Bug fixes", "type": "issue" }, { "action": "created", "author": "FrederikBolding", "comment_id": 694785916, "datetime": 1600424404000, "masked_author": "username_0", "text": "[ch6391]", "title": null, "type": "comment" }, { "action": "created", "author": "blurpesec", "comment_id": 696395635, "datetime": 1600724797000, "masked_author": "username_1", "text": "@username_0 can you fix this issue here too? :)\r\n![image](https://user-images.githubusercontent.com/29407814/93824985-3b731080-fc19-11ea-99bd-bf1d844959e7.png)", "title": null, "type": "comment" } ]
4
5
354
false
true
287
true
mapbox/ecs-watchbot
mapbox
612,196,075
336
{ "number": 336, "repo": "ecs-watchbot", "user_login": "mapbox" }
[ { "action": "opened", "author": "hcourt", "comment_id": null, "datetime": 1588629569000, "masked_author": "username_0", "text": "For https://github.com/mapbox/ecs-watchbot/issues/335 and https://github.com/mapbox/ecs-watchbot/issues/274.\r\n\r\nAdds cwlogs and cli-spinner as full dependencies, since they are used in the CLI.\r\n\r\ncc/ @mapbox/developer-tools", "title": "Include cwlogs and cli-spinner as dependencies", "type": "issue" }, { "action": "created", "author": "hcourt", "comment_id": 623742334, "datetime": 1588631491000, "masked_author": "username_0", "text": "Closing in favor of https://github.com/mapbox/ecs-watchbot/pull/337", "title": null, "type": "comment" } ]
1
2
291
false
false
291
false
serenity-bdd/serenity-core
serenity-bdd
662,212,176
2,179
{ "number": 2179, "repo": "serenity-core", "user_login": "serenity-bdd" }
[ { "action": "opened", "author": "shinusuresh", "comment_id": null, "datetime": 1595275589000, "masked_author": "username_0", "text": "If there are multiple custom filters in the request, then serenity report is missing the REST query.\r\n```\r\ngiven()\r\n .baseUri(\"http://…\")\r\n .filters(Arrays.asList(new FirstFilter(), new SecondFilter()))\r\n```\r\nSupport for a single filter is part of #1175, and this PR adds support for multiple filters", "title": "feat: Accept multiple custom filters in request", "type": "issue" }, { "action": "created", "author": "shinusuresh", "comment_id": 662330187, "datetime": 1595407899000, "masked_author": "username_0", "text": "Hi @wakaleo, just see that the checks are failed. Anything which I can check?", "title": null, "type": "comment" }, { "action": "created", "author": "shinusuresh", "comment_id": 664926418, "datetime": 1595929189000, "masked_author": "username_0", "text": "Thanks @wakaleo for accepting the PR.\r\nWhen will this be released?", "title": null, "type": "comment" } ]
1
3
445
false
false
445
false
smallrye/smallrye-health
smallrye
655,600,513
135
{ "number": 135, "repo": "smallrye-health", "user_login": "smallrye" }
[ { "action": "created", "author": "xstefank", "comment_id": 658635184, "datetime": 1594802786000, "masked_author": "username_0", "text": "@dependabot-bot rebase", "title": null, "type": "comment" } ]
2
2
8,953
false
true
22
false
theparanoids/ashirt
theparanoids
715,912,869
62
null
[ { "action": "opened", "author": "jrozner", "comment_id": null, "datetime": 1602008361000, "masked_author": "username_0", "text": "Currently running ashirt for the first time on MacOS causes the warning dialog to pop up because it's not signed and requires the extra step to even get it to run. We should be signing and notarizing our official (and maybe dev) releases that are available on github. It probably makes sense to backport the implementation of this to any previous supported releases aside from just pushing into the main branch for future releases and tag point releases for all supported major.minor.\r\n\r\nNote: This is blocked on getting an Apple developer account. Need to look into whether we're going to one of Verizon Media's existing accounts, create a new one for ashirt, or I'll just register one for the project.", "title": "Application signing + notarization for MacOS", "type": "issue" }, { "action": "closed", "author": "jkennedyvz", "comment_id": null, "datetime": 1614127719000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
2
703
false
false
703
false
microsoft/winget-pkgs
microsoft
674,217,104
2,921
{ "number": 2921, "repo": "winget-pkgs", "user_login": "microsoft" }
[ { "action": "opened", "author": "OfficialEsco", "comment_id": null, "datetime": 1596710768000, "masked_author": "username_0", "text": "- [X] Have you signed the [Contributor License Agreement](https://cla.opensource.microsoft.com/microsoft/winget-pkgs)?\r\n- [X] Have you checked that there aren't other open [pull requests](https://github.com/microsoft/winget-pkgs/pulls) for the same manifest update/change?\r\n- [X] Have you validated your manifest locally with `winget validate <manifest>`, where `<manifest>` is the name of the manifest you're submitting?\r\n- [X] Have you tested your manifest locally with `winget install -m <manifest>`?\r\n\r\n-----", "title": "Plex for Windows v1.16.0.1364", "type": "issue" }, { "action": "created", "author": "KevinLaMS", "comment_id": 670250049, "datetime": 1596758749000, "masked_author": "username_1", "text": "![image](https://user-images.githubusercontent.com/2146880/89594579-106a6400-d807-11ea-9603-8b28f4ea476a.png)", "title": null, "type": "comment" }, { "action": "created", "author": "OfficialEsco", "comment_id": 670329164, "datetime": 1596777931000, "masked_author": "username_0", "text": "Oh i didn't notice, but it seems like the exe installs whatever you need to run it\r\n![image](https://user-images.githubusercontent.com/15158490/89611745-397a0b80-d87e-11ea-953d-1184bca2284b.png)\r\n\r\nAlso remember this installs with error 1223\r\nhttps://github.com/microsoft/winget-pkgs/pull/2588\r\nhttps://github.com/microsoft/winget-pkgs/pull/2511", "title": null, "type": "comment" }, { "action": "created", "author": "OfficialEsco", "comment_id": 821799352, "datetime": 1618653700000, "masked_author": "username_0", "text": "Fixed with #10854", "title": null, "type": "comment" } ]
5
8
1,462
false
true
983
false
aspnetboilerplate/aspnetboilerplate
aspnetboilerplate
311,523,185
3,254
null
[ { "action": "opened", "author": "ismcagdas", "comment_id": null, "datetime": 1522918176000, "masked_author": "username_0", "text": "For the below example, DomainTenantResolveContributor cannot extract the tenancyName from url.\r\n\r\nDomain format\r\n`http://{TENANCY_NAME}.mysite.com/host`\r\n\r\nused url\r\n`http://default.mysite.com/host`", "title": "DomainTenantResolveContributor cannot find tenancyName when virtual path is used", "type": "issue" }, { "action": "closed", "author": "hikalkan", "comment_id": null, "datetime": 1523088742000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
2
198
false
false
198
false
fapi-cz/fapi-client
fapi-cz
587,913,115
17
null
[ { "action": "opened", "author": "nocturne32", "comment_id": null, "datetime": 1585161927000, "masked_author": "username_0", "text": "To my knowledge, there is no easy way to validate discount codes with this endpoint: https://web.fapi.cz/api-doc/#api-DiscountCodes-IsValidDiscountCode", "title": "DiscountCode validation endpoint", "type": "issue" }, { "action": "created", "author": "slischka", "comment_id": 604257493, "datetime": 1585204755000, "masked_author": "username_1", "text": "Hello, you mean that the endpoint IsValidDiscountCode missing ?", "title": null, "type": "comment" }, { "action": "created", "author": "nocturne32", "comment_id": 604263702, "datetime": 1585205968000, "masked_author": "username_0", "text": "Yes, but I am not sure if that is intended though. The only actions available are find, findAll, create, update, delete.", "title": null, "type": "comment" }, { "action": "created", "author": "slischka", "comment_id": 604264004, "datetime": 1585206026000, "masked_author": "username_1", "text": "No it is not intended :) I will try to add it today", "title": null, "type": "comment" }, { "action": "closed", "author": "slischka", "comment_id": null, "datetime": 1585209145000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "slischka", "comment_id": 604284671, "datetime": 1585209593000, "masked_author": "username_1", "text": "new version released", "title": null, "type": "comment" } ]
2
6
405
false
false
405
false
ministryofjustice/cloud-platform
ministryofjustice
641,312,059
1,988
null
[ { "action": "opened", "author": "timharrison-moj", "comment_id": null, "datetime": 1592494433000, "masked_author": "username_0", "text": "## Service name\r\nmanage-soc-cases-dev\r\n\r\n<!--- Full name or acronym -->\r\nManage Serious Organised Crime Cases\r\n\r\n## Service environment\r\n\r\n- [ X] Dev / Development\r\n\r\nThis service will be present in development for several weeks before we create a preprod or prod environment in Cloud Platform. At present we are going with the plan of having a separate DNS zone for each environment, but as a result of an ongoing conversation between the TAs, this might change if a suitable domain can be decided upon for services which span the prison and probation areas.\r\n\r\n## Impact on the service\r\n\r\nThis is a new service created in development this week and requires its DNS zone setup to be completed. I've created the route53 entry in the cloud-platform-environments repo, and the team now require access in development to see and demo the service.\r\n\r\n## Problem description\r\n\r\nThis was the guidance from the link provided :\r\n\r\n\"Once the zone is created, you will need to setup the necessary name server (NS) records in the parent DNS zone, before you’re able to use it. For more information on how this delegation method works, you can read about authoritative name servers in this\"\r\n\r\n\r\n## Contact person\r\n\r\nEmail: tim.harrison@digitial.justice.gov.uk\r\n\r\nSlack: timharrison114", "title": "Create the NS records for manage-soc-cases-dev.service.justice.gov.uk please", "type": "issue" }, { "action": "closed", "author": "digitalronin", "comment_id": null, "datetime": 1592496675000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "digitalronin", "comment_id": 646131179, "datetime": 1592496675000, "masked_author": "username_1", "text": "Done.", "title": null, "type": "comment" }, { "action": "created", "author": "timharrison-moj", "comment_id": 646135880, "datetime": 1592497011000, "masked_author": "username_0", "text": "Thanks, appreciate the quick turnaround.", "title": null, "type": "comment" } ]
2
4
1,318
false
false
1,318
false
ManageIQ/manageiq-api
ManageIQ
715,516,343
906
null
[ { "action": "opened", "author": "skateman", "comment_id": null, "datetime": 1601977654000, "masked_author": "username_0", "text": "We have this feature already implemented for providers using `assign_nested_authentication` and this could be something similar. There are no endpoints assigned to the hosts, so it will be a little bit simpler. Most of the changes would be in the core, but as it changes the behavior of the API, I think the issue belongs here. \r\n\r\nThe current implementation is bumping into the same error as the [zone](https://github.com/ManageIQ/manageiq-api/issues/898) endpoint.\r\n\r\n@miq-bot add_label question\r\n@Fryguy @abellotti @agrare", "title": "Allow the editing of authentications for a host", "type": "issue" }, { "action": "created", "author": "NickLaMuro", "comment_id": 763795899, "datetime": 1611162608000, "masked_author": "username_1", "text": "Just want to put this here for reference that general practice that we want to go with is being worked out and discussed in https://github.com/ManageIQ/manageiq-api/pull/916 so that PR should dictate how we decide to implement this feature, and that might not include using `assign_nested_authentication`.", "title": null, "type": "comment" } ]
2
2
830
false
false
830
false
Alluxio/alluxio
Alluxio
506,893,137
10,106
{ "number": 10106, "repo": "alluxio", "user_login": "Alluxio" }
[ { "action": "opened", "author": "gpang", "comment_id": null, "datetime": 1571090014000, "masked_author": "username_0", "text": "", "title": "Add skeleton for transform manager", "type": "issue" }, { "action": "created", "author": "gpang", "comment_id": 541957347, "datetime": 1571091788000, "masked_author": "username_0", "text": "alluxio-bot, merge this please", "title": null, "type": "comment" } ]
3
6
799
false
true
30
false
mirumee/saleor
mirumee
655,755,439
5,876
null
[ { "action": "opened", "author": "dominik-zeglen", "comment_id": null, "datetime": 1594637677000, "masked_author": "username_0", "text": "### What I'm trying to achieve\r\nTo have `Weight` type defined as\r\n```graphql\r\ntype Weight {\r\n unit: WeightUnitsEnum!\r\n value: Float!\r\n}\r\n```\r\nto maintain consistency with `Shop.defaultWeightUnit` field.", "title": "Weight type should use WeightUnitsEnum", "type": "issue" }, { "action": "closed", "author": "maarcingebala", "comment_id": null, "datetime": 1594731699000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
2
204
false
false
204
false
aratcliffe/Leaflet.contextmenu
null
592,765,104
128
null
[ { "action": "opened", "author": "joeclarkia", "comment_id": null, "datetime": 1585845144000, "masked_author": "username_0", "text": "The context menu example has a \"Show Coordinates\" menu option. What I would like to see is a way to put the coordinates *in the menu item* itself (no callbacks / alert boxes needed). Is there a way to do this?", "title": "Coordinates in Context Menu Item", "type": "issue" }, { "action": "created", "author": "mike16889", "comment_id": 683232901, "datetime": 1598674148000, "masked_author": "username_1", "text": "you could do something like this:\r\n\r\n```\r\n\tvar map = L.map('map', {\r\n\t\tcontextmenu: true,\r\n\t\tcontextmenuItems: [{\r\n\t\t\ttext: 'test',\r\n\t\t\ticonCls: 'showLatLng'\r\n\t\t}]\r\n\t});\r\n```\r\n\r\nthen:\r\n```\r\n\tmap.on('contextmenu.show', function(e){\r\n\t\tlet el = e.contextmenu._container.getElementsByClassName(\"showLatLng\");\r\n\t\tif(el.length){\r\n\t\t\tel[0].parentElement.innerHTML = '<b>Lat: </b>'+e.latlng.lat+'<br><b> Lng: </b>'+e.latlng.lat;\r\n\t\t}\r\n\t})\r\n```\r\n\r\nwhich results in this:\r\n![image](https://user-images.githubusercontent.com/33011308/91628118-26cba000-ea00-11ea-8fc9-df8c025ffb86.png)\r\n\r\nYou could of course trim the decimal places to your liking.", "title": null, "type": "comment" } ]
2
2
848
false
false
848
false
testcontainers/testcontainers-java
testcontainers
673,514,178
3,078
null
[ { "action": "opened", "author": "zhukovheorhii", "comment_id": null, "datetime": 1596631793000, "masked_author": "username_0", "text": "OS: macOS 10.15.6\r\nDocker version 19.03.12, build 48a66213fe\r\n\r\ngradle dependency:\r\n testImplementation(\"org.testcontainers:testcontainers:1.14.3\")\r\n\r\nI am trying to create GenericContainer\r\n\r\n`class IgniteContainer(containerName: String) : GenericContainer<IgniteContainer>(containerName) {\r\n\r\n constructor() : this(\"apacheignite/ignite:2.8.1\") {\r\n val filePath = \"https://raw.githubusercontent.com/apache/ignite/master/examples/config/example-cache.xml\"\r\n this.withCommand( \"-e\", \"CONFIG_URI=$filePath\")\r\n this.start()\r\n }\r\n}` \r\n\r\nAs result I have an error \r\n\r\n`Container startup failed\r\norg.testcontainers.containers.ContainerLaunchException: Container startup failed\r\n\tat org.testcontainers.containers.GenericContainer.doStart(GenericContainer.java:330)\r\n\tat org.testcontainers.containers.GenericContainer.start(GenericContainer.java:311)\r\n\tat com.flo.rater.config.IgniteContainer.<init>(IgniteContainer.kt:20)\r\n\tat com.flo.rater.test.BaseTest$Companion.setUpBeforeAllTest(BaseTest.kt:83)\r\n\tat com.flo.rater.test.BaseTest.setUpBeforeAllTest(BaseTest.kt)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n\tat sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n\tat java.lang.reflect.Method.invoke(Method.java:498)\r\n\tat org.junit.platform.commons.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:675)\r\n\tat org.junit.jupiter.engine.execution.MethodInvocation.proceed(MethodInvocation.java:60)\r\n\tat org.junit.jupiter.engine.execution.InvocationInterceptorChain$ValidatingInvocation.proceed(InvocationInterceptorChain.java:125)\r\n\tat org.junit.jupiter.engine.extension.TimeoutExtension.intercept(TimeoutExtension.java:132)\r\n\tat org.junit.jupiter.engine.extension.TimeoutExtension.interceptLifecycleMethod(TimeoutExtension.java:111)\r\n\tat org.junit.jupiter.engine.extension.TimeoutExtension.interceptBeforeAllMethod(TimeoutExtension.java:60)\r\n\tat org.junit.jupiter.engine.execution.ExecutableInvoker$ReflectiveInterceptorCall.lambda$ofVoidMethod$0(ExecutableInvoker.java:115)\r\n\tat org.junit.jupiter.engine.execution.ExecutableInvoker.lambda$invoke$0(ExecutableInvoker.java:105)\r\n\tat org.junit.jupiter.engine.execution.InvocationInterceptorChain$InterceptedInvocation.proceed(InvocationInterceptorChain.java:104)\r\n\tat org.junit.jupiter.engine.execution.InvocationInterceptorChain.proceed(InvocationInterceptorChain.java:62)\r\n\tat org.junit.jupiter.engine.execution.InvocationInterceptorChain.chainAndInvoke(InvocationInterceptorChain.java:43)\r\n\tat org.junit.jupiter.engine.execution.InvocationInterceptorChain.invoke(InvocationInterceptorChain.java:35)\r\n\tat org.junit.jupiter.engine.execution.ExecutableInvoker.invoke(ExecutableInvoker.java:104)\r\n\tat org.junit.jupiter.engine.execution.ExecutableInvoker.invoke(ExecutableInvoker.java:98)\r\n\tat org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$invokeBeforeAllMethods$8(ClassBasedTestDescriptor.java:371)\r\n\tat org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)\r\n\tat org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.invokeBeforeAllMethods(ClassBasedTestDescriptor.java:369)\r\n\tat org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.before(ClassBasedTestDescriptor.java:193)\r\n\tat org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.before(ClassBasedTestDescriptor.java:77)\r\n\tat org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$5(NodeTestTask.java:132)\r\n\tat org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)\r\n\tat org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$7(NodeTestTask.java:125)\r\n\tat org.junit.platform.engine.support.hierarchical.Node.around(Node.java:135)\r\n\tat org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:123)\r\n\tat org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)\r\n\tat org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:122)\r\n\tat org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:80)\r\n\tat org.junit.platform.engine.support.hierarchical.ForkJoinPoolHierarchicalTestExecutorService$ExclusiveTask.compute(ForkJoinPoolHierarchicalTestExecutorService.java:171)\r\n\tat org.junit.platform.engine.support.hierarchical.ForkJoinPoolHierarchicalTestExecutorService.invokeAll(ForkJoinPoolHierarchicalTestExecutorService.java:115)\r\n\tat org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$5(NodeTestTask.java:139)\r\n\tat org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)\r\n\tat org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$7(NodeTestTask.java:125)\r\n\tat org.junit.platform.engine.support.hierarchical.Node.around(Node.java:135)\r\n\tat org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:123)\r\n\tat org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)\r\n\tat org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:122)\r\n\tat org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:80)\r\n\tat org.junit.platform.engine.support.hierarchical.ForkJoinPoolHierarchicalTestExecutorService$ExclusiveTask.compute(ForkJoinPoolHierarchicalTestExecutorService.java:171)\r\n\tat java.util.concurrent.RecursiveAction.exec(RecursiveAction.java:189)\r\n\tat java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)\r\n\tat java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)\r\n\tat java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)\r\n\tat java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)\r\nCaused by: org.rnorth.ducttape.RetryCountExceededException: Retry limit hit with exception\r\n\tat org.rnorth.ducttape.unreliables.Unreliables.retryUntilSuccess(Unreliables.java:88)\r\n\tat org.testcontainers.containers.GenericContainer.doStart(GenericContainer.java:323)\r\n\t... 51 more\r\nCaused by: org.testcontainers.containers.ContainerLaunchException: Could not create/start container\r\n\tat org.testcontainers.containers.GenericContainer.tryStart(GenericContainer.java:498)\r\n\tat org.testcontainers.containers.GenericContainer.lambda$doStart$0(GenericContainer.java:325)\r\n\tat org.rnorth.ducttape.unreliables.Unreliables.retryUntilSuccess(Unreliables.java:81)\r\n\t... 52 more\r\nCaused by: com.github.dockerjava.api.exception.BadRequestException: {\"message\":\"OCI runtime create failed: container_linux.go:349: starting container process caused \\\"exec: \\\\\\\"-e\\\\\\\": executable file not found in $PATH\\\": unknown\"}\r\n\r\n\tat com.github.dockerjava.okhttp.OkHttpInvocationBuilder.execute(OkHttpInvocationBuilder.java:283)\r\n\tat com.github.dockerjava.okhttp.OkHttpInvocationBuilder.execute(OkHttpInvocationBuilder.java:271)\r\n\tat com.github.dockerjava.okhttp.OkHttpInvocationBuilder.post(OkHttpInvocationBuilder.java:116)\r\n\tat com.github.dockerjava.core.exec.StartContainerCmdExec.execute(StartContainerCmdExec.java:31)\r\n\tat com.github.dockerjava.core.exec.StartContainerCmdExec.execute(StartContainerCmdExec.java:13)\r\n\tat com.github.dockerjava.core.exec.AbstrSyncDockerCmdExec.exec(AbstrSyncDockerCmdExec.java:21)\r\n\tat com.github.dockerjava.core.command.AbstrDockerCmd.exec(AbstrDockerCmd.java:35)\r\n\tat com.github.dockerjava.core.command.StartContainerCmdImpl.exec(StartContainerCmdImpl.java:43)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n\tat sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n\tat java.lang.reflect.Method.invoke(Method.java:498)\r\n\tat org.testcontainers.dockerclient.AuditLoggingDockerClient.lambda$wrappedCommand$14(AuditLoggingDockerClient.java:102)\r\n\tat com.sun.proxy.$Proxy57.exec(Unknown Source)\r\n\tat org.testcontainers.containers.GenericContainer.tryStart(GenericContainer.java:419)\r\n\t... 54 more`", "title": "OCI runtime create failed", "type": "issue" }, { "action": "created", "author": "vcvitaly", "comment_id": 669208527, "datetime": 1596635780000, "masked_author": "username_1", "text": "That doesn't seem to be related to Testcontainers. The cause ex was thrown at:\r\n`at com.github.dockerjava.okhttp.OkHttpInvocationBuilder.execute(OkHttpInvocationBuilder.java:283)`\r\n\r\nTestcontainers uses docker-java under that hood, and it uses docker daemon as I understand. Is docker set up properly and docker binary file available on your PATH?", "title": null, "type": "comment" }, { "action": "created", "author": "zhukovheorhii", "comment_id": 669212005, "datetime": 1596636158000, "masked_author": "username_0", "text": "When I'm running same image via terminal all is fine. When using testcontainers - it fails.", "title": null, "type": "comment" }, { "action": "created", "author": "bsideup", "comment_id": 669490317, "datetime": 1596659702000, "masked_author": "username_2", "text": "I am pretty sure the following will fail as well:\r\n```shell\r\ndocker run -it --rm apacheignite/ignite:2.8.1 -e CONFIG_URI=https://raw.githubusercontent.com/apache/ignite/master/examples/config/example-cache.xml\r\n```\r\n\r\nAlso, if you need to set an environment variable, you do it by customizing the container (e.g. `withEnv`). `-e` is Docker's flag that sets the environment variable.", "title": null, "type": "comment" }, { "action": "closed", "author": "bsideup", "comment_id": null, "datetime": 1596659703000, "masked_author": "username_2", "text": "", "title": null, "type": "issue" } ]
3
5
9,108
false
false
9,108
false
sqlalchemyorg/zimports
sqlalchemyorg
652,137,106
17
null
[ { "action": "opened", "author": "schmir", "comment_id": null, "datetime": 1594112128000, "masked_author": "username_0", "text": "When calling zimports with /dev/stdin as input file, zimports 0.2.1 crashes with OSError: [Errno 29] Illegal seek\r\nThis is a regression from 0.2.0. \r\n\r\n```\r\nralf@triton ~/t % cat zimports.py|zimports --stdout /dev/stdin\r\nTraceback (most recent call last):\r\n File \"/home/ralf/.local/bin/zimports\", line 8, in <module>\r\n sys.exit(main())\r\n File \"/home/ralf/.local/pipx/venvs/zimports/lib64/python3.8/site-packages/zimports.py\", line 766, in main\r\n _run_file(options, filename)\r\n File \"/home/ralf/.local/pipx/venvs/zimports/lib64/python3.8/site-packages/zimports.py\", line 622, in _run_file\r\n lines, encoding_comment = _read_python_source(filename)\r\n File \"/home/ralf/.local/pipx/venvs/zimports/lib64/python3.8/site-packages/zimports.py\", line 558, in _read_python_source\r\n encoding_comment = _parse_magic_encoding_comment(file_)\r\n File \"/home/ralf/.local/pipx/venvs/zimports/lib64/python3.8/site-packages/zimports.py\", line 581, in _parse_magic_encoding_comment\r\n pos = fp.tell()\r\nOSError: [Errno 29] Illegal seek\r\n```\r\n\r\nI'm using this in my [zimports.el emacs package](https://github.com/username_0/zimports.el)", "title": "zimports cannot read from /dev/stdin anymore", "type": "issue" }, { "action": "created", "author": "zzzeek", "comment_id": 654897038, "datetime": 1594131620000, "masked_author": "username_1", "text": "OK this one, was not a thing I knew you could even do. i guess, I have to put whatever python io.Buffered thing aroudn the file handle.", "title": null, "type": "comment" }, { "action": "created", "author": "zzzeek", "comment_id": 654902278, "datetime": 1594132069000, "masked_author": "username_1", "text": "OK it would help if you could check my work on this one, then I can release 0.2.2. I don't see any obvious way of unit testing this one without pulling out a whole bunch of IO mechanics. feel free to propose writing some kind of test here but otherwise just make sure on your end it works and I'll just comment the code why it's needed.", "title": null, "type": "comment" }, { "action": "closed", "author": "zzzeek", "comment_id": null, "datetime": 1594132078000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "schmir", "comment_id": 655414950, "datetime": 1594201753000, "masked_author": "username_0", "text": "That fix works for me. I've opened PR #18 as an enhancement for this one. It makes 'zimports -' read from stdin and write to stdout.\r\nUsing '-' as a filename is more or less a standard way on unix to read input from stdin (e.g. /usr/bin/cat supports it)", "title": null, "type": "comment" } ]
2
5
1,857
false
false
1,857
true
WheatonCS/Lexos
WheatonCS
455,956,760
916
{ "number": 916, "repo": "Lexos", "user_login": "WheatonCS" }
[ { "action": "opened", "author": "jacksonjreed", "comment_id": null, "datetime": 1560460633000, "masked_author": "username_0", "text": "There's some pretty big changes in here that may be controversial, so I'll try to give a good overview of what I've done.\r\nThis is a rewrite of rolling window to avoid redundant calculations that were seriously holding back the tool in terms of speed and memory usage. The main idea is that **instead of instantiating a string for each window and searching for the terms in each of them**, this new version:\r\n* Just iterates through one copy of the passage using an index\r\n* Only analyzes content rolling into and out of the window, ignoring any overlap in the middle.\r\n\r\n### Good things:\r\n* This version produces identical results to the old version; I verified this in several different configurations.\r\n* Speed and memory usage are now minimally, if at all, impacted by window size.\r\n* The data is generated as much as 30x faster in some cases; at worst, it takes about the same amount of time. With a bigger window, the speedup is more dramatic. Certain configurations benefit more, e.g. word search in word window.\r\n* I was able to keep most of the structure of the file intact, making major changes to one function and some minimal changes to a few others.\r\n\r\n### Less good things:\r\n* Regex searches still search the entirety of every window, so the speed will be about the same.\r\n* \"Rolling ratio\" mode is still attached to the old functionality; to make it work with this new method would take a more significant structural overhaul. It's still totally functional, but will perform as before.\r\n* The code style is not great; the speedup comes at the cost of generalization and compartmentalization, so several functions ended up consolidated into one big, long function containing a number of helper functions that specifically handle different cases. This results in some messy scoping and lots of line wraps; looking for feedback on this. Perhaps the structure could be improved without sacrificing the functionality.\r\n* This will probably break most of the unit tests for RWA, which I have yet to update.\r\n\r\nI'm hoping to get some serious review on this before anything gets merged; @Weiqi97 @username_2 @username_1 thoughts?", "title": "Rolling window rewrite", "type": "issue" }, { "action": "created", "author": "scottkleinman", "comment_id": 502307265, "datetime": 1560553891000, "masked_author": "username_1", "text": "It looks like this got merged without the requested feedback. Since it seems to perform as well as the old code, this is fine. But it might be a good idea to submit an issue so that the code can undergo further review in the future.", "title": null, "type": "comment" }, { "action": "created", "author": "chantisnake", "comment_id": 502428113, "datetime": 1560669824000, "masked_author": "username_2", "text": "1. There are some obvious violation of the style guide to trade for memory efficiency. \r\n2. Functions and methods are way too long\r\n3. There are some code that I don't understand after a brief scan, but seems hacky, like adding space after every word. String manipulation are never safe, data structures are much better than string. We should only use string manipulation for io purpose, we should not have any string manipulation in the core logic.\r\n4. Logic are very complicated, we have huge block of if nested in for nested in if statements.\r\n\r\nOverall, this code definitely could use some further modulization, which will solve all the problems above.", "title": null, "type": "comment" }, { "action": "created", "author": "jacksonjreed", "comment_id": 503288023, "datetime": 1560887896000, "masked_author": "username_0", "text": "group consensus on this was to leave it merged for now (as nothing is functionally broken and performance seems better) and open an issue to improve style + remove unsafe sections later on--hopefully I can get some work in on this next week.", "title": null, "type": "comment" } ]
4
5
3,269
false
true
3,269
true
apache/commons-codec
apache
467,744,270
23
{ "number": 23, "repo": "commons-codec", "user_login": "apache" }
[ { "action": "opened", "author": "Megaprog", "comment_id": null, "datetime": 1563037621000, "masked_author": "username_0", "text": "#CODEC-259", "title": "CODEC-259: fixed ByteBuffer issues and updated tests", "type": "issue" } ]
2
3
620
false
true
10
false
SpareBank1/designsystem
SpareBank1
645,485,335
903
{ "number": 903, "repo": "designsystem", "user_login": "SpareBank1" }
[ { "action": "opened", "author": "maylindamartinsen", "comment_id": null, "datetime": 1593084461000, "masked_author": "username_0", "text": "Ikon før endring:\r\n![Screenshot from 2020-06-19 10-06-18](https://user-images.githubusercontent.com/13994186/85711576-b6469100-b6e7-11ea-8fc7-3e07e5367fe3.png)\r\n\r\n\r\nIkon etter endring:\r\n![Screenshot from 2020-06-25 13-27-18](https://user-images.githubusercontent.com/13994186/85711623-be063580-b6e7-11ea-9e63-06efe1b3ac9a.png)\r\n\r\n\r\n<!-- \r\nThanks for opening a pull request! 🎉\r\n\r\nIf your changes include some kind of UI element, please attach a screenshot of \r\nhow it looks.\r\n\r\nBefore submitting a pull request, please have a look through the CONTRIBUTING.md\r\ndocument. TL;DR:\r\n\r\n- Follow the conventional commit standard\r\n- Write full, explanatory commit messages\r\n- Follow our code standards\r\n- Write tests where applicable\r\n- Be courteous and respect our code of conduct\r\n-->", "title": "DIG-67012 Fjernet rammer på bil-pil-ikon", "type": "issue" } ]
2
2
1,078
false
true
777
false
DIYgod/RSSHub
null
665,726,113
5,259
{ "number": 5259, "repo": "RSSHub", "user_login": "DIYgod" }
[ { "action": "opened", "author": "cesaryuan", "comment_id": null, "datetime": 1595748024000, "masked_author": "username_0", "text": "Add: \r\n1. Quicker - 讨论区\r\n2. Quicker - 版本更新", "title": "Add: Quicker", "type": "issue" } ]
2
2
235
false
true
42
false
gravitystorm/openstreetmap-carto
null
699,631,227
4,204
{ "number": 4204, "repo": "openstreetmap-carto", "user_login": "gravitystorm" }
[ { "action": "opened", "author": "pitdicker", "comment_id": null, "datetime": 1599849826000, "masked_author": "username_0", "text": "Changes proposed in this pull request:\r\n- Don't render boardwalk as bridge at z14 and z15.\r\n\r\nCurrently a path with the tags `bridge=boardwalk` and `highway=path` stands out almost as prominently as secondary roads at zoom 14. At zoom 15 it still catches my eye a bit more than a tertiary road. This seems inappropriate for a footway.\r\n\r\nI propose to render it as a `highway=path` at zoom 14 and 15, and as before like a bridge at zoom 16 and up.\r\n\r\nTest rendering with links to the example places:\r\nhttps://www.openstreetmap.org/#map=14/52.0113/4.6852\r\n\r\nBefore\r\n![oud](https://user-images.githubusercontent.com/6255050/92961028-e1cb5300-f46e-11ea-9f97-28fc7d7596d6.jpg)\r\n\r\nAfter\r\n![nieuw](https://user-images.githubusercontent.com/6255050/92961041-e4c64380-f46e-11ea-98f0-43f74bb8a921.jpg)", "title": "Don't render boardwalk as bridge at z14 and z15", "type": "issue" }, { "action": "created", "author": "imagico", "comment_id": 691479742, "datetime": 1599913328000, "masked_author": "username_1", "text": "I am not sure if this is a good idea. You are rendering these paths as bridges on the SQL level but then special casing them to be displayed as normal paths on the MSS level at z14/15. That is complex and confusing for those trying to understand the code (which is already extremely complicated for the roads rendering as is).\r\n\r\nIf we decide we want this feature i think i would prefer to either modify the bridge condition (which would introduce a zoom level condition in SQL which we have not done so far) or to render bridge=boardwalk not in the bridge layers but as a normal path at all zoom levels and with a dedicated line signature at z16+ matching that of bridges.", "title": null, "type": "comment" }, { "action": "created", "author": "pitdicker", "comment_id": 691483992, "datetime": 1599915452000, "masked_author": "username_0", "text": "I agree it is not perfect. The current rules are basically rendering something with the importance of a way with the extra attention of a bridge. This is my first time touching SQL queries, but I was thinking in the same direction that it could be better to change the bridge condition. If you agree this is worth solving, I'll try out your second suggestion. It seems the cleanest.", "title": null, "type": "comment" }, { "action": "created", "author": "pitdicker", "comment_id": 702323352, "datetime": 1601577455000, "masked_author": "username_0", "text": "Sorry for not making any progress here. I don't know how to make the SQL query take the zoom level in account. And the second option also seems to become more complex.\r\n\r\nAs I understand it, a bridge is rendered on two layers. One for the bridge casing, and one for the line on top. If you need the bridge casing layer for rendering a boardwalk, you might as well keep selecting it from the database as a bridge.\r\n\r\nSo I think the current PR is the least invasive change. But as you say, the roads stylesheet is already very complicated... But I would like to see this small issue fixed.", "title": null, "type": "comment" }, { "action": "created", "author": "imagico", "comment_id": 881885590, "datetime": 1626522416000, "masked_author": "username_1", "text": "The second variant is probably the simpler and less controversial variant but it still requires some familiarity with the road rendering to implement a bridge like design in the normal road layers.", "title": null, "type": "comment" }, { "action": "created", "author": "pitdicker", "comment_id": 918009764, "datetime": 1631525472000, "masked_author": "username_0", "text": "Ad an update on this PR: I have neglected, but not forgotten in. A year ago I tried the second option but didn't feel like what I ended up with was clean enough to be acceptable. I have lost that branch since then...\r\n\r\nMy current plan is to work on the complexity of the road layers, and revisit the boardwalks when there is some progress on that.", "title": null, "type": "comment" } ]
2
6
2,980
false
false
2,980
false
blackflux/lambda-monitor
blackflux
435,360,978
589
{ "number": 589, "repo": "lambda-monitor", "user_login": "blackflux" }
[ { "action": "created", "author": "MrsFlux", "comment_id": 485289732, "datetime": 1555888747000, "masked_author": "username_0", "text": ":tada: This PR is included in version 1.13.100 :tada:\n\nThe release is available on:\n- [npm package (@latest dist-tag)](https://www.npmjs.com/package/lambda-monitor)\n- [GitHub release](https://github.com/blackflux/lambda-monitor/releases/tag/v1.13.100)\n\nYour **[semantic-release](https://github.com/semantic-release/semantic-release)** bot :package::rocket:", "title": null, "type": "comment" } ]
2
2
3,413
false
true
356
false
angular/angularfire
angular
642,944,944
2,515
null
[ { "action": "opened", "author": "weilies", "comment_id": null, "datetime": 1592821171000, "masked_author": "username_0", "text": "<!--\r\n\r\nIMPORTANT! YOU MUST FOLLOW THESE INSTRUCTIONS OR YOUR ISSUE WILL BE CLOSED.\r\n\r\nThank you for contributing to the Angular and Firebase communities!\r\n\r\nHave a usage question?\r\n=======================\r\nWe get lots of those and we love helping you, but GitHub is not the best place for them and they will be closed. Here are some resources to get help:\r\n\r\n- Go through the Developer's Guide: https://github.com/angular/angularfire2#developer-guide\r\n\r\nIf the official documentation doesn't help, try asking through our officially supported channels:\r\n\r\n- Firebase Google Group: https://groups.google.com/forum/#!forum/firebase-talk\r\n- Stack Overflow: https://stackoverflow.com/questions/tagged/angular (include the firebase and angularfire tags, too!)\r\n\r\n*Please avoid double posting across multiple channels!*\r\n\r\nThink you found a bug?\r\n=======================\r\nYeah, we're definitely not perfect! Please use the bug report template below and include a minimal repro when opening the issue.\r\n\r\nHave a feature request?\r\n========================\r\nGreat, we love hearing how we can improve our products! Remove the template below and\r\nprovide an explanation of your feature request. Provide code samples if applicable. Try to\r\nthink about what it will allow you to do that you can't do today? How will it make current\r\nworkarounds straightforward? What potential bugs and edge cases does it help to avoid?\r\n\r\n-->\r\n\r\n\r\n### Version info\r\n\r\n<!-- What versions of the following libraries are you using? Note that your issue may already\r\nbe fixed in the latest versions. -->\r\n\r\n**Angular:** 9.1.9\r\n\r\n**Firebase:** 7.15.0\r\n\r\n**AngularFire:** 6.0.0\r\n\r\n\r\n\r\n### Expected behavior\r\nCloud Function\r\n```\r\nimport * as functions from 'firebase-functions';\r\nconst cors = require('cors')({ origin: true });\r\n...\r\nexport const helloWorldWithCORS = functions.https.onRequest((request, response) => {\r\n cors(request, response, () => {\r\n // response.status(200).send({ data: { success: true, message: 'yeah!' } })\r\n response.status(200).send({ data: { success: true, message: 'yeah!'+request.query.name } })\r\n })\r\n});\r\n```\r\n\r\nAngular TS\r\n```\r\n const callable = this.afFnc.httpsCallable(\"helloWorldWithCORS\");\r\n let cloudFncResp: Observable<any> = await callable({ name: \"username_0\" });\r\n\r\n // console.log(`metadata.fullPath=${metadata.fullPath}`)\r\n\r\n cloudFncResp.subscribe(res => {\r\n console.log(\"success with \");\r\n console.log(res);\r\n }, console.error);\r\n\r\n```\r\nExpected Chrome Console\r\n{success: true, message: \"yeah!**username_0**\"}\r\n\r\n<!-- What is the expected behavior? -->\r\n\r\n### Actual behavior\r\nActual Chrome Console\r\n{success: true, message: \"yeah!**undefined**\"}\r\n\r\n<!-- What is the actual behavior? -->\r\n\r\n\r\nI tried copy & paste directly and it captured the query string 'name'. But once it run via angular/fire, return undefined. i even manually defined the region in my app module code\r\n```\r\nimport { AngularFireFunctionsModule, FUNCTIONS_REGION} from \"@angular/fire/functions\";\r\n...\r\n providers: [ ...\r\n { provide: FUNCTIONS_REGION, useValue: \"us-central1\" }\r\n ],\r\n```", "title": "Cloud function's Query name is undefined", "type": "issue" }, { "action": "created", "author": "weilies", "comment_id": 647515408, "datetime": 1592832077000, "masked_author": "username_0", "text": "i resolved it! Just change\r\n` response.status(200).send({ data: { success: true, message: 'yeah!'+request.query.name } })\r\n`to\r\n` response.status(200).send({ data: { success: true, message: 'yeah!'+request.body.data.name } })\r\n`", "title": null, "type": "comment" }, { "action": "closed", "author": "weilies", "comment_id": null, "datetime": 1593070691000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
1
3
3,353
false
false
3,353
true
sharedstreets/curb-wheel
sharedstreets
608,653,410
42
{ "number": 42, "repo": "curb-wheel", "user_login": "sharedstreets" }
[ { "action": "opened", "author": "morganherlocker", "comment_id": null, "datetime": 1588112544000, "masked_author": "username_0", "text": "This PR implements:\r\n\r\n- survey photo uploads\r\n- survey photo downloads\r\n- pbf extract api, allowing custom areas\r\n- mbtiles upload API\r\n- server and client automated tests\r\n- survey upload endpoint (saving is WIP, but client can be hooked up)", "title": "implement server uploads & img serving", "type": "issue" }, { "action": "created", "author": "peterqliu", "comment_id": 620927662, "datetime": 1588121031000, "masked_author": "username_1", "text": "🚢", "title": null, "type": "comment" } ]
2
2
244
false
false
244
false
crypto-com/chain
crypto-com
607,258,493
1,494
{ "number": 1494, "repo": "chain", "user_login": "crypto-com" }
[ { "action": "opened", "author": "devashishdxt", "comment_id": null, "datetime": 1587967015000, "masked_author": "username_0", "text": "Solution: Ported tx-query code to EDP in `tx-query-next`. Fixes #1301.", "title": "Problem: tx-query not yet ported to EDP", "type": "issue" }, { "action": "created", "author": "devashishdxt", "comment_id": 619786844, "datetime": 1587972412000, "masked_author": "username_0", "text": "Tests will be ported in following PR for #1235. I'll add client code in this PR.", "title": null, "type": "comment" }, { "action": "created", "author": "devashishdxt", "comment_id": 620960989, "datetime": 1588128123000, "masked_author": "username_0", "text": "Ok. I'll try to simplify this.", "title": null, "type": "comment" }, { "action": "created", "author": "tomtau", "comment_id": 623862589, "datetime": 1588656348000, "masked_author": "username_1", "text": "bors r+", "title": null, "type": "comment" } ]
4
6
1,191
false
true
187
false
mfrachet/rn-native-portals
null
537,029,944
5
{ "number": 5, "repo": "rn-native-portals", "user_login": "mfrachet" }
[ { "action": "opened", "author": "alex4dev", "comment_id": null, "datetime": 1576162710000, "masked_author": "username_0", "text": "Make the project works on ios, now xcode can build the lib without fail.", "title": "Update xcode project", "type": "issue" }, { "action": "created", "author": "mfrachet", "comment_id": 566034170, "datetime": 1576498088000, "masked_author": "username_1", "text": "Oh! Thanks for this 😄", "title": null, "type": "comment" } ]
2
2
93
false
false
93
false
t2mune/mrtparse
null
495,708,852
20
null
[ { "action": "opened", "author": "mattoddy", "comment_id": null, "datetime": 1568888513000, "masked_author": "username_0", "text": "Hi, I have been able to advertise the full internet table with exabgp using the old 'announce route' syntax however I believe there is a more efficient way to do this using a newer 'api' format. I can see in the article that there is an 'announce attributes' syntax. https://github.com/Exa-Networks/exabgp/wiki/Large-Configuration-File and that mrtparse allows you to generate this config using the flags -G and -P\r\n\r\nI have used the command:\r\n```\r\npython /usr/local/lib/python2.7/dist-packages/mrtparse/examples/mrt2exabgp.py -G -P latest-bview.gz > fullbgptable.py\r\n```\r\n\r\nWhen I run this command the process hangs and does that send any output to the file. If I omit the -G then the command works but I end up with the old syntax.\r\n\r\nIf anyone has any experience with getting this working then any help would be appreciated.\r\n\r\nThanks.", "title": "MRTPARSE to exabgp config hangs when using -G & -P flags", "type": "issue" }, { "action": "created", "author": "t2mune", "comment_id": 537029354, "datetime": 1569935514000, "masked_author": "username_1", "text": "Hi,\r\n\r\nSorry for my late reply.\r\n\r\nUsing \" -G\" option, All entries of MRT data are temporarily stored in python dictionary to group prefixes with the same path attributes. After all MRT entries are parsed, output  finally begins. Therefore, it takes a long time to output(not hang). If you want to accelerate output, I recommend using pypy instead of python2.\r\nIn my environment, it was as follows (about x3 faster).\r\n\r\n```\r\n% time pypy mrt2exabgp.py -G -P latest-bview.gz > latest-bview.py\r\npypy mrt2exabgp.py -G -P latest-bview.gz > latest-bview.py 1628.49s user 1.71s system 99% cpu 27:16.05 total\r\n\r\n% time python2 mrt2exabgp.py -G -P latest-bview.gz > latest-bview.py\r\npython2 mrt2exabgp.py -G -P latest-bview.gz > latest-bview.py 4565.98s user 5.04s system 99% cpu 1:16:24.22 total\r\n```", "title": null, "type": "comment" }, { "action": "closed", "author": "t2mune", "comment_id": null, "datetime": 1581949960000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
3
1,633
false
false
1,633
false
Laravel-Lang/lang
Laravel-Lang
715,603,073
1,397
{ "number": 1397, "repo": "lang", "user_login": "Laravel-Lang" }
[ { "action": "opened", "author": "andrey-helldar", "comment_id": null, "datetime": 1601985453000, "masked_author": "username_0", "text": "", "title": "[ru] Missed key translated", "type": "issue" }, { "action": "created", "author": "caouecs", "comment_id": 704231542, "datetime": 1601986924000, "masked_author": "username_1", "text": "Thank you", "title": null, "type": "comment" } ]
2
2
9
false
false
9
false
zeit/next.js
zeit
531,999,825
9,607
null
[ { "action": "opened", "author": "natemoo-re", "comment_id": null, "datetime": 1575381082000, "masked_author": "username_0", "text": "# Feature request\r\n\r\n## Is your feature request related to a problem? Please describe.\r\n\r\nA clear and concise description of what you want and what your use case is.\r\n\r\n## Describe the solution you'd like\r\n\r\nA clear and concise description of what you want to happen.\r\n\r\n## Describe alternatives you've considered\r\n\r\nA clear and concise description of any alternative solutions or features you've considered.\r\n\r\n## Additional context\r\n\r\nAdd any other context or screenshots about the feature request here.", "title": "Support esm next.config.js", "type": "issue" }, { "action": "closed", "author": "natemoo-re", "comment_id": null, "datetime": 1575381093000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" }, { "action": "reopened", "author": "natemoo-re", "comment_id": null, "datetime": 1575382085000, "masked_author": "username_0", "text": "# Feature Request\r\n\r\n## Is your feature request related to a problem? Please describe.\r\n\r\nWith Node v13.2.0 landing [native support for ES modules](https://nodejs.org/api/esm.html), I would expect `next.config.js` to support ES module format in addition to CJS.\r\n\r\nWhen using `type: module` in `package.json` on Node v13.2.0 and an ESM `next.config.js` format, Next throws an error due to the config resolution logic relying on `require`.\r\n\r\n## Describe the solution you'd like\r\n\r\nNext should follow Node’s module semantics and allow either CJS or ESM file, depending on user configuration.\r\n\r\nCurrently, `next.config.js` uses CJS with `require` and `module.exports`. ESM format would allow users to `import` dependencies and `export default` the config object.\r\n\r\n## Describe alternatives you've considered\r\n\r\nThis theoretically also opens the door to mirror Node’s explicit file extension pattern, which would suggest support for `next.config.cjs` and `next.config.mjs` files. This is likely controversial, but it is part of the language.", "title": "Support esm next.config.js", "type": "issue" }, { "action": "created", "author": "redblue9771", "comment_id": 562922138, "datetime": 1575791863000, "masked_author": "username_1", "text": "Node 13 is not yet suitable for production environments, and using the mjs extension is intrusive. Recently I needed a custom server to use better express middleware features, but I have no way to use ESM in any custom server related files. I hope to add an example about using EMS and nodemon when customizing the server", "title": null, "type": "comment" }, { "action": "created", "author": "natemoo-re", "comment_id": 564558686, "datetime": 1576073367000, "masked_author": "username_0", "text": "While I’d love to see ESM support globally in Next, this issue is just about the `next.config.js` file. Custom servers can support ESM in a similar manner to the [custom-server-typescript](https://github.com/zeit/next.js/tree/canary/examples/custom-server-typescript) example.\r\n\r\nLet’s not get into a discussion about the merits of `.mjs` or `.cjs`. I’m personally not a big fan, but since Node allows both, Next should support them as well.", "title": null, "type": "comment" }, { "action": "created", "author": "afsanefda", "comment_id": 603689284, "datetime": 1585122208000, "masked_author": "username_2", "text": "Error [ERR_REQUIRE_ESM]: Must use import to load ES Module: /.../next.config.js\r\nrequire() of ES modules is not supported.\r\nrequire() of /..../node_modules/next/dist/next-server/server/config.js is an ES module file as it is a .js file whose nearest parent package.json contains \"type\": \"module\" which defines all .js files in that package scope as ES modules.\r\nInstead rename next.config.js to end in .cjs, change the requiring code to use import(), or remove \"type\": \"module\" from /.../package.json.\r\n```", "title": null, "type": "comment" }, { "action": "created", "author": "baocang", "comment_id": 604585705, "datetime": 1585245668000, "masked_author": "username_3", "text": "native support for ES modules +1", "title": null, "type": "comment" }, { "action": "created", "author": "cooervo", "comment_id": 614835943, "datetime": 1587063394000, "masked_author": "username_4", "text": "same here tried to migrate project to use import just to fail on next.config.js", "title": null, "type": "comment" }, { "action": "created", "author": "OctonianCat", "comment_id": 619626598, "datetime": 1587935972000, "masked_author": "username_5", "text": "Would love to see this implemented. +1", "title": null, "type": "comment" }, { "action": "created", "author": "hypo-thesis", "comment_id": 634182578, "datetime": 1590515999000, "masked_author": "username_6", "text": "This is a bummer. no solution yet ?", "title": null, "type": "comment" }, { "action": "created", "author": "Willi-Smith", "comment_id": 692802710, "datetime": 1600184641000, "masked_author": "username_7", "text": "Any progress in implementation of esm syntax so far?", "title": null, "type": "comment" }, { "action": "created", "author": "crshumate", "comment_id": 693021546, "datetime": 1600210569000, "masked_author": "username_8", "text": "For anyone running up against this issue. I am using a custom server for complete flexibility in my build. \r\n\r\nNode files are located in a top level dir called `server` and Next files are in a top level dir called `src`\r\n\r\n```\r\n- next.config.js\r\n- package.json - make no changes to this file\r\n\r\n- /src\r\n - /pages\r\n\r\n- /server\r\n - package.json\r\n - this file just needs: {\"type\":\"module\"}\r\n - server.js\r\n```\r\n\r\nAs noted in the structure above, place an empty `package.json` file in a subdir with the node/express/etc files.\r\nIn this `package.json` simply add `{\"type\":\"module\"}`\r\nEnsure all the `requires` are changed to ES6 `import` statements and it should build fine.", "title": null, "type": "comment" }, { "action": "created", "author": "sagirk", "comment_id": 693154938, "datetime": 1600228721000, "masked_author": "username_9", "text": "Nice! 👍\r\n\r\nIf you want to retain `server.js` in the root, though, simply rename it from `server.js` to `server.mjs`. Works without requiring a `type` entry in `package.json`.", "title": null, "type": "comment" }, { "action": "created", "author": "Rowno", "comment_id": 705149347, "datetime": 1602099223000, "masked_author": "username_10", "text": "Since Node.js 12.17.0 ES modules have been enabled by default (a flag is no longer required). So ES modules are now available in an LTS version of Node.js:\r\nhttps://nodejs.org/en/blog/release/v12.17.0/\r\n\r\nAlso it looks like you can use normal `.js` file extensions if you add `\"type\": \"module\"` to your `package.json`:\r\nhttps://nodejs.org/docs/latest-v12.x/api/esm.html#esm_package_json_type_field", "title": null, "type": "comment" }, { "action": "created", "author": "andreasg123", "comment_id": 735469612, "datetime": 1606689779000, "masked_author": "username_11", "text": "Is the use of [next-transpile-modules](https://www.npmjs.com/package/next-transpile-modules) still the only way to include modules that only provide ESM? I tried switching my project to `\"type\": \"module\"` but I was prompted to rename `next.config.js` to `.cjs`. The latter wasn't picked up as a config file, resurfacing an issue with `\"fs\"` in another module.\r\n\r\nIn case it is relevant, my project uses TypeScript. I had to include `babel-jest` to be able to use Jest.\r\n\r\nMy final goal is to use `next export` because the production server doesn't run Node.", "title": null, "type": "comment" }, { "action": "created", "author": "paulshorey", "comment_id": 751620575, "datetime": 1609142005000, "masked_author": "username_12", "text": "I ran into a similar issue. If any of the folders inside my Next.js project use {type:\"module\"}, then `next build` process can't require() from them. It says \"Must use import to load ES Module\". \r\n\r\nThe silly thing is that Webpack/React uses ES Module format (import instead of require). So this is very strange. Next.js server really should use ESM by default, because it's working with an ESM filesystem.", "title": null, "type": "comment" }, { "action": "created", "author": "GitHubFilipe", "comment_id": 755958278, "datetime": 1610007111000, "masked_author": "username_13", "text": "Im running into this issue too.\r\nA .js script that I'm importing in my next.config.js, uses \"import {...} from '...' directives to call some API functions, thus throwing the error: \r\n_SyntaxError: Cannot use import statement outside a module_\r\n\r\nno matter how I turn it, the combination just doesn't work.", "title": null, "type": "comment" }, { "action": "created", "author": "belgattitude", "comment_id": 773885644, "datetime": 1612514531000, "masked_author": "username_14", "text": "For information, ky will move to esm only... next-transpile-modules can be used meanwhile, but esm would be really appreciated.\r\n\r\nhttps://github.com/sindresorhus/ky/issues/322#issuecomment-773850479", "title": null, "type": "comment" }, { "action": "created", "author": "Janpot", "comment_id": 782729135, "datetime": 1613845862000, "masked_author": "username_15", "text": "Created an RFC (https://github.com/vercel/next.js/discussions/22381) and prototype (https://github.com/vercel/next.js/pull/22153) for this", "title": null, "type": "comment" }, { "action": "created", "author": "JerryGreen", "comment_id": 785614963, "datetime": 1614229553000, "masked_author": "username_16", "text": "ESM is cool, but what about typescript? Will that be `.mts`? 😅", "title": null, "type": "comment" }, { "action": "created", "author": "natemoo-re", "comment_id": 785939633, "datetime": 1614263719000, "masked_author": "username_0", "text": "In all seriousness, TypeScript probably isn't that big of a leap from here. Async config loading was the biggest problem but is addressed in #22153. Node is currently stabilizing the experimental [`loaders`](https://nodejs.org/api/esm.html#esm_loaders) API, which will expose hooks to transform non-standard file formats like TypeScript.", "title": null, "type": "comment" }, { "action": "created", "author": "Joe-Connolly", "comment_id": 789743169, "datetime": 1614780831000, "masked_author": "username_17", "text": "this solution (inspired by another github issue https://github.com/vercel/next.js/issues/5318#issuecomment-575959060) worked for me for importing a typescript file that contained ES6 imports/exports:\r\n```\r\nconst BASE_CSP = requireTypescript(\"./getContentSecurityPolicy.ts\");\r\nconst withImages = require(\"next-images\");\r\n\r\nmodule.exports = withImages({\r\n async headers() {\r\n return [\r\n {\r\n source: \"/:path*{/}?\",\r\n headers: [\r\n {\r\n key: \"Content-Security-Policy\",\r\n value: BASE_CSP,\r\n },\r\n ],\r\n },\r\n ];\r\n },\r\n});\r\n\r\n// only CommonJS files can be imported in next.config, so need to transform imports\r\nfunction requireTypescript(path) {\r\n const fileContent = require(\"fs\").readFileSync(path, \"utf8\");\r\n const compiled = require(\"@babel/core\").transform(\r\n fileContent,\r\n {\r\n filename: path,\r\n presets: [ \"@babel/preset-typescript\" ],\r\n plugins: [ \"@babel/plugin-transform-modules-commonjs\" ],\r\n },\r\n );\r\n\r\n // eslint-disable-next-line no-eval\r\n return eval(compiled.code);\r\n}\r\n```", "title": null, "type": "comment" }, { "action": "created", "author": "meglio", "comment_id": 793554731, "datetime": 1615279208000, "masked_author": "username_18", "text": "Dear community, while using `next-transpile-module` helps with 3rd party libraries, I could not use it for the .mjs files that I authored as part of the project. How do I do it? Please advise.", "title": null, "type": "comment" }, { "action": "created", "author": "christopherjbaker", "comment_id": 816380105, "datetime": 1617939934000, "masked_author": "username_19", "text": "I am very confused. Things may have been different when this ticket was opened, but now Webpack supports this out of the box and Nodejs supports this out of the box. I'm confused why Next.js is built in such a way that this standards-compliant behaviour does not work in Next.js. Using `next-transpile-modules` is a workaround and does not count as \"works\".", "title": null, "type": "comment" }, { "action": "created", "author": "deadcoder0904", "comment_id": 825535390, "datetime": 1619170690000, "masked_author": "username_20", "text": "Any updates on this?\r\n\r\nHere's a good guide on how to make pure ESM package → https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c", "title": null, "type": "comment" }, { "action": "created", "author": "izaleu", "comment_id": 830452586, "datetime": 1619825062000, "masked_author": "username_21", "text": "I'm trying to pull some logic out of the SSR portion of my app into the server side of things as part of a refactor. Unfortunately I'm going to have to maintain a separate, CJS copy of what should be shared code, because the originals are written in ESM and I can't seem to get next/webpack/node to all be happy at once. (Don't get me started on optional chaining.)\r\n\r\nPlease add support for this. \r\n\r\nI am using Webpack 5, Node 14 and Next 10.0.5.", "title": null, "type": "comment" }, { "action": "created", "author": "IdkMan2Usertive", "comment_id": 848586226, "datetime": 1622018590000, "masked_author": "username_22", "text": "I am also looking for a way to use ESM system here. \r\nI have followed Material-UI guide to minimize bundle size and improve development server performance (https://material-ui.com/guides/minimizing-bundle-size/) and I am stuck on the same error.", "title": null, "type": "comment" }, { "action": "created", "author": "rnarkk", "comment_id": 863907655, "datetime": 1624009354000, "masked_author": "username_23", "text": "I put some questions on @username_15's RCF https://github.com/vercel/next.js/discussions/22381#discussioncomment-881384 to catch up with the status of the issue. Can someone help me understand the intricacy of the problem and draw the roadmap by answering my questions or giving me some general directions to solve the problem?\r\n\r\nIf the problem is entailing essential or not-straightforward-to-solve trade-offs between CommonJS and ESM or Webpack 4 and Webpack 5, do the core team have a *transition strategy*? How far the investigation has been proceeding? If you could share the internal status or consensus, it would be so much helpful.\r\n\r\nAlso looking for a further review and comments @username_15's PR https://github.com/vercel/next.js/pull/22153. (The current conflict is a one-line tweak to resolve.)\r\n\r\nThanks,", "title": null, "type": "comment" }, { "action": "created", "author": "entrptaher", "comment_id": 869112279, "datetime": 1624776731000, "masked_author": "username_24", "text": "Here is my current workaround with esm or jiti, and yarn.\r\n\r\nFirst install yarn, and esm or jiti.\r\n\r\n```\r\nyarn add esm\r\n```\r\n\r\nThen, create a .yarnrc file at root of the nextjs project where you have package.json\r\n\r\n```sh\r\nyarn-path \"./.yarn.js\"\r\n```\r\n\r\nNow try either of these,\r\n\r\n```sh\r\nNODE_OPTIONS=\"--require esm\" yarn next build\r\n```\r\n\r\nOr,\r\n\r\nCreate a .yarn.js file which will be used to load esm right before \r\n\r\n```js\r\n\"use strict\"\r\n\r\nconst child_process = require(\"child_process\")\r\nconst { env } = process\r\nconst { parent } = module\r\n\r\nconst REQUIRE_ESM = \"--require esm\"\r\nconst REQUIRE_DOT_YARN = \"--require ./.yarn.js\"\r\n\r\nlet { NODE_OPTIONS } = env\r\n\r\nif (typeof NODE_OPTIONS === \"string\") {\r\n NODE_OPTIONS += \" \"\r\n} else {\r\n NODE_OPTIONS = \"\"\r\n}\r\n\r\nif (parent != null &&\r\n parent.id === \"internal/preload\") {\r\n env.NODE_OPTIONS = NODE_OPTIONS.replace(REQUIRE_DOT_YARN, REQUIRE_ESM)\r\n} else {\r\n child_process.spawn(\"yarn\", process.argv.slice(2), {\r\n env: Object.assign({}, env, {\r\n NODE_OPTIONS: REQUIRE_DOT_YARN + \" \" + NODE_OPTIONS\r\n }),\r\n stdio: \"inherit\"\r\n })\r\n}\r\n```\r\n\r\nNow whenever you do next using yarn, it will process that next.config.js file through esm,\r\n\r\n```sh\r\nyarn next build\r\n```", "title": null, "type": "comment" }, { "action": "created", "author": "stringa", "comment_id": 885823181, "datetime": 1627064961000, "masked_author": "username_25", "text": "@Edheltur Can this be done with npm?", "title": null, "type": "comment" }, { "action": "created", "author": "bartlangelaan", "comment_id": 894646782, "datetime": 1628338294000, "masked_author": "username_26", "text": "I think support for this is being worked on.\r\n\r\nI found the following PR: https://github.com/vercel/next.js/pull/27069\r\nIt is released in v11.0.2-canary.10 and newer.\r\n\r\nSince I have updated to the canary version, I don't get this error anymore.", "title": null, "type": "comment" }, { "action": "created", "author": "Himself65", "comment_id": 900749593, "datetime": 1629251300000, "masked_author": "username_27", "text": "seems like next.js doesn't support [unist-util-visit](https://www.npmjs.com/package/unist-util-visit) `v4.x`", "title": null, "type": "comment" }, { "action": "created", "author": "delbaoliveira", "comment_id": 900892763, "datetime": 1629272416000, "masked_author": "username_28", "text": "Hey @username_27, I recently came across this issue with `unist-util-visit` for something I'm working on related to MDX. The import changed from `import visit from 'unist-util-visit'` to `import { visit } from 'unist-util-visit'` in v3.0. Hopefully, that's helpful!", "title": null, "type": "comment" }, { "action": "created", "author": "Beraliv", "comment_id": 900895131, "datetime": 1629272666000, "masked_author": "username_29", "text": "I replaced and it didn't help 😓\n\nI will share logs\n\nBut all in all, it was here before the rebase - https://github.com/username_29/beraliv.dev/pull/215 (it removed my change with { visit })", "title": null, "type": "comment" }, { "action": "created", "author": "stefanprobst", "comment_id": 900899253, "datetime": 1629273091000, "masked_author": "username_30", "text": "you cannot currently import ESM-only packages (like `unist-util-visit@4`) in `next.config.js` (see [this comment](https://github.com/vercel/next.js/issues/23725#issuecomment-897730810)). it should work fine anywhere else when setting the experimental `esmExternals` option.", "title": null, "type": "comment" }, { "action": "created", "author": "stringa", "comment_id": 900929669, "datetime": 1629275824000, "masked_author": "username_25", "text": "I was able to get esm modules working after updating to at least Next@11.0.2", "title": null, "type": "comment" }, { "action": "created", "author": "equinusocio", "comment_id": 901079549, "datetime": 1629290249000, "masked_author": "username_31", "text": "Same issue here with nextjs `11.1.0` and rehype plugins for `@next/mdx`. I have to replace the deprecated `remark-autolink-headings` with the new `rehype-autolink-headings` which has `type: module` inside the package and doesn't work, Same for the new `rehype-slug` version.", "title": null, "type": "comment" }, { "action": "created", "author": "stringa", "comment_id": 901242446, "datetime": 1629303022000, "masked_author": "username_25", "text": "I had these issues until I moved over to next 11.0.2 canary", "title": null, "type": "comment" }, { "action": "created", "author": "equinusocio", "comment_id": 901269395, "datetime": 1629305348000, "masked_author": "username_31", "text": "@username_25 are you suggesting that downgrading to 11.0.2 solves the issue?", "title": null, "type": "comment" }, { "action": "created", "author": "jamesTbaker", "comment_id": 901327554, "datetime": 1629310557000, "masked_author": "username_32", "text": "If I'm correctly understanding the [11.1.0 release notes](https://github.com/vercel/next.js/releases/tag/v11.1.0), this issue was resolved in 11.1.0.", "title": null, "type": "comment" }, { "action": "created", "author": "Himself65", "comment_id": 901525030, "datetime": 1629334181000, "masked_author": "username_27", "text": "I replace it with `import('xxx')`, and seems to works.\r\n\r\n```diff\r\nIndex: lib/img-to-jsx.js\r\nIDEA additional info:\r\nSubsystem: com.intellij.openapi.diff.impl.patch.CharsetEP\r\n<+>UTF-8\r\n===================================================================\r\ndiff --git a/lib/img-to-jsx.js b/lib/img-to-jsx.js\r\n--- a/lib/img-to-jsx.js\t(revision 0ec5b1d2dfbe0c6852d0eaee92b741583a9b89ad)\r\n+++ b/lib/img-to-jsx.js\t(revision 39eddb60b3c978a708b609ab305f007a7540d8e1)\r\n@@ -1,8 +1,8 @@\r\n-const visit = require('unist-util-visit')\r\n const sizeOf = require('image-size')\r\n const fs = require('fs')\r\n \r\n-module.exports = (options) => (tree) => {\r\n+module.exports = (options) => async (tree) => {\r\n+ const { visit } = await import('unist-util-visit')\r\n visit(\r\n tree,\r\n // only visit p tags that contain an img element\r\nIndex: lib/mdx.js\r\nIDEA additional info:\r\nSubsystem: com.intellij.openapi.diff.impl.patch.CharsetEP\r\n<+>UTF-8\r\n===================================================================\r\ndiff --git a/lib/mdx.js b/lib/mdx.js\r\n--- a/lib/mdx.js\t(revision 0ec5b1d2dfbe0c6852d0eaee92b741583a9b89ad)\r\n+++ b/lib/mdx.js\t(revision 39eddb60b3c978a708b609ab305f007a7540d8e1)\r\n@@ -4,7 +4,6 @@\r\n import { serialize } from 'next-mdx-remote/serialize'\r\n import path from 'path'\r\n import readingTime from 'reading-time'\r\n-import visit from 'unist-util-visit'\r\n import imgToJsx from './img-to-jsx'\r\n import getAllFilesRecursively from './utils/files'\r\n \r\n@@ -49,6 +48,7 @@\r\n : fs.readFileSync(mdPath, 'utf8')\r\n \r\n const { data, content } = matter(source)\r\n+ const { visit } = await import('unist-util-visit')\r\n const mdxSource = await serialize(content, {\r\n components: MDXComponents,\r\n mdxOptions: {\r\n```", "title": null, "type": "comment" }, { "action": "created", "author": "stefanprobst", "comment_id": 901620453, "datetime": 1629350666000, "masked_author": "username_30", "text": "i would add that it's perfectly ok to just keep using the previous major version of `unified` packages (`unist-util-visit@3` in this case, which works with `unified@9` / `remark@13`), until esm support has improved throughout the ecosystem.", "title": null, "type": "comment" }, { "action": "created", "author": "TamDc", "comment_id": 904799975, "datetime": 1629823112000, "masked_author": "username_33", "text": "Any solution for this guy? I have the same problem when optimizing my nextjs project.", "title": null, "type": "comment" }, { "action": "created", "author": "stfenjobs", "comment_id": 912980018, "datetime": 1630764324000, "masked_author": "username_34", "text": "same here:\r\n\r\nnextjs: 11.1.0\r\n\r\nI want use a remark plugins , some code like this :\r\n```\r\n\r\nimport {visit} from 'unist-util-visit'\r\n...\r\n\r\n\r\n```", "title": null, "type": "comment" }, { "action": "created", "author": "nedkelly", "comment_id": 918719335, "datetime": 1631583095000, "masked_author": "username_35", "text": "I'm having the same issue with `react-markdown`.\r\n\r\nTypeScript\r\nNext.js 11.1.0\r\nYarn 2\r\n\r\nI tried adding `esmExternals` in `next.config.js` but still no joy.\r\n\r\nUsing Dynamic import fixes it though:\r\n\r\n```javascript\r\nconst ReactMarkdown = dynamic(() => import('react-markdown'));\r\n```", "title": null, "type": "comment" }, { "action": "created", "author": "equinusocio", "comment_id": 918807165, "datetime": 1631596141000, "masked_author": "username_31", "text": "Are you doing this inside next config?", "title": null, "type": "comment" }, { "action": "created", "author": "city17", "comment_id": 925590253, "datetime": 1632384383000, "masked_author": "username_36", "text": "Same problem here, unable to get remark-slug or rehype-slug working due to this error.", "title": null, "type": "comment" }, { "action": "created", "author": "stringa", "comment_id": 925941104, "datetime": 1632412354000, "masked_author": "username_25", "text": "Just use\r\n\r\nconst a = import('react-markdown') where ever you want to use the dependency", "title": null, "type": "comment" }, { "action": "created", "author": "equinusocio", "comment_id": 925967326, "datetime": 1632414261000, "masked_author": "username_31", "text": "You can't use import insite next config..", "title": null, "type": "comment" }, { "action": "created", "author": "nedkelly", "comment_id": 926121487, "datetime": 1632428063000, "masked_author": "username_35", "text": "No, and to be honest, using dynamic import is a little unstable, it sometimes fails to load so it's not really a fix. And it doesn't work in next.config.js.", "title": null, "type": "comment" }, { "action": "created", "author": "alecmev", "comment_id": 926124277, "datetime": 1632428338000, "masked_author": "username_37", "text": "No disrespect to the participants, but I think too many people misunderstand this issue, resulting in all sorts of irrelevant ESM problems being reported here. Can commenting be limited to collaborators, please?", "title": null, "type": "comment" }, { "action": "created", "author": "equinusocio", "comment_id": 926358338, "datetime": 1632461539000, "masked_author": "username_31", "text": "So we are all stupid. Ok. Anyway the issue is pretty clear, any nextjs plugin which are now modules are totally unusable because nextjs config file doesn't support modules.", "title": null, "type": "comment" }, { "action": "created", "author": "Richienb", "comment_id": 926360962, "datetime": 1632462061000, "masked_author": "username_38", "text": "![No, No. He's Got a Point](https://user-images.githubusercontent.com/29491356/134623442-749b7e10-4472-4b50-a935-426d76ba9612.png)\r\n\r\nThis issue was for allowing the `next.config.js` to be written with ESM. The most recent conversation is for allowing ESM modules to be loaded within the source code.\r\n\r\nThe best thing to do is to move this part of the conversation to a seperate issue and guide people who want to talk about that specific thing there.\r\n\r\nTo people who are having trouble loading modules written in ESM: create a reproduction repository and create a new bug report. As for general discussion about it, we have Discussions.", "title": null, "type": "comment" }, { "action": "created", "author": "equinusocio", "comment_id": 926420260, "datetime": 1632469707000, "masked_author": "username_31", "text": "That's totally different from saying \"let's close the comments\". Anyway, this is the issue i want to follow.", "title": null, "type": "comment" }, { "action": "created", "author": "ctjlewis", "comment_id": 926685385, "datetime": 1632494752000, "masked_author": "username_39", "text": "", "title": null, "type": "comment" }, { "action": "created", "author": "rnarkk", "comment_id": 926991053, "datetime": 1632534070000, "masked_author": "username_23", "text": "@username_39 Thank you for sharing your exploration. Based on it, do you think anything else will be straightforward in rewriting CJS to ESM when Jest's ESM support is solved?\r\n\r\n---\r\n\r\n * https://github.com/facebook/jest/issues/9430 to follow the progress of Jest's ESM support.", "title": null, "type": "comment" }, { "action": "created", "author": "ctjlewis", "comment_id": 926993433, "datetime": 1632535051000, "masked_author": "username_39", "text": "@username_23 There are a few obstacles (some related to [TS itself](https://github.com/microsoft/TypeScript/issues/42151), which we may be able to workaround with [Node12 resolution](https://github.com/microsoft/TypeScript/pull/44501) as of next release) to getting Next to that point, which I will detail in a separate issue and link here, but the way I'd propose implementing it, you would just need to set `\"type\": \"module\"` or use `.mjs` extension to signal ESM, and Next would handle the rest after you rewrite it.\r\n\r\nFor TS projects, you'd want to configure your local project settings to use the new Node12 resolution, so that it forces you to write complete ESM-compatible import specifiers (or use something like [tszip](https://github.com/tszip/tszip) to rewrite them for you, which is what I do).", "title": null, "type": "comment" }, { "action": "created", "author": "timneutkens", "comment_id": 944156493, "datetime": 1634291276000, "masked_author": "username_40", "text": "I've opened a PR that changes from `require()` to `import()` for config loading and adds support for `next.config.mjs`. I'll keep this issue open as there's still more work to do for `\"type\": \"module\"` in `package.json` but this change should help until then: https://github.com/vercel/next.js/pull/29935", "title": null, "type": "comment" } ]
41
58
18,089
false
false
18,089
true
MicrosoftDocs/azure-docs
MicrosoftDocs
428,441,363
28,585
null
[ { "action": "opened", "author": "orndorffgrant", "comment_id": null, "datetime": 1554238755000, "masked_author": "username_0", "text": "In the \"Enable SMART on FHIR proxy\" section, it says to go to the Authentication settings and \"change the Audience to match the URI of your FHIR API and check the SMART on FHIR proxy checkbox.\"\n\nIn the Azure Portal, on the Authentication settings page of the Azure API for FHIR that I just created, the Authority and Audience fields are disabled, and there is no SMART on FHIR proxy checkbox.\n\nAm I missing something? Also, I noticed this tutorial is very recent; is this feature enabled yet? \n\n---\n#### Document Details\n\n⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.*\n\n* ID: 568860e6-9e61-5bad-05d3-db6a0163f81e\n* Version Independent ID: 0956f0b4-168c-d1ed-1d59-9b00d114620b\n* Content: [Azure API for FHIR SMART on FHIR proxy](https://docs.microsoft.com/en-us/azure/healthcare-apis/use-smart-on-fhir-proxy)\n* Content Source: [articles/healthcare-apis/use-smart-on-fhir-proxy.md](https://github.com/Microsoft/azure-docs/blob/master/articles/healthcare-apis/use-smart-on-fhir-proxy.md)\n* Service: **healthcare-apis**\n* GitHub Login: @username_1\n* Microsoft Alias: **mihansen**", "title": "No SMART on FHIR proxy checkbox in Azure Portal", "type": "issue" }, { "action": "created", "author": "hansenms", "comment_id": 479203525, "datetime": 1554239343000, "masked_author": "username_1", "text": "The changes are still rolling out. The docs just published first. Should be there by the end of today or tomorrow.", "title": null, "type": "comment" }, { "action": "created", "author": "orndorffgrant", "comment_id": 479204815, "datetime": 1554239546000, "masked_author": "username_0", "text": "That makes sense - great! Thank you", "title": null, "type": "comment" }, { "action": "closed", "author": "orndorffgrant", "comment_id": null, "datetime": 1554239553000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" }, { "action": "reopened", "author": "femsulu", "comment_id": null, "datetime": 1554248228000, "masked_author": "username_2", "text": "In the \"Enable SMART on FHIR proxy\" section, it says to go to the Authentication settings and \"change the Audience to match the URI of your FHIR API and check the SMART on FHIR proxy checkbox.\"\n\nIn the Azure Portal, on the Authentication settings page of the Azure API for FHIR that I just created, the Authority and Audience fields are disabled, and there is no SMART on FHIR proxy checkbox.\n\nAm I missing something? Also, I noticed this tutorial is very recent; is this feature enabled yet? \n\n---\n#### Document Details\n\n⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.*\n\n* ID: 568860e6-9e61-5bad-05d3-db6a0163f81e\n* Version Independent ID: 0956f0b4-168c-d1ed-1d59-9b00d114620b\n* Content: [Azure API for FHIR SMART on FHIR proxy](https://docs.microsoft.com/en-us/azure/healthcare-apis/use-smart-on-fhir-proxy)\n* Content Source: [articles/healthcare-apis/use-smart-on-fhir-proxy.md](https://github.com/Microsoft/azure-docs/blob/master/articles/healthcare-apis/use-smart-on-fhir-proxy.md)\n* Service: **healthcare-apis**\n* GitHub Login: @username_1\n* Microsoft Alias: **mihansen**", "title": "No SMART on FHIR proxy checkbox in Azure Portal", "type": "issue" }, { "action": "created", "author": "femsulu", "comment_id": 479256150, "datetime": 1554248328000, "masked_author": "username_2", "text": "re-opened to apply triage labels.", "title": null, "type": "comment" }, { "action": "closed", "author": "femsulu", "comment_id": null, "datetime": 1554248328000, "masked_author": "username_2", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "hansenms", "comment_id": 479310497, "datetime": 1554259800000, "masked_author": "username_1", "text": "@username_0, it should be deployed now. You may have to clear your browser cache.", "title": null, "type": "comment" }, { "action": "created", "author": "orndorffgrant", "comment_id": 479495435, "datetime": 1554299078000, "masked_author": "username_0", "text": "@username_1 Just checked. The fields are editable and the checkbox is there! Thanks again!", "title": null, "type": "comment" }, { "action": "created", "author": "rmharrison", "comment_id": 479619033, "datetime": 1554318275000, "masked_author": "username_3", "text": "FFR, \"Enable SMART on FHIR proxy\" is under \"\"Additional Settings\"\r\n\r\n![20190403_Azure_FHIRproxy](https://user-images.githubusercontent.com/4275722/55505611-78aca280-5621-11e9-960d-4a8dc8840264.png)", "title": null, "type": "comment" }, { "action": "created", "author": "hansenms", "comment_id": 479636081, "datetime": 1554321434000, "masked_author": "username_1", "text": "@username_3, it is during provisioning, yes, but after provisioning (which the tutorial assumes, https://docs.microsoft.com/en-us/azure/healthcare-apis/use-smart-on-fhir-proxy#prerequisites), it is under \"Authentication\". Hope this helps.", "title": null, "type": "comment" } ]
4
11
3,027
false
false
3,027
true
threat-defuser/threat-defuser.org
threat-defuser
704,293,977
23
{ "number": 23, "repo": "threat-defuser.org", "user_login": "threat-defuser" }
[ { "action": "opened", "author": "lajanda", "comment_id": null, "datetime": 1600427337000, "masked_author": "username_0", "text": "Add How to document. Note that the document has been uploaded in an issue.", "title": "Add How to document", "type": "issue" }, { "action": "created", "author": "lajanda", "comment_id": 694826632, "datetime": 1600430369000, "masked_author": "username_0", "text": "Sorry, I was dumb, I tried to upload the file first and then do the changes. If I had tried to make the changes first, I would have seen that I could put the file in the pull request. I will try to do better in the future!\r\n --laura", "title": null, "type": "comment" }, { "action": "created", "author": "bast", "comment_id": 694831166, "datetime": 1600431014000, "masked_author": "username_1", "text": "No problem. I will merge this now and send a follow-up fix and ping you in there.", "title": null, "type": "comment" } ]
2
3
398
false
false
398
false
ytdl-org/youtube-dl
ytdl-org
424,633,303
20,464
null
[ { "action": "opened", "author": "avagraha", "comment_id": null, "datetime": 1553445723000, "masked_author": "username_0", "text": "## Please follow the guide below\r\n\r\n- You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly\r\n- Put an `x` into all the boxes [ ] relevant to your *issue* (like this: `[x]`)\r\n- Use the *Preview* tab to see what your issue will actually look like\r\n\r\n---\r\n\r\n### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2019.03.18*. If it's not, read [this FAQ entry](https://github.com/ytdl-org/youtube-dl/blob/master/README.md#how-do-i-update-youtube-dl) and update. Issues with outdated version will be rejected.\r\n- [x ] I've **verified** and **I assure** that I'm running youtube-dl **2019.03.18**\r\n\r\n### Before submitting an *issue* make sure you have:\r\n- [x ] At least skimmed through the [README](https://github.com/ytdl-org/youtube-dl/blob/master/README.md), **most notably** the [FAQ](https://github.com/ytdl-org/youtube-dl#faq) and [BUGS](https://github.com/ytdl-org/youtube-dl#bugs) sections\r\n- [ x] [Searched](https://github.com/ytdl-org/youtube-dl/search?type=Issues) the bugtracker for similar issues including closed ones\r\n- [ x] Checked that provided video/audio/playlist URLs (if any) are alive and playable in a browser\r\n\r\n### What is the purpose of your *issue*?\r\n- [x ] Bug report (encountered problems with youtube-dl)\r\n- [ ] Site support request (request for adding support for a new site)\r\n- [ ] Feature request (request for a new functionality)\r\n- [ ] Question\r\n- [ ] Other\r\n\r\n---\r\n\r\n### The following sections concretize particular purposed issues, you can erase any section (the contents between triple ---) not applicable to your *issue*\r\n\r\n---\r\n\r\n### If the purpose of this *issue* is a *bug report*, *site support request* or you are not completely sure provide the full verbose output as follows:\r\n\r\nAdd the `-v` flag to **your command line** you run youtube-dl with (`youtube-dl -v <your command line>`), copy the **whole** output and insert it here. It should look similar to one below (replace it with **your** log inserted between triple ```):\r\n\r\n```\r\n[debug] System config: []\r\n[debug] User config: []\r\n[debug] Command-line args: [u'-v', u'http://www.youtube.com/watch?v=BaW_jenozKcj']\r\n[debug] Encodings: locale cp1251, fs mbcs, out cp866, pref cp1251\r\n[debug] youtube-dl version 2019.03.18\r\n[debug] Python version 2.7.11 - Windows-2003Server-5.2.3790-SP2\r\n[debug] exe versions: ffmpeg N-75573-g1d0487f, ffprobe N-75573-g1d0487f, rtmpdump 2.4\r\n[debug] Proxy map: {}\r\n...\r\n<end of log>\r\n```\r\n\r\n---\r\n\r\n### If the purpose of this *issue* is a *site support request* please provide all kinds of example URLs support for which should be included (replace following example URLs by **yours**):\r\n- Single video: https://www.youtube.com/watch?v=BaW_jenozKc\r\n- Single video: https://youtu.be/BaW_jenozKc\r\n- Playlist: https://www.youtube.com/playlist?list=PL4lCao7KL_QFVb7Iudeipvc2BCavECqzc\r\n\r\nNote that **youtube-dl does not support sites dedicated to [copyright infringement](https://github.com/ytdl-org/youtube-dl#can-you-add-support-for-this-anime-video-site-or-site-which-shows-current-movies-for-free)**. In order for site support request to be accepted all provided example URLs should not violate any copyrights.\r\n\r\n---\r\n\r\n### Description of your *issue*, suggested solution and other information\r\n\r\nExplanation of your *issue* in arbitrary form goes here. Please make sure the [description is worded well enough to be understood](https://github.com/ytdl-org/youtube-dl#is-the-description-of-the-issue-itself-sufficient). Provide as much context and examples as possible.\r\nIf work on your *issue* requires account credentials please provide them or explain how one can obtain them.\r\n\r\n\r\n\r\n\r\n\r\nWarning: link is INACTIVE NOW, i.e. you should wait 14.00-14.20 hour \r\n(Rome-Berlin time) or 19.35-20.00, every day; otherwise - if you try NOW - \r\nyou do NOT reach the live.\r\n/Warning\r\n\r\n\r\nhttps://www.rainews.it/tgr/fvg/notiziari/live.html\r\n\r\n\r\nLOG:\r\n\r\nC:\\Users\\andrea>youtube-dl -v https://www.rainews.it/tgr/fvg/notiziari/live.\r\nhtml\r\n[debug] System config: []\r\n[debug] User config: []\r\n[debug] Custom config: []\r\n[debug] Command-line args: ['-v', 'https://www.rainews.it/tgr/fvg/notiziari\r\n/live.html']\r\n[debug] Encodings: locale cp1252, fs mbcs, out cp850, pref cp1252\r\n[debug] youtube-dl version 2019.03.18\r\n[debug] Python version 3.4.4 (CPython) - Windows-Vista-6.0.6002-SP2\r\n[debug] exe versions: ffmpeg N-92765-g2744d6b-Reino, ffprobe N-92765-g2744d\r\n6b-Reino\r\n[debug] Proxy map: {}\r\n[generic] live: Requesting header\r\nWARNING: Falling back on generic information extractor.\r\n[generic] live: Downloading webpage\r\n[generic] live: Extracting information\r\nERROR: Unsupported URL: https://www.rainews.it/tgr/fvg/notiziari/live.html\r\nTraceback (most recent call last):\r\n File \"C:\\Users\\dst\\AppData\\Roaming\\Build archive\\youtube-dl\\ytdl-org\\tmpc\r\ns52imf5\\build\\youtube_dl\\YoutubeDL.py\", line 794, in extract_info\r\n File \"C:\\Users\\dst\\AppData\\Roaming\\Build archive\\youtube-dl\\ytdl-org\\tmpc\r\ns52imf5\\build\\youtube_dl\\extractor\\common.py\", line 529, in extract\r\n File \"C:\\Users\\dst\\AppData\\Roaming\\Build archive\\youtube-dl\\ytdl-org\\tmpc\r\ns52imf5\\build\\youtube_dl\\extractor\\generic.py\", line 3320, in _real_extract\r\n\r\nyoutube_dl.utils.UnsupportedError: Unsupported URL: https://www.rainews.it/\r\ntgr/fvg/notiziari/live.html", "title": "[Raiplay. Live only!]", "type": "issue" } ]
1
1
5,364
false
false
5,364
false
GoogleChromeLabs/bubblewrap
GoogleChromeLabs
657,544,491
240
null
[ { "action": "opened", "author": "peterpeterparker", "comment_id": null, "datetime": 1594835927000, "masked_author": "username_0", "text": "**Describe the bug**\r\nWhen I generate an APK with the PWA builder, the resulting splashscreen is glitchy. The bottom of our logo is not round (anymore, used to be ok in a previous version of the tool).\r\n\r\nMoreover, which we don't see that well on the screenshots, it seems that the logo is surrounded by a really super thin border (like \"border: 0.1px solid white\").\r\n\r\n**History**\r\nI have opened a previous [issue](https://github.com/pwa-builder/PWABuilder/issues/947) in PWABuilder but as it relies on Bubblewrap, I was forwarded here.\r\n\r\n**Info**\r\nMaskable icon: https://deckdeckgo.com/assets/favicon/android-chrome-512x512.png\r\n\r\nManifest.json: https://deckdeckgo.com/manifest.json\r\n\r\nGoogle play: https://play.google.com/store/apps/details?id=com.deckdeckgo.twa\r\n\r\n**Screenshots**\r\n\r\nPreviously:\r\n\r\n![87219139-1cbee680-c359-11ea-8302-7f6ed9cdb90a](https://user-images.githubusercontent.com/16886711/87578999-8d596080-c6d5-11ea-9572-73f78d07ebb9.jpg)\r\n\r\nNewly:\r\n\r\n![87219145-25afb800-c359-11ea-8be7-17580b519acf](https://user-images.githubusercontent.com/16886711/87579014-95b19b80-c6d5-11ea-91ba-d893242f0241.jpg)", "title": "Maskable icons glitch", "type": "issue" }, { "action": "created", "author": "JudahGabriel", "comment_id": 658934443, "datetime": 1594838246000, "masked_author": "username_1", "text": "@username_2 I don't think this is PWABuilder-related. PWABuilder is passing the 512 images to Bubblewrap. Any idea why he's seeing visual artifacts in his splash screen.", "title": null, "type": "comment" }, { "action": "created", "author": "andreban", "comment_id": 658956443, "datetime": 1594840721000, "masked_author": "username_2", "text": "The maskable image is applied to the icon. The regular icon is used for the splash screen: https://deckdeckgo.com/assets/favicon/icon-default-512x512.png\r\n\r\nIt seems the artifact comes from the icon in the manifest. This is what the image looks like:\r\n![splash](https://user-images.githubusercontent.com/1733592/87585981-be3a9500-c6d7-11ea-80b3-e4d587bba1d0.png)", "title": null, "type": "comment" }, { "action": "created", "author": "peterpeterparker", "comment_id": 658961852, "datetime": 1594841321000, "masked_author": "username_0", "text": "Thx for your feedback, both of you.\r\n\r\nIs the regular icon instead of the maskable icon use for the screenshot on purpose?\r\n\r\n- If no, should the maskable one be used or that does not make sense?\r\n\r\n- If yes, @username_1 maybe it should be a new option or info in the pwabuilder to make it obvious to user that the regular one is used?", "title": null, "type": "comment" }, { "action": "created", "author": "andreban", "comment_id": 658965761, "datetime": 1594841749000, "masked_author": "username_2", "text": "Yes, the regular icon is used for the splash screen on purpose - maskable really only makes sense for the launcher icon. The same is true for PWAs installed via add to home screen.", "title": null, "type": "comment" }, { "action": "created", "author": "peterpeterparker", "comment_id": 658969338, "datetime": 1594842180000, "masked_author": "username_0", "text": "Makes sense.\r\n\r\nI can recreate a TWA knowing the regular one is used. Should this issue be closed or remain open?\r\n\r\nEven though it is cleared which icon is used, I kind of think that there is a small glitch but as I don't know the all process, maybe it all make sense and therefore I have absolutely no problem about closing this issue.\r\n\r\nFor example, if I add a color to the background of the source image, then we can notice that there is no extra \"white\" borders as these in the screenshot above which has been generated.\r\n\r\n<img width=\"659\" alt=\"Capture d’écran 2020-07-15 à 21 38 21\" src=\"https://user-images.githubusercontent.com/16886711/87588500-111a4980-c6e4-11ea-9588-bc07ef69fd55.png\">", "title": null, "type": "comment" }, { "action": "created", "author": "andreban", "comment_id": 658997122, "datetime": 1594845524000, "masked_author": "username_2", "text": "This seems to be due to the change on #193. It seems the resize process has compression enabled, which is generating the artifact.", "title": null, "type": "comment" }, { "action": "created", "author": "peterpeterparker", "comment_id": 659224477, "datetime": 1594885674000, "masked_author": "username_0", "text": "Understood, thx @username_2 for the answers and time 👍", "title": null, "type": "comment" }, { "action": "created", "author": "andreban", "comment_id": 659517815, "datetime": 1594916182000, "masked_author": "username_2", "text": "Quick update - I was looked into this today. The issue is caused when `sharp` resizes the image.\r\n\r\nMy theory: It seems the issue happens when interpolating transparent pixels with regular pixels - assuming a transparent pixel looks like: `rgba(255, 255, 255, 0)`, interpolating with a value like `rgba(255, 0, 0, 255)` will generate lighter tones of red while changing the transparency.\r\n\r\nThe following switches to a different algorithm to resize / interpolate images. Since it doesn't interpolate values, but selects the value from neighbouring pixels, the issue doesn't happen.\r\n\r\n```typescript\r\n await sharp(data, {density: 2400})\r\n .resize(size, size, {kernel: 'nearest'})\r\n .png()\r\n .toFile(fileName);\r\n```\r\nThe downside is that the output image has lower quality.\r\n\r\nAnother option is getting rid of transparency altogether and paint the background with fixed color:\r\n```typescript\r\n await sharp(data, {density: 2400})\r\n .resize(size)\r\n .flatten({background: '#c74707'})\r\n .png()\r\n .toFile(fileName);\r\n```\r\nBut this would mean that the launcher wouldn't be transparent anymore, and wouldn't mach the underlying platform in some cases.\r\n\r\nI'm still looking into alternatives.", "title": null, "type": "comment" }, { "action": "created", "author": "peterpeterparker", "comment_id": 659570938, "datetime": 1594921831000, "masked_author": "username_0", "text": "Thx for the update @username_2 \r\n\r\nIf it takes too much time or if you don't find any super solution, it isn't a problem to me if we close the issue. I mean I can always do some change logo form or color, just saying. But happy to hear that you are having a look!", "title": null, "type": "comment" }, { "action": "created", "author": "JudahGabriel", "comment_id": 660571328, "datetime": 1595123257000, "masked_author": "username_1", "text": "I have encountered a possibly related issue. \r\n\r\nThis week I updated my existing PWA (web view-based) to TWA via PWABuilder+Bubblewrap. 😎 The new app works great (shortcuts and push notifications 🎉)! Except for one thing, the icon is showing some weirdness:\r\n\r\n![image](https://user-images.githubusercontent.com/312936/87865123-1e267b00-c926-11ea-82d5-ae9f27168067.png)\r\n\r\nNotice the edges of the icon are showing some white area around the edges. This is on a Pixel 3a emulator.\r\n\r\nMy app [manifest is here](http://messianicradio.com/manifest.json). I double-checked: PWABuilder is sending [this 512x512 image](https://messianicradio.com/images/chavah512x512.png) as the icon, and passing [this 1000x1000 image](/images/chavah-maskable1000x1000.png) as the maskable icon. As you can see, there is no white on either of those images.\r\n\r\nIs this related to the above image resizing problem? Should I be passing in a different image size to Bubblewrap? (PWABuilder defaults to the first 512x512 image, then fallsback to 192x192.)", "title": null, "type": "comment" }, { "action": "created", "author": "andreban", "comment_id": 660610839, "datetime": 1595148425000, "masked_author": "username_2", "text": "@username_1 this looks different, related to the markup for the maskable icon. Would you mind filing a different issue?", "title": null, "type": "comment" }, { "action": "created", "author": "andreban", "comment_id": 660610913, "datetime": 1595148461000, "masked_author": "username_2", "text": "Filed https://github.com/lovell/sharp/issues/2299 for help on what may be going wrong here", "title": null, "type": "comment" }, { "action": "created", "author": "andreban", "comment_id": 662429356, "datetime": 1595421587000, "masked_author": "username_2", "text": "Created #259 to discuss reverting from sharp.", "title": null, "type": "comment" }, { "action": "created", "author": "andreban", "comment_id": 663542508, "datetime": 1595597830000, "masked_author": "username_2", "text": "#262 returns to `jimp` instead of `sharp`, which was the cause of this issue.", "title": null, "type": "comment" }, { "action": "closed", "author": "andreban", "comment_id": null, "datetime": 1595597830000, "masked_author": "username_2", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "peterpeterparker", "comment_id": 663543045, "datetime": 1595597900000, "masked_author": "username_0", "text": "Sweet, thank you @username_2 👍", "title": null, "type": "comment" } ]
3
17
5,940
false
false
5,940
true
jlippold/tweakCompatible
null
577,425,610
118,931
null
[ { "action": "opened", "author": "cryptographic1337", "comment_id": null, "datetime": 1583629499000, "masked_author": "username_0", "text": "```\r\n{\r\n \"packageId\": \"com.yourepo.kingmehu.perfecttimexs\",\r\n \"action\": \"working\",\r\n \"userInfo\": {\r\n \"arch32\": false,\r\n \"packageId\": \"com.yourepo.kingmehu.perfecttimexs\",\r\n \"deviceId\": \"iPhone10,3\",\r\n \"url\": \"http://cydia.saurik.com/package/com.yourepo.kingmehu.perfecttimexs/\",\r\n \"iOSVersion\": \"13.3.1\",\r\n \"packageVersionIndexed\": true,\r\n \"packageName\": \"PerfectTimeXS\",\r\n \"category\": \"Tweaks\",\r\n \"repository\": \"kingmehu Source - YouRepo\",\r\n \"name\": \"PerfectTimeXS\",\r\n \"installed\": \"0.2.1-2\",\r\n \"packageIndexed\": true,\r\n \"packageStatusExplaination\": \"A matching version of this tweak for this iOS version could not be found. Please submit a review if you choose to install.\",\r\n \"id\": \"com.yourepo.kingmehu.perfecttimexs\",\r\n \"commercial\": false,\r\n \"packageInstalled\": true,\r\n \"tweakCompatVersion\": \"0.1.5\",\r\n \"shortDescription\": \"modif the status bar time format,just for iPhone X/S/MAX\",\r\n \"latest\": \"0.2.1-2\",\r\n \"author\": \"HuChundong\",\r\n \"packageStatus\": \"Unknown\"\r\n },\r\n \"base64\": \"eyJhcmNoMzIiOmZhbHNlLCJwYWNrYWdlSWQiOiJjb20ueW91cmVwby5raW5nbWVodS5wZXJmZWN0dGltZXhzIiwiZGV2aWNlSWQiOiJpUGhvbmUxMCwzIiwidXJsIjoiaHR0cDpcL1wvY3lkaWEuc2F1cmlrLmNvbVwvcGFja2FnZVwvY29tLnlvdXJlcG8ua2luZ21laHUucGVyZmVjdHRpbWV4c1wvIiwiaU9TVmVyc2lvbiI6IjEzLjMuMSIsInBhY2thZ2VWZXJzaW9uSW5kZXhlZCI6dHJ1ZSwicGFja2FnZU5hbWUiOiJQZXJmZWN0VGltZVhTIiwiY2F0ZWdvcnkiOiJUd2Vha3MiLCJyZXBvc2l0b3J5Ijoia2luZ21laHUgU291cmNlIC0gWW91UmVwbyIsIm5hbWUiOiJQZXJmZWN0VGltZVhTIiwiaW5zdGFsbGVkIjoiMC4yLjEtMiIsInBhY2thZ2VJbmRleGVkIjp0cnVlLCJwYWNrYWdlU3RhdHVzRXhwbGFpbmF0aW9uIjoiQSBtYXRjaGluZyB2ZXJzaW9uIG9mIHRoaXMgdHdlYWsgZm9yIHRoaXMgaU9TIHZlcnNpb24gY291bGQgbm90IGJlIGZvdW5kLiBQbGVhc2Ugc3VibWl0IGEgcmV2aWV3IGlmIHlvdSBjaG9vc2UgdG8gaW5zdGFsbC4iLCJpZCI6ImNvbS55b3VyZXBvLmtpbmdtZWh1LnBlcmZlY3R0aW1leHMiLCJjb21tZXJjaWFsIjpmYWxzZSwicGFja2FnZUluc3RhbGxlZCI6dHJ1ZSwidHdlYWtDb21wYXRWZXJzaW9uIjoiMC4xLjUiLCJzaG9ydERlc2NyaXB0aW9uIjoibW9kaWYgdGhlIHN0YXR1cyBiYXIgdGltZSBmb3JtYXQsanVzdCBmb3IgaVBob25lIFhcL1NcL01BWCIsImxhdGVzdCI6IjAuMi4xLTIiLCJhdXRob3IiOiJIdUNodW5kb25nIiwicGFja2FnZVN0YXR1cyI6IlVua25vd24ifQ==\",\r\n \"chosenStatus\": \"working\",\r\n \"notes\": \"\"\r\n}\r\n```", "title": "`PerfectTimeXS` working on iOS 13.3.1", "type": "issue" }, { "action": "closed", "author": "jlippold", "comment_id": null, "datetime": 1583631103000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
3
3
2,410
false
true
2,168
false
Orbiit/elimination
Orbiit
573,127,805
39
null
[ { "action": "opened", "author": "SheepTester", "comment_id": null, "datetime": 1582945062000, "masked_author": "username_0", "text": "I worry that people may find three common nouns harder to remember than four digits. I think there should be an option to edit your elimination sequence.\r\n\r\nBeside the elimination sequence text, there could be a pencil icon for edit. Alternatively, it could be a link, like \"([edit](#)).\" This might throw the symmetry off though. Thus, I believe this relies on #34 first.", "title": "Add ability to change kill codes", "type": "issue" }, { "action": "created", "author": "SheepTester", "comment_id": 592874066, "datetime": 1582952151000, "masked_author": "username_0", "text": "API: https://github.com/username_0/web-server/commit/fa9e6e7dd60ca6507c54362685fd0f3c470d1ddc", "title": null, "type": "comment" }, { "action": "created", "author": "SheepTester", "comment_id": 593153658, "datetime": 1583101761000, "masked_author": "username_0", "text": "From Facebook, Brandon said not to change it. There was no other feedback on this idea, so I will not bother ruining the symmetry.\r\n\r\nThat the API exists leaves what could be considered a **vuln**erability, but I think it should be fine.", "title": null, "type": "comment" }, { "action": "closed", "author": "SheepTester", "comment_id": null, "datetime": 1583101762000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
1
4
703
false
false
703
true
saharshy29/bookList
null
652,790,153
3
{ "number": 3, "repo": "bookList", "user_login": "saharshy29" }
[ { "action": "opened", "author": "saharshy29", "comment_id": null, "datetime": 1594169670000, "masked_author": "username_0", "text": "Add basic UI to page", "title": "ui", "type": "issue" } ]
2
2
346
false
true
20
false