id
stringlengths
4
10
text
stringlengths
4
2.14M
source
stringclasses
2 values
created
timestamp[s]date
2001-05-16 21:05:09
2025-01-01 03:38:30
added
stringdate
2025-04-01 04:05:38
2025-04-01 07:14:06
metadata
dict
990319619
🛑 Piped-API is down In e60ed9b, Piped-API (https://piped-api.alefvanoon.xyz/trending?region=US) was down: HTTP code: 0 Response time: 0 ms Resolved: Piped-API is back up in 89d0e82.
gharchive/issue
2021-09-07T20:27:49
2025-04-01T06:37:46.965865
{ "authors": [ "alefvanoon" ], "repo": "alefvanoon/Status", "url": "https://github.com/alefvanoon/Status/issues/453", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
514324304
Fix SnowflakesLayer intermittent crash on gate noise size of 0. Found that SnowFlakesLayer will occasionally crash as a result of the gate_noise size being zero (ultimately deriving from a value sampled from flake_size). The fix in this PR is to force a minimum size of (1, 1) for the gate_noise. The following code reproduces the issue: import imgaug as ia snow = ia.augmenters.weather.Snowflakes( flake_size=(0.5, 1), speed=(0.003, 0.03) ) image = ia.quokka(size=(512, 512)) for i in range(1000): image_aug = snow.augment_image(image) print("done") The error output is: --------------------------------------------------------------------------- AssertionError Traceback (most recent call last) <ipython-input-1-29d7554150ca> in <module> 9 10 for i in range(1000): ---> 11 image_aug = snow.augment_image(image) 12 print("done") /workspace/code/imgaug/imgaug/augmenters/meta.py in augment_image(self, image, hooks) 712 "Expected image to have shape (height, width, [channels]), " 713 "got shape %s." % (image.shape,)) --> 714 return self.augment_images([image], hooks=hooks)[0] 715 716 def augment_images(self, images, parents=None, hooks=None): /workspace/code/imgaug/imgaug/augmenters/meta.py in augment_images(self, images, parents, hooks) 778 UnnormalizedBatch(images=images), 779 parents=parents, --> 780 hooks=hooks 781 ).images_aug 782 /workspace/code/imgaug/imgaug/augmenters/meta.py in augment_batch(self, batch, parents, hooks) 598 random_state=self.random_state, 599 parents=parents if parents is not None else [], --> 600 hooks=hooks) 601 602 # revert augmentables being set to None for non-activated augmenters /workspace/code/imgaug/imgaug/augmenters/meta.py in _augment_batch(self, batch, random_state, parents, hooks) 3295 batch_sub, 3296 parents=parents + [self], -> 3297 hooks=hooks 3298 ) 3299 batch = batch.invert_subselect_rows_by_indices_(active, /workspace/code/imgaug/imgaug/augmenters/meta.py in augment_batch(self, batch, parents, hooks) 598 random_state=self.random_state, 599 parents=parents if parents is not None else [], --> 600 hooks=hooks) 601 602 # revert augmentables being set to None for non-activated augmenters /workspace/code/imgaug/imgaug/augmenters/weather.py in _augment_batch(self, batch, random_state, parents, hooks) 832 rss = random_state.duplicate(len(images)) 833 for i, (image, rs) in enumerate(zip(images, rss)): --> 834 batch.images[i] = self.draw_on_image(image, rs) 835 return batch 836 /workspace/code/imgaug/imgaug/augmenters/weather.py in draw_on_image(self, image, random_state) 881 noise = self._gate(noise, gate_noise, self.gate_noise_size, rss[1]) 882 noise = ia.imresize_single_image(noise, (height, width), --> 883 interpolation="cubic") 884 885 # apply a bit of gaussian blur and then motion blur according to /workspace/code/imgaug/imgaug/imgaug.py in imresize_single_image(image, sizes, interpolation) 1600 1601 rs = imresize_many_images( -> 1602 image[np.newaxis, :, :, :], sizes, interpolation=interpolation) 1603 if grayscale: 1604 return rs[0, :, :, 0] /workspace/code/imgaug/imgaug/imgaug.py in imresize_many_images(images, sizes, interpolation) 1458 "width and/or number of channels of zero. " 1459 "Observed shapes were: %s." % ( -> 1460 str([image.shape for image in images]),)) 1461 1462 ip = interpolation AssertionError: Cannot resize images, because at least one image has a height and/or width and/or number of channels of zero. Observed shapes were: [(0, 0, 1)]. Merged this patch. Thanks for fixing this! Is there a new release coming soon? I'm currently using a modified copy of imgaug, which is painful when provisioning new machines... :P Probably soon-ish, I hope within the next two weeks or so.
gharchive/pull-request
2019-10-30T00:55:15
2025-04-01T06:37:46.972507
{ "authors": [ "OliverColeman", "aleju" ], "repo": "aleju/imgaug", "url": "https://github.com/aleju/imgaug/pull/471", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
584677981
Cache and Promse.all Cache does not work properly, Promise.all() results are undefined and only last one from Promise.all is actually a correct value. Time to time it works well, sometime You will revived 3 times undefined. https://codesandbox.io/s/charming-feynman-hxxws Just change routing, and checked consol logs All values should be an cached objects, without any undefined. Interesting. Okay, I will have a look as soon as possible. Found a fix. Stay tuned should work in v1.0
gharchive/issue
2020-03-19T20:24:07
2025-04-01T06:37:47.010006
{ "authors": [ "alex-cory", "bartoszgolebiowski" ], "repo": "alex-cory/use-http", "url": "https://github.com/alex-cory/use-http/issues/211", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
698427306
Resolve column indexes at plan stage No issue to close Description initial restructure to resolve column existence on query planning phase added ast cargo module changed Scalar::Binary representation updated expression evaluation in insert queries dynamic expression evaluation works only in update queries Client output 'yes'::boolean cast works again Pull Request Test Coverage Report for Build 248648728 495 of 774 (63.95%) changed or added relevant lines in 12 files are covered. 4 unchanged lines in 1 file lost coverage. Overall coverage decreased (-1.06%) to 85.568% Changes Missing Coverage Covered Lines Changed/Added Lines % src/binary/src/lib.rs 111 115 96.52% src/query_planner/src/planner/insert.rs 39 45 86.67% src/ast/src/values.rs 89 101 88.12% src/ast/src/scalar.rs 27 66 40.91% src/sql_engine/src/dml/insert.rs 66 106 62.26% src/ast/src/lib.rs 16 66 24.24% src/sql_engine/src/dml/update.rs 106 234 45.3% Files with Coverage Reduction New Missed Lines % src/sql_model/src/sql_types.rs 4 90.0% Totals Change from base Build 247538260: -1.06% Covered Lines: 6777 Relevant Lines: 7920 💛 - Coveralls
gharchive/pull-request
2020-09-10T19:56:28
2025-04-01T06:37:47.023395
{ "authors": [ "alex-dukhno", "coveralls" ], "repo": "alex-dukhno/database", "url": "https://github.com/alex-dukhno/database/pull/308", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
246551748
Support threads and automatic history sync Threading information is captured, but only basic formatting is done, at the moment. More thought is needed for the best way of presenting matches in threaded conversations. Also improved the gitignore to not include venv files, and removed CRLF endings in the source files. Something I'm thinking about, which would be affected by threads, is showing context around the matched entries. ie: showing the X entries before/after the machines lines, or X minutes. Similar to diff context lines. But you want to group the answers by thread, and present it in a way which makes sense to the viewer In addition to some miscellaneous improvements, this now will use channel.history to automatically fetch gaps in the history. This will work when a channel is added, to pull in any history, but also if the server goes offline. The RTC interface will lose any messages sent while offline, but channel.history will fill the gap. Hi! Looks great! I will test it a bit and come back to you. no, but there should have been a GROUP BY. please review my latest push. Thanks On 31 Jul. 2017 11:18 pm, "Alexander Shpak" notifications@github.com wrote: @alex-shpak commented on this pull request. In archivebot.py https://github.com/alex-shpak/slack-archive-bot/pull/1#discussion_r130349317 : message = '\n'.join(map(lambda s: '> %s' % s, line['message'].split('\n'))) # add > before each line username = get_user_name(line['user']) timestamp = get_timestamp(line['timestamp']) if line['thread_timestamp'] is not None: thread_timestamp = get_timestamp(line['thread_timestamp']) return '*<@%s> <#%s> <!date^%s^{date_short} {time_secs}|date>* <!date^%s^{date_short} {time_secs}|date>*\n %s %s)' % (username, line['channel'], timestamp, thread_timestamp, line['thread_title'], message) else: return '*<@%s> <#%s> <!date^%s^{date_short} {time_secs}|date>*\n%s)' % (username, line['channel'], timestamp, message) +def update_channel_history(conn): """ For each channel we have previously received, check if there are any later messages which we missed """ channels_map = dict(record for record in conn.execute("SELECT channel, MAX(timestamp) as latest_timestamp FROM messages")) Shouldn't it be DISTINCT(channel)? — You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/alex-shpak/slack-archive-bot/pull/1#pullrequestreview-53213682, or mute the thread https://github.com/notifications/unsubscribe-auth/AAOcEl2ny02Jkwt8QIInablmYNLa1XMaks5sTdQpgaJpZM4Onfd6 .
gharchive/pull-request
2017-07-29T23:32:53
2025-04-01T06:37:47.032992
{ "authors": [ "alex-shpak", "nicois" ], "repo": "alex-shpak/slack-archive-bot", "url": "https://github.com/alex-shpak/slack-archive-bot/pull/1", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
353705913
Question: is there a way to translate the map? Hi there, is there a way to get translated maps? There exists this package: https://github.com/mapbox/mapbox-gl-language. And it works with the standard mapbox-gl lib: import mapboxgl from 'mapbox-gl'; import MapboxLanguage from '@mapbox/mapbox-gl-language'; const map = new mapboxgl.Map({ container: 'map', style: 'mapbox://styles/mapbox/streets-v9', center: MAP_DEFAULT_LOCATION, zoom: MAP_DEFAULT_ZOOM, }); map.addControl(new MapboxLanguage()) So is there a way to access the map and add the control some how? Thanks for helping out! Hi! This is a duplicate of https://github.com/alex3165/react-mapbox-gl/issues/605, please see the answer there.
gharchive/issue
2018-08-24T09:14:00
2025-04-01T06:37:47.037135
{ "authors": [ "bumbus", "mklopets" ], "repo": "alex3165/react-mapbox-gl", "url": "https://github.com/alex3165/react-mapbox-gl/issues/616", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
720459012
alexa smart screen sdk with SSL enabled not working Briefly summarize your issue: i have build smart screen sdk on Ubuntu 18.04. SDK versions are smart screen sdk -> 2.2.1 and avs sdk -> 1.20.1. while building SS-SDK, i enabled the SSL with -DDISABLE_WEBSOCKET_SSL=OFF flag. i generated the keys and certs with method given in code base(https://github.com/alexa/alexa-smart-screen-sdk/blob/v2.2.1/modules/GUI/config/certificates/generate.sh). i kept the keys in directory where i ran the sampleApp and given those paths in SmartSmartSDKConfig.json file. when i run the sample app, i don't see the index.html page showing content. it is stuck at "Configuring Device..". Any configuration need to done in GUI components for SSL? and in generate.sh, client cert and keys are genered. How to use them?. i have attached the SmartScreenSDKConfig.json and logs with debug9. i also attached the sample certificate and keys what i generated. What is the expected behavior? index.html need to establish a connection and get the content What behavior are you observing? html file stuck at "Configuring Device..". In inspect of browser, seen that trying for wss connection. Provide the steps to reproduce the issue, if applicable: Build the SS-SDK with -DDISABLE_WEBSOCKET_SSL=OFF. Generate the keys with specified script. Give path for keys and cert in SmartScreenSDKConfig.json. provide the json while running sampleApp. Tell us about your environment: Ubuntu->18.04 smart screen sdk->2.2.1 apl core -> 1.3.3 firefox-> 81.0 What version of the AVS Device SDK are you using? 1.20.1 Tell us what hardware you're using: [ ] Desktop / Laptop Tell us about your OS (Type & version): [ ] Linux Have you tried the same use case with AVS Device SDK SampleApp? [ ] The issue is not applicable to the AVS Device SDK SampleApp. issueWithSSL_Enable.zip Please make sure you are following the steps below for enabling ssl: certificate variables in the SmartScreenSDKConfig.json needs to have full path of the certificates "websocketCertificateAuthority":"<sdk_directory>/modules/GUI/config/certificates/ca.cert", "websocketCertificate":"<sdk_directory>/modules/GUI/config/certificates/server.chain", "websocketPrivateKey":"<sdk_directory>/modules/GUI/config/certificates/server.key" add certificates to Firefox by following steps below: In Firefox go to Preferences. In the left panel, choose Privacy & Security. Go to Security → Certificates, and click View Certificates. Under Your Certificates, import client.p12. Under Authorities, import ca.cert. Navigate to https://localhost:8933 Select your certificate when prompted In addition, please refer to security requirements page to get more information: https://developer.amazon.com/en-US/docs/alexa/alexa-smart-screen-sdk/security-requirements.html Thanks for quick response. it is working after adding client.p12 which i missed. @zsubas , After adding certificates in chrome browser like above mentioned. it stuck at configuring Device... But same certificates and same build is working fine in firefox. In chrome console, Error message seen, "WebSocket connection to 'wss://localhost:8933/' failed: WebSocket opening handshake was canceled. i have attached the debug9 logs and screenshot of chrome console. websocket_ssl.zip Is it possible to ensure that your certificates are valid? It is a little strange that it works on Firefox but not Chrome. same certificates i have used in Firefox and it is working fine. i am attaching the certificates which are used for testing. These certificates are generated with generate.sh script provided in alexa smart screen sdk git [ https://github.com/alexa/alexa-smart-screen-sdk/blob/v2.2.1/modules/GUI/config/certificates/generate.sh ]. Is there any specific changes for chrome browser. cert_amazon.zip Hello @Jagadish-Bommisetty - Could you please try the following troubleshooting steps: Ensure that you have used absolute paths when pointing to the certificates in your SmartScreenSDKConfig.json file Verify that a dialog pops up on chrome asking you to trust the MMSDK_Client_Cert when you navigate to: https://localhost:8933 In your chromium browser, navigate to Settings -> Advanced->Privacy and Security -> Manage Certificates and select Authorities. Here you should see a certificate by org-Amazon. Please make sure that this cert does not show UNTRUSTED. If it does, Trust the cert and try again Please let us know if this resolves your issues. @vkarpuram it is working. In Manage certificates -> your certificates, still showing UNTRUSTED. Hello @Jagadish-Bommisetty, That's great to hear. However I highly recommend using your own trusted certificates for your production code. This is just a sample implementation. Please reach out if you face any additional issues.
gharchive/issue
2020-10-13T15:53:24
2025-04-01T06:37:47.053787
{ "authors": [ "Jagadish-Bommisetty", "lynx-arul", "vkarpuram", "zsubas" ], "repo": "alexa/alexa-smart-screen-sdk", "url": "https://github.com/alexa/alexa-smart-screen-sdk/issues/52", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1148151063
Alias as Item Name on all queries Describe the bug Alias from Stats, Gauge, Time Series and every plugin brings "Host":"Item" names Expected behavior Only show "Item" name as on v7.5 Screenshots If applicable, add screenshots to help explain your problem. Software versions Grafana Zabbix Grafana-Zabbix Plugin 8.4.1 5.0.20 4.2.5 I'd like to have all my queries (stats, gauge, time series graphics, etc) to show aliases with "Item" name. I have several dashboards with lot of querries and I can't just use a setalias($__zbx_item_name) for each one. It will take so much time. Is there such a script or a fix to make this version compatible in this regard? Thanks in advance. The best regex I found to set the correct alias name is (?<=:.)[\s\S]* So I'd like a tip to how could I set this regex on every dashboard / panels I have. Thanks Hi! In latest Grafana versions there's a labels string in a metric name. So since plugin includes host as a label, maybe it makes sense to remove default host prefix. I think it's the same reason as #1444. So fixed and will be available in the next release. Great news and great job! Hi! I updated grafana 7.3.6 to grafana 8.5.13 and zbx plugin 4.2.10 but now every zabbix item has host prefix before now and that breaks many overrides, transforms and etc. And I have more than 1000 dashboards Issue seems to me still actual, and if not, can you please tell what to do to get expected behavior without manually puting setAlias($__zbx_item) on every zbx panel? Thanks!
gharchive/issue
2022-02-23T14:15:29
2025-04-01T06:37:47.312449
{ "authors": [ "alexanderzobnin", "cdaher78", "rrz" ], "repo": "alexanderzobnin/grafana-zabbix", "url": "https://github.com/alexanderzobnin/grafana-zabbix/issues/1399", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1263046949
Item names show the zabbix key/request instead of just the hostname. Describe the bug The data in the legends now show something like: (HOST-NAME-HERE) {host="HOST-NAME-HERE", item="Interface vmxnet3 Ethernet Adapter(Ethernet0): Bits received", item_key="net.if.in["vmxnet3 Ethernet Adapter"]"} Min: 4.72 Mb/s Max: 92.8 Mb/s Current: 73.0 Mb/s This is when using: SetAlias(($__zbx_host_name)) Expected behavior Usually, this would just display: (HOST-NAME-HERE) Min: 4.72 Mb/s Max: 92.8 Mb/s Current: 73.0 Mb/s Screenshots If applicable, add screenshots to help explain your problem. Network data If it's related to metric data visualization would be great to get the raw query and response for the network request (check this in browser dev tools network tab, there you can see metric requests, please include the request body and request response) Software versions Grafana Zabbix Grafana-Zabbix Plugin 8.4.4 6.0.4 4.2.7 I've found out that for some reason I've got to faff around with Overrides, to get it to display how I want, rather than it being by default before.... Is this a change in Grafana's default behaviour? Thanks, Matt I think it's fixed in latest version of plugin, so try to upgrade.
gharchive/issue
2022-06-07T10:05:06
2025-04-01T06:37:47.317670
{ "authors": [ "Mattz0r", "alexanderzobnin" ], "repo": "alexanderzobnin/grafana-zabbix", "url": "https://github.com/alexanderzobnin/grafana-zabbix/issues/1458", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
505897685
Backend: implement alerting query(Part 1) Issue https://github.com/alexanderzobnin/grafana-zabbix/issues/801 Implemented part of the alerting query issue to get data from Zabbix and parse the query by fetching groups, hosts, apps, and items. Initially parsed the query to get the filters for groups, hosts, apps, and items and later fetched the data from the Zabbix data source for all groups, hosts, apps, and items and filtered those bypassing them into regex filter. Any estimate on reviewing the backend PRs? Closed this PR, will open a new one with initial alerting in a working state.
gharchive/pull-request
2019-10-11T14:48:59
2025-04-01T06:37:47.319480
{ "authors": [ "vignesh-reddy" ], "repo": "alexanderzobnin/grafana-zabbix", "url": "https://github.com/alexanderzobnin/grafana-zabbix/pull/819", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1990973497
Use HA profile defined formats Resolves: https://github.com/alexarch21/history-explorer-card/issues/221 Sadly the history explorer card has been declared end of life and won't be developed anymore. So I will have to close this PR without resolution. This repository will be archived and set to read-only shortly. See this post on the HA forum for more information: https://community.home-assistant.io/t/new-interactive-history-explorer-custom-card/369450/978
gharchive/pull-request
2023-11-13T16:08:06
2025-04-01T06:37:47.325132
{ "authors": [ "MrEbbinghaus", "alexarch21" ], "repo": "alexarch21/history-explorer-card", "url": "https://github.com/alexarch21/history-explorer-card/pull/222", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1090445481
Update sbt to 1.6.1 Updates org.scala-sbt:sbt from 1.4.9 to 1.6.1. GitHub Release Notes - Version Diff I'll automatically update this PR to resolve conflicts as long as you don't change it yourself. If you'd like to skip this version, you can just close this PR. If you have any feedback, just mention me in the comments below. Configure Scala Steward for your repository with a .scala-steward.conf file. Have a fantastic day writing Scala! Applied Scalafix Migrations org.scala-sbt:sbt:1.5.0 https://gist.githubusercontent.com/eed3si9n/57e83f5330592d968ce49f0d5030d4d5/raw/7f576f16a90e432baa49911c9a66204c354947bb/Sbt0_13BuildSyntax.scala Documentation: https://eed3si9n.com/syntactic-scalafix-rule-for-unified-slash-syntax Ignore future updates Add this to your .scala-steward.conf file to ignore future updates of this dependency: updates.ignore = [ { groupId = "org.scala-sbt", artifactId = "sbt" } ] labels: library-update, early-semver-minor, semver-spec-minor, scalafix-migrations, commit-count:n:2 Superseded by #246.
gharchive/pull-request
2021-12-29T11:10:42
2025-04-01T06:37:47.338526
{ "authors": [ "scala-steward" ], "repo": "alexarchambault/scalacheck-shapeless", "url": "https://github.com/alexarchambault/scalacheck-shapeless/pull/240", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
1386239197
🛑 Secret Website 3 is down In a63ee70, Secret Website 3 ($SECRET_WEBSITE_3) was down: HTTP code: 0 Response time: 0 ms Resolved: Secret Website 3 is back up in 6564699.
gharchive/issue
2022-09-26T15:01:58
2025-04-01T06:37:47.343949
{ "authors": [ "alexchapar" ], "repo": "alexchapar/status-page", "url": "https://github.com/alexchapar/status-page/issues/1815", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1441575304
⚠️ Secret Website 3 has degraded performance In cdfc390, Secret Website 3 ($SECRET_WEBSITE_3) experienced degraded performance: HTTP code: 200 Response time: 9712 ms Resolved: Secret Website 3 performance has improved in 0a6d479.
gharchive/issue
2022-11-09T07:40:39
2025-04-01T06:37:47.346351
{ "authors": [ "alexchapar" ], "repo": "alexchapar/status-page", "url": "https://github.com/alexchapar/status-page/issues/1987", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1080268568
⚠️ Secret Website 3 has degraded performance In 50800a4, Secret Website 3 ($SECRET_WEBSITE_3) experienced degraded performance: HTTP code: 200 Response time: 3180 ms Resolved: Secret Website 3 performance has improved in 35007af.
gharchive/issue
2021-12-14T21:20:23
2025-04-01T06:37:47.348596
{ "authors": [ "alexchapar" ], "repo": "alexchapar/status-page", "url": "https://github.com/alexchapar/status-page/issues/714", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
295117463
Update visjs version How can i update visjs version used in vue2vis? You can fork the project or wait for a couple of days while I find some time to do it. I'm closing this as it was fix by aa14d55
gharchive/issue
2018-02-07T12:21:21
2025-04-01T06:37:47.349643
{ "authors": [ "alexcode", "gretschann" ], "repo": "alexcode/vue2vis", "url": "https://github.com/alexcode/vue2vis/issues/1", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
301743657
Error message for #[async] on a for Consider let (tx, rx) = mpsc::channel(1); let process_bootstrap = async_block! { let msg = create_msg(); #[async] for foo in rx { let msg = msg.clone(); sink = await!(sink.send((msg, foo)))?; } Ok(()) }; Where the sink has io::Error as Error type, and rx obviously has () as Error type. This gives the very unhelpful message: error[E0277]: the trait bound `std::io::Error: std::convert::From<()>` is not satisfied --> src/net/server.rs:142:33 | 142 | let process_bootstrap = async_block! { | _________________________________^ 143 | | let msg = create_msg() 144 | | #[async] 145 | | for foo in rx { ... | 150 | | Ok(()) 151 | | }; | |_________^ the trait `std::convert::From<()>` is not implemented for `std::io::Error` | where the arrows point just around the block. Is it somehow possible to let the error actually point to the #[async] for loop? Secondly, note that #[async] for foo in rx.map_err(|_| -> io::Error { unreachable!() }) { } works perfectly, but is quite painful to write. But that's not the real issue here, I guess :-)
gharchive/issue
2018-03-02T11:58:42
2025-04-01T06:37:47.352499
{ "authors": [ "rubdos" ], "repo": "alexcrichton/futures-await", "url": "https://github.com/alexcrichton/futures-await/issues/65", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
236550235
include doesn't support UNC paths on Windows let cc = gcc::Config::new(); cc.include(std::fs::canonicalize(".")); Doesn't add absolute path of "." as the include dir (tested on Win10, MSVC). This is because Rust's canonicalize() makes a UNC path such as \\?\C:\Foo. Stripping the \\?\ prefix seems to solve the problem, but I don't know enough about UNC paths to know whether that's a good solution. I use fs::canonicalize() as the easiest way to get absolute paths in build scripts of link/-sys dependencies to reliably pass the paths in env vars for other packages to consume, and it works well on Unix. Is this a bug with gcc-rs? Or is this a bug with cl.exe not accepting these paths? Do you have an error message? cl.exe doesn't support UNC paths (-IC:\foo works as expected, -I\\?\C:\foo doesn't find includes) So strictly speaking that's a bug in cl.exe, but I'm betting on gcc-rs to hide deficiencies of MSVC for me :) I've released a crate that normalizes paths in a compatible way: https://gitlab.com/kornelski/dunce It would be nice if that was built into the include() function here. I'm going to close this since it sounds like it was a bug in cl.exe, and I'd prefer to not add too much normalization to this crate.
gharchive/issue
2017-06-16T17:49:03
2025-04-01T06:37:47.356362
{ "authors": [ "alexcrichton", "pornel" ], "repo": "alexcrichton/gcc-rs", "url": "https://github.com/alexcrichton/gcc-rs/issues/169", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
84311783
Command Line Option Not Supported In All Versions Of Gcc I get this error: c++: error: unrecognized command line option ‘-stdlib=libstdc++’ When I try to compile c++ code from my rust build script with .cpp(true) It appears as though -stdlib=libstdc++ is not an accepted parameter by my version of gcc. cc @TimNN, upon re-reading #39 I'm thinking the best option is to just not pass -stdlib by default (and instead rely on the compiler default). You mentioned that this can cause link errors on OSX though, so I'm wondering if you can elaborate on that? The problem was that gcc-rs was unconditionally instructing cargo to link the rust code to libstdc++ when compiling with .ccp(true). Original code. On OS X the default compiler is clang, which however links to libc++ thus resulting in linking errors. As such the cpp_stdlib option was added. It allows choosing which stdlib to use and if one is choosen, it will force the compiler to use this library (using the -stdlib= flag) and instructs cargo to link the rust code to this library. @OxyDeadbeef which OS / compiler version are you using? For the moment you can work around the problem by manually creating a Config and setting config.cpp_stdlib(None). You will then have to manually link to libstdc++ by writing println!("cargo:rustc-link-lib=stdc++"); in your build.rs file. Alright I did some digging and might have been a little careless when testing my original pull request: OS X provides a g++ in /usr/bin, which is just a wrapper around clang and thus supports -stdlib= and I have installed a 'real' g++ in /usr/local/bin (which I usually have before /usr/bin in my path). For some reason while testing the code I have was using the OS X provided g++ and thus everything worked. Proposed solution: Change cpp_stdlib to not automatically specify the -stdlib= flag (but keep detecting the stdlib to use based on the OS and instructing cargo to link to it) and add another option (or modify cpp_stdlib to take a second parameter) along the lines of force_cpp_stdlib_usage, which, if set, would pass the -stdlib flag to the compiler. @TimNN I am using Fedora 22 & gcc 5.1.1 Fixed in #44 (no longer passing -stdlib by default)
gharchive/issue
2015-06-03T02:11:26
2025-04-01T06:37:47.363753
{ "authors": [ "OxyDeadbeef", "TimNN", "alexcrichton" ], "repo": "alexcrichton/gcc-rs", "url": "https://github.com/alexcrichton/gcc-rs/issues/43", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
1724758080
How to build python distroless images for linux/arm/v7 ? Hi @alexdmoss, First of all thanks for sharing this repo, very useful. I need to built images for arch=linux/arm/v7. I am running containerized workloads on a raspberry pi 4. Kernel Version: 5.10.103-v7l+ Operating System: Raspbian GNU/Linux 10 (buster) OSType: linux Architecture: armv7l CPUs: 4 Total Memory: 3.749GiB Could you point me where to start ? I checked Google's distroless repo and noticed they have cc-debian11 for arm. But for some reason they don't publish for python3-debian11. Hello @fabito, you're right, Google doesn't build Distroless arm/v7 images for Java and Python. I contributed many updates to this image https://gitlab.com/al3xos/distroless-python/-/merge_requests/2 but no one requested arm/v7 you would have to build that Google image yourself ;) Your Raspbian is very old, 3 years ago it has been renamed to Raspberry Pi OS, and a 64-bit version is available since 1.5 years for the Pi 3B and newer, the easiest way would be to just update your OS to the current version. https://www.raspberrypi.com/software/operating-systems/#raspberry-pi-os-64-bit
gharchive/issue
2023-05-24T21:24:10
2025-04-01T06:37:47.367243
{ "authors": [ "fabito", "reneleonhardt" ], "repo": "alexdmoss/distroless-python", "url": "https://github.com/alexdmoss/distroless-python/issues/2", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1858007605
add skupper Description Add skupper CLI Motivation and Context [X] I have raised an issue to propose this change, which has been given a label of design/approved by a maintainer (required) Fix #969 How Has This Been Tested? make e2e === RUN Test_CheckTools/Download_of_skupper === PAUSE Test_CheckTools/Download_of_skupper === CONT Test_CheckTools/Download_of_skupper --- PASS: Test_CheckTools/Download_of_skupper (0.57s) hack/test-tool.sh skupper + ./arkade get skupper --arch arm64 --os darwin --quiet + file /Users/cris/.arkade/bin/skupper /Users/cris/.arkade/bin/skupper: Mach-O 64-bit executable arm64 + rm /Users/cris/.arkade/bin/skupper + echo + ./arkade get skupper --arch x86_64 --os darwin --quiet + file /Users/cris/.arkade/bin/skupper /Users/cris/.arkade/bin/skupper: Mach-O 64-bit executable x86_64 + rm /Users/cris/.arkade/bin/skupper + echo + ./arkade get skupper --arch x86_64 --os linux --quiet + file /Users/cris/.arkade/bin/skupper /Users/cris/.arkade/bin/skupper: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, Go BuildID=FMOZ3Cz5gBuYmWNBIr1h/YbfiH7MsoD_R7sBk8mO5/sQmBo1QNevjUCRyseo7e/doYyxsFn2STVMNSSnXjL, with debug_info, not stripped + rm /Users/cris/.arkade/bin/skupper + echo + ./arkade get skupper --arch aarch64 --os linux --quiet + file /Users/cris/.arkade/bin/skupper /Users/cris/.arkade/bin/skupper: ELF 64-bit LSB executable, ARM aarch64, version 1 (SYSV), statically linked, Go BuildID=tozEh6CQt-s3s9u8f4NK/CvJvxQdw7Hwn5Xr7hHrL/kQN92-Mq1sW9ZWdNhYVA/6oIBUTky6x8ds15AIGhf, with debug_info, not stripped + rm /Users/cris/.arkade/bin/skupper + echo + ./arkade get skupper --arch x86_64 --os mingw --quiet + file /Users/cris/.arkade/bin/skupper.exe /Users/cris/.arkade/bin/skupper.exe: PE32+ executable (console) x86-64 (stripped to external PDB), for MS Windows + rm /Users/cris/.arkade/bin/skupper.exe + echo Types of changes [ ] Bug fix (non-breaking change which fixes an issue) [X] New feature (non-breaking change which adds functionality) [ ] Breaking change (fix or feature that would cause existing functionality to change) Documentation [X] I have updated the list of tools in README.md if (required) with ./arkade get --format markdown [ ] I have updated the list of apps in README.md if (required) with ./arkade install --help Checklist: [X] My code follows the code style of this project. [ ] My change requires a change to the documentation. [ ] I have updated the documentation accordingly. [X] I've read the CONTRIBUTION guide [X] I have signed-off my commits with git commit -s [X] I have tested this on arm, or have added code to prevent deployment Thanks for the PR @tuxtof You are welcome @alexellis always a pleasure 🤗
gharchive/pull-request
2023-08-20T07:09:06
2025-04-01T06:37:47.374089
{ "authors": [ "alexellis", "tuxtof" ], "repo": "alexellis/arkade", "url": "https://github.com/alexellis/arkade/pull/970", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
126662405
What about use-cases other than the click delay? Saw the deprecation notice, and I have a question about it. My use-case actually was not to eliminate the click delay, but to distinguish a tap from touchstart, which might also be the beginning of a scroll. In https://github.com/davidtheclark/react-aria-menubutton I use it to detect taps outside the open menu (the menu closes when you tap outside it): that's important because if the menu is long enough that you have to scroll to see some items on it, I don't want to close it because you started to scroll. So I'm wondering: Do you know of some better way to handle this than using tap.js or something like it? Feel free to take what code you need for your own use. I don't think it's worth maintaining this library just for edge cases like this, considering how little code there is. Sure, was just wondering if you already had an alternative in mind. Thanks! Technically there's also no reason why you can't do this with a regular click event now, especially as most browsers are no longer imposing a delay. You can easily enough tell where the event target is to determine if the menu should be closed or not. I will revisit the code and see if that will work. I don't remember the details about why I felt I couldn't do that before.
gharchive/issue
2016-01-14T14:15:21
2025-04-01T06:37:47.389506
{ "authors": [ "alexgibson", "davidtheclark" ], "repo": "alexgibson/tap.js", "url": "https://github.com/alexgibson/tap.js/issues/28", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
1453125771
change calendar locale string to en-US Changed the calendar date field to show in English inline with other texts in the app Tests passed with npm test Thanks!! LGTM 🚀
gharchive/pull-request
2022-11-17T10:48:11
2025-04-01T06:37:47.390654
{ "authors": [ "MalanB", "alexgt9" ], "repo": "alexgt9/pairing-matrix", "url": "https://github.com/alexgt9/pairing-matrix/pull/2", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
425117187
Any way to drop entire table? Great looking project, would love a way to remove all rows of a table or drop the table completely. As of now, deleting the entire file is not yet available but will be implemented in future versions. For now, you can just manually iterate through all the rows and delete them iteratively. Hi there. Apology for late update. The feature is now added in version v0.13.1
gharchive/issue
2019-03-25T21:10:17
2025-04-01T06:37:47.392205
{ "authors": [ "alexiusacademia", "stuible" ], "repo": "alexiusacademia/electron-db", "url": "https://github.com/alexiusacademia/electron-db/issues/19", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
275914814
avd_progress_indeterminate_circular : java.lang.RuntimeException: Unknown interpolator name: x Hello, When using the circular spinner in our app we get this exception on release builds only (minified) : It works fine in debug. 11-21 17:12:00.974 21480 21480 D AndroidRuntime: Shutting down VM 11-21 17:12:05.250 20401 20401 E AndroidRuntime: FATAL EXCEPTION: main 11-21 17:12:05.250 20401 20401 E AndroidRuntime: Process: package_id, PID: 20401 11-21 17:12:05.250 20401 20401 E AndroidRuntime: android.content.res.Resources$NotFoundException: Drawable package_id:drawable/avd_progress_indeterminate_circular with resource ID #0x7f020069 11-21 17:12:05.250 20401 20401 E AndroidRuntime: Caused by: java.lang.RuntimeException: Unknown interpolator name: x 11-21 17:12:05.250 20401 20401 E AndroidRuntime: at android.view.animation.AnimationUtils.createInterpolatorFromXml(AnimationUtils.java:397) 11-21 17:12:05.250 20401 20401 E AndroidRuntime: at android.view.animation.AnimationUtils.loadInterpolator(AnimationUtils.java:338) 11-21 17:12:05.250 20401 20401 E AndroidRuntime: at android.animation.AnimatorInflater.loadAnimator(AnimatorInflater.java:1053) 11-21 17:12:05.250 20401 20401 E AndroidRuntime: at android.animation.AnimatorInflater.loadObjectAnimator(AnimatorInflater.java:1007) 11-21 17:12:05.250 20401 20401 E AndroidRuntime: at android.animation.AnimatorInflater.createAnimatorFromXml(AnimatorInflater.java:663) 11-21 17:12:05.250 20401 20401 E AndroidRuntime: at android.animation.AnimatorInflater.createAnimatorFromXml(AnimatorInflater.java:676) 11-21 17:12:05.250 20401 20401 E AndroidRuntime: at android.animation.AnimatorInflater.createAnimatorFromXml(AnimatorInflater.java:638) 11-21 17:12:05.250 20401 20401 E AndroidRuntime: at android.animation.AnimatorInflater.loadAnimator(AnimatorInflater.java:126) 11-21 17:12:05.250 20401 20401 E AndroidRuntime: at android.graphics.drawable.AnimatedVectorDrawable$AnimatedVectorDrawableState$PendingAnimator.newInstance(AnimatedVectorDrawable.java:808) 11-21 17:12:05.250 20401 20401 E AndroidRuntime: at android.graphics.drawable.AnimatedVectorDrawable$AnimatedVectorDrawableState.inflatePendingAnimators(AnimatedVectorDrawable.java:784) 11-21 17:12:05.250 20401 20401 E AndroidRuntime: at android.graphics.drawable.AnimatedVectorDrawable.applyTheme(AnimatedVectorDrawable.java:613) 11-21 17:12:05.250 20401 20401 E AndroidRuntime: at android.content.res.ResourcesImpl.loadDrawable(ResourcesImpl.java:580) 11-21 17:12:05.250 20401 20401 E AndroidRuntime: at android.content.res.Resources.getDrawable(Resources.java:771) 11-21 17:12:05.250 20401 20401 E AndroidRuntime: at android.support.v4.content.res.ResourcesCompat.getDrawable(ResourcesCompat.java:76) 11-21 17:12:05.250 20401 20401 E AndroidRuntime: at android.support.graphics.drawable.AnimatedVectorDrawableCompat.create(AnimatedVectorDrawableCompat.java:210) I am starting to loose faith in Android animated vector drawables ;) Our build is using Gradle 3.0 but we deactivated aapt2. Don't lose faith in AVDs! Lose faith in aapt2 instead. :P To be clear, does this happen in this sample app? Or does it happen in some other repo you have? Are you still seeing this issue? @alexjlockwood thanks for the follow up. The crash happened in our app on release build (proguard/shrink). Since then we removed the avd_progress_indeterminate_circular and used a circular ProgressBar.
gharchive/issue
2017-11-22T01:25:19
2025-04-01T06:37:47.398432
{ "authors": [ "alexjlockwood", "eboudrant" ], "repo": "alexjlockwood/adp-delightful-details", "url": "https://github.com/alexjlockwood/adp-delightful-details/issues/10", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
1010857223
Get Contact with Filter (LIKE Query) I didn't find any document about filtering contact with LIKE keyword, like the content resolver has. Is it filterable ? Hi @nauhalf. This is not something that is currently supported. I am asuming that you are refering to the Contacts#CONTENT_FILTER_URI, is that correct? Like this I am just chipping in as I recently started following this repo and have high hopes of it :) Some content resolvers have limits on params. For example LIMIT is not allowed but not sure about LIKE. Also, there might be performance issues if user has too many contacts. Some people have thousands of contacts. I would prefer CONTENT_FILTER_URI being used as it seems to be the official way. +1 for the CONTENT_FILTER_URI approach. If someone really wants/needs to manipulate SQL queries they still have the ContentProviders API to their disposal. AFAIK such URIs tend to be highly optimised according to the docs, so doing multiple queries shouldn't be expensive. I think that something like: combine( contactStore.fetchContacts(PhoneLookup(PhoneNumber(keyword))), contactStore.fetchContacts(NameLookup(keyword)) // <- not supported right now ) { fromPhones, fromNames -> // do any processing to the results you like fromNames + fromNames }.collect { results -> println("Contacts matching $keyword were = $results") } would work well for @nauhalf 's case. Quick update on this. I am planning of having this shipped this weekend with v0.2.0 Name lookup is now available in 0.2.0 https://github.com/alexstyl/contactstore/releases/tag/0.2.0
gharchive/issue
2021-09-29T11:50:51
2025-04-01T06:37:47.465730
{ "authors": [ "NLLAPPS", "alexstyl", "nauhalf" ], "repo": "alexstyl/contactstore", "url": "https://github.com/alexstyl/contactstore/issues/4", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
345541459
TinyHttpServer should cancel HttpListener on Stop Currently when you call server.Stop it still listening to the port because HttpListener of TinyHttpServer never gets cancelled/stopped. Hi @d-dizhevsky , if you are interested in the followup from this application, take a look at https://github.com/WireMock-Net/WireMock.Net which has a fix for this issue and has also more functionality available.
gharchive/issue
2018-07-29T15:55:36
2025-04-01T06:37:47.467297
{ "authors": [ "StefH", "d-dizhevsky" ], "repo": "alexvictoor/mock4net", "url": "https://github.com/alexvictoor/mock4net/issues/26", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
523397089
Inspector does not show anything Hi Arnaud, I just tried to enable the inspector, and no elements are shown with the 0.6.0-20191104 snapshot. The objects are still highlighted in the mapping rules. Kind regards, Dennis Hi, Yes, i saw it. i'll fix it after migration in typescript Hi Dennis @bijwaard, Can you try the lastest version, plz, Many change, but not visual, migrate to typescript, new engine of graph. Log scale is available, new design of rules BR Arnaud Fixed in last 0.6.0 Hi Arnaud, Thanks for the update, everything still seems to be working, and the inspector is back, thanks! I can now configure the logarithmic scale, no visual change yet indeed;-) The inspector doesn't show something usable for me in the label/name column yet, because of my placeholders, see also ticket #50. Kind regards, Dennis Cool, Thx for your feeback
gharchive/issue
2019-11-15T10:47:25
2025-04-01T06:37:47.485423
{ "authors": [ "algenty", "bijwaard" ], "repo": "algenty/grafana-flowcharting", "url": "https://github.com/algenty/grafana-flowcharting/issues/82", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
2459716035
sendTimeout warning/error on flutter Web I'm running algoliasearch 1.22.0 on Flutter Web and keep getting the following error: [🔔 Dio] sendTimeout cannot be used without a request body to send on Web [🔔 Dio] _StackTrace (../dart-sdk/lib/_internal/js_dev_runtime/patch/core_patch.dart 843:28 get current .... This is the Repository where the Algolia is configured: class UsersSearchRepository { const UsersSearchRepository(this._algoliaSearchClient); final SearchClient _algoliaSearchClient; Future<List> search(String inputSearchText) async { final queryHits = SearchParamsObject( query: inputSearchText, ); / final responseHits = await _algoliaSearchClient.searchSingleIndex( indexName: 'app_users_collection', searchParams: queryHits, ); return responseHits.hits.map((searchHit) { return AppUser.fromMap(searchHit.toJson()); }).toList(); } } Initialized below: @Riverpod(keepAlive: true) UsersSearchRepository usersSearchRepository(UsersSearchRepositoryRef ref) { final algoliaSearch = SearchClient( appId: 'Foo', apiKey: 'Bar, ); return UsersSearchRepository(algoliaSearch); } The same exception happens to me too. algolia_helper_flutter: 1.1.0
gharchive/issue
2024-08-11T18:48:47
2025-04-01T06:37:47.492724
{ "authors": [ "Martin-QPT", "ilmarfreitas" ], "repo": "algolia/algoliasearch-client-dart", "url": "https://github.com/algolia/algoliasearch-client-dart/issues/16", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
700044746
Can't build typescript nodejs app when algoliasearch is included I have been able to install the npm module and also wrote code for the functions. But I keep getting this when i try to run my code/build with tsc. Not sure if this is a bug Algolia version - 4.4.0 Typescript version - 3.3.3 So it turns out I had to upgrade my typescript version. I upgraded to 4.0.2 and this error disappeared. Cheers
gharchive/issue
2020-09-12T04:34:51
2025-04-01T06:37:47.498752
{ "authors": [ "gate3" ], "repo": "algolia/algoliasearch-client-javascript", "url": "https://github.com/algolia/algoliasearch-client-javascript/issues/1195", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
1963881510
chore: release This pull request prepares the following release: Repository Branch Update instantsearch chore/release-1698335948126 minor Release Summary This is going to be published with the following command: yarn lerna publish from-package --yes Merging Instructions When merging this pull request, you need to Squash and merge and make sure that the title starts with chore: release. See details After that, a commit chore: release will be added and you or your CI can run shipjs trigger to trigger the release based on the commit. This pull request is automatically generated by Ship.js. Releasing on Monday.
gharchive/pull-request
2023-10-26T15:59:16
2025-04-01T06:37:47.515077
{ "authors": [ "dhayab" ], "repo": "algolia/instantsearch", "url": "https://github.com/algolia/instantsearch/pull/5910", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
678525036
docx file mimetype being returned as bytes causing get_preview_builder to throw exception Wondering if this is just me or not.. in PreviewBuilderFactory.get_file_mimetype: str_, encoding = mimetypes_storage.guess_type(first_path, strict=False) returns (None, None) for a docx file. So then https://github.com/algoo/preview-generator/blob/develop/preview_generator/preview/builder_factory.py#L67-L69 returns the mimetype in bytes, causing get_preview_builder to fail. I found that not calling MimeTypes() here https://github.com/algoo/preview-generator/blob/develop/preview_generator/extension.py fixes it. Thinking it could be issues with my version of mimetype, or magic? Using Python 3.7.5 Resolved.. turns out the issue was an old version of python-magic..
gharchive/issue
2020-08-13T15:23:49
2025-04-01T06:37:47.527238
{ "authors": [ "jeremydefibaugh" ], "repo": "algoo/preview-generator", "url": "https://github.com/algoo/preview-generator/issues/197", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
228891840
[BUG] NullPointException private void video() { new VideoPicker.Builder(PublishActivity.this) .mode(VideoPicker.Mode.GALLERY) .directory(VideoPicker.Directory.DEFAULT) .extension(VideoPicker.Extension.MP4) .enableDebuggingMode(true) .build(); } @Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { super.onActivityResult(requestCode, resultCode, data); if (requestCode == ImagePicker.IMAGE_PICKER_REQUEST_CODE && resultCode == RESULT_OK) { List<String> mPaths = (List<String>) data.getSerializableExtra(ImagePicker.EXTRA_IMAGE_PATH); File imageFile = new File(mPaths.get(0)); if (imageFile.exists()) { mediaGridAdapter.incrementRefresh(new MediaModel(SCHEME + mPaths.get(0), MediaModel.MediaType.IMAGE, imageFile)); } } else if (requestCode == VideoPicker.VIDEO_PICKER_REQUEST_CODE && resultCode == RESULT_OK) { List<String> mPaths = (List<String>) data.getSerializableExtra(VideoPicker.EXTRA_VIDEO_PATH); File videoFile = new File(mPaths.get(0)); if (videoFile.exists()) { publishMediaList.add(new MediaModel(SCHEME + mPaths.get(0), MediaModel.MediaType.VIDEO, videoFile)); } } } I have to use the default folder properties 。 Image is OK, but video crash 。 What's the android version that you are using? and what type of device? is it Samsung or emulator?
gharchive/issue
2017-05-16T01:40:49
2025-04-01T06:37:47.565724
{ "authors": [ "13120241790", "alhazmy13" ], "repo": "alhazmy13/MediaPicker", "url": "https://github.com/alhazmy13/MediaPicker/issues/28", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1269419343
اضافه کردن درگاه paystar سلام وقت بخیر اگر میشه درگاه paystarرو به کتابخونتون اضافه کنید اگر اطلاعاتی در مورد این درگاه خواستین من براتون میفرستم باتشکر سلام و عرض ادب تنها چالش پیش رو برای اضافه کردن این درگاه پرداخت، نداشتن MERCHANT_CODE معتبر برای تست میباشد (در این درگاه GATEWAY_ID گفته میشود) اگر یک GATEWAY_ID معتبر برای تست وجود داشته باشه به سرعت اضافه میشه به کتابخونه.
gharchive/issue
2022-06-13T13:12:55
2025-04-01T06:37:47.567071
{ "authors": [ "Morteza078", "jam4li" ], "repo": "ali-zahedi/az-iranian-bank-gateways", "url": "https://github.com/ali-zahedi/az-iranian-bank-gateways/issues/37", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1305877149
Contact Details 320613249@qq.com What happened? A bug happened! 运行环境: win10 固件版本: v2.2. 0 Version rel_3.3.0 (Main) What soultions are you seeing the problem on? No response Relevant log output PowerShell 7.2.5 Copyright (c) Microsoft Corporation. https://aka.ms/powershell Type 'help' to get help. PS F:\ailiyun\test_demo> "C:\ProgramData\aos\miniconda3\condabin\conda.bat" activate C:\ProgramData\aos\miniconda3,set PATH=C:\ProgramData\aos\miniconda3;C:\ProgramData\aos\miniconda3\Scripts;C:\ProgramData\aos\miniconda3\Library\bin;%PATH%&python -m serial.tools.miniterm COM6 115200 --raw ParserError: Line | 1 | "C:\ProgramData\aos\miniconda3\condabin\conda.bat" activate C:\Progra … | ~~~~~~~~ | Unexpected token 'activate' in expression or statement. 我们先看看 所以是这个问题7月份就有了,现在还这样
gharchive/issue
2022-07-15T10:39:16
2025-04-01T06:37:47.574811
{ "authors": [ "Virace", "YiluMao", "emo666" ], "repo": "alibaba/AliOS-Things", "url": "https://github.com/alibaba/AliOS-Things/issues/1914", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
139764210
java.lang.IllegalAccessError: Method 'void Android 5.0 不兼容? 少部分5.0和5.1机型报错,4.x没有报错,是兼容问题 java.lang.IllegalAccessError: Method 'void com.dwl.uh.ui.activity.usercenter.OrderDetailActivity_CF.getOrderTrackInfo()' is inaccessible to class 'com.dwl.uh.ui.activity.usercenter.OrderDetailActivity_CF' (declaration of 'com.dwl.uh.ui.activity.usercenter.OrderDetailActivity_CF' appears in /data/data/com.dwl.uh/files/apatch/1.5_45_20160303_cancleorderTest_07.apatch) at com.dwl.uh.ui.activity.usercenter.OrderDetailActivity_CF.getOrderDetailSuccess(OrderDetailActivity.java:526) at com.dwl.uh.manager.presenter.OrderDetailPresenter$1.onSuccess(OrderDetailPresenter.java:46) at com.dwl.uh.manager.model.impl.OrderDetailModelImpl$1.onResponse(OrderDetailModelImpl.java:22) at com.dwl.uh.manager.model.impl.OrderDetailModelImpl$1.onResponse(OrderDetailModelImpl.java:1) at com.dwl.uh.net.GsonRequest.deliverResponse(GsonRequest.java:93) at com.android.volley.ExecutorDelivery$ResponseDeliveryRunnable.run(ExecutorDelivery.java:99) at android.os.Handler.handleCallback(Handler.java:739) at android.os.Handler.dispatchMessage(Handler.java:95) at android.os.Looper.loop(Looper.java:135) at android.app.ActivityThread.main(ActivityThread.java:5275) at java.lang.reflect.Method.invoke(Native Method) at java.lang.reflect.Method.invoke(Method.java:372) at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:910) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:705) java.lang.IllegalAccessError问题解决了吗?4.4.4版本不崩溃 , 未替换成功 5.1.1版本崩溃 没有 同样的问题啊。 6.0替换成功,退出后再进来走一遍流程就会报 method inaccessible ,杀掉进程再进来是好的 现在有人解决了吗 看看这篇文章 http://www.jianshu.com/p/58fc4c2cb65a
gharchive/issue
2016-03-10T02:27:12
2025-04-01T06:37:47.580569
{ "authors": [ "cy20061121", "javaliquan", "jianghao1123", "miluotao", "supermanmwg", "sx1923" ], "repo": "alibaba/AndFix", "url": "https://github.com/alibaba/AndFix/issues/146", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
1214393435
Mechanisms to support asynchronous training protocol in FL As the title said. Some ideas can be borrowed from asynchronous SGD, including but not limited to: Timeout strategy oversampling staleness toleration variances toleration A simulator can also be provided for running asynchronous FL standalone. Any ideas and discussions of asynchronous FL are welcome :)
gharchive/issue
2022-04-25T11:52:16
2025-04-01T06:37:47.588581
{ "authors": [ "xieyxclack" ], "repo": "alibaba/FederatedScope", "url": "https://github.com/alibaba/FederatedScope/issues/39", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1736558795
We need functionality similar to asio::dispatch Search before asking [x] I searched the issues and found no similar issues. What happened + What you expected to happen asio::dispatch可以让协程将自己调度到指定的executor中,用户在实现相同逻辑时可以减少一些不必要的封装和抽象。 Reproduction way Anything else Are you willing to submit a PR? [x] Yes I am willing to submit a PR! Closed with https://github.com/alibaba/async_simple/pull/315
gharchive/issue
2023-06-01T15:20:35
2025-04-01T06:37:47.612907
{ "authors": [ "ChuanqiXu9", "chloro-pn" ], "repo": "alibaba/async_simple", "url": "https://github.com/alibaba/async_simple/issues/314", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
248595913
FastJsonHttpMessageConverter 的编码问题 最近使用了新版本的包(1.2.35),替换了原来的 FastJsonHttpMessageConverter4 ,替换后发现 converter.setDefaultCharset(Charset.forName("UTF-8")) 这句代码不起作用了,controller 返回的 json 中文字符串依然是乱码,于是进 FastJsonHttpMessageConverter 看了下,发现了如下代码: if(headers.getContentType() == null) { if(contentType == null || contentType.isWildcardType() || contentType.isWildcardSubtype()) { contentType = this.getDefaultContentType(t); } if(contentType != null) { headers.setContentType(contentType); } } 这里并没有采用 AbstractHttpMessageConverter 的 addDefaultHeaders(...) 方法来添加 contentType,而是使用了如上代码,可是这里在给 headers 添加 contentType 时并没有使用 defaultCharset 来指定编码,因此返回的 json 数据会乱码,目前的解决办法就是自定义 mediaType 给 supportedType,希望能够改善下。 不指定的话默认会使用FastJsonConfig 里边的charset ,默认是UTF-8。 不太确定你的使用场景, 可以提供一个能跑的单元测试吗 FastJsonConfig 里面的 charset 是针对 json 序列化时候使用的,我的意思是通过 response 写到浏览器时的 headers 中的 content-type 的编码 升级到最新的 1.2.36 版本尝试一下呢。 估计这个问题已经被解决了。 看了下新版的 FastJsonHttpMessageConverter, 发现是解决了这个问题,没有重写 write 方法,而是调用了 AbstractHttpMessageConverter 里的,谢谢啦
gharchive/issue
2017-08-08T04:12:43
2025-04-01T06:37:47.632608
{ "authors": [ "lmovse", "neil4dong" ], "repo": "alibaba/fastjson", "url": "https://github.com/alibaba/fastjson/issues/1384", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
2297490255
[FEATURE]添加对java.awt.Color类型的序列化和反序列化支持 请描述您的需求或者改进建议 对您想要需求或建议的清晰简洁的描述。 1.x版本是支持的,在2.0.50版本中反序列化出来的rgb全是0 希望实现类似于如下效果: String colorStr = JSONObject.toJSONString(Color.BLUE); //{"r":0,"g":0,"b":255,"alpha":255} Color color = JSONObject.parseObject(colorStr, Color.class);//java.awt.Color[r=0,g=0,b=255] 请描述你建议的实现方案 对您想要需求或建议的实现方案的详细描述。 略 描述您考虑过的替代方案 对您考虑过的任何替代解决方案或功能的描述。 略 附加信息 如果你还有其他需要提供的信息,可以在这里填写(可以提供截图、视频等)。 略 https://oss.sonatype.org/content/repositories/snapshots/com/alibaba/fastjson2/fastjson2/2.0.51-SNAPSHOT/ 问题已修复,请帮忙用2.0.51-SNAPSHOT版本验证下 https://github.com/alibaba/fastjson2/releases/tag/2.0.51 问题已修复,请用新版本
gharchive/issue
2024-05-15T10:27:20
2025-04-01T06:37:47.636658
{ "authors": [ "kenanor", "wenshao" ], "repo": "alibaba/fastjson2", "url": "https://github.com/alibaba/fastjson2/issues/2578", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
191201214
please install Freeline first的错误 在as2.2.3下安装了freeline插件,点击运行,就出现"please install Freeline first",无法运行!谢谢 @zzxb README里写的很清楚了...finally的最后一步你没有做gradlew initFreeline -Pmirror... 也麻烦提问下先搜下相关的issue,已经有人提问过了...
gharchive/issue
2016-11-23T07:08:05
2025-04-01T06:37:47.643524
{ "authors": [ "lomanyong", "zzxb" ], "repo": "alibaba/freeline", "url": "https://github.com/alibaba/freeline/issues/327", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
201473619
Freeline构造失败 gradle版本:2.2.3 构建仓库:maven buildscript { repositories { mavenCentral() // jcenter() } dependencies { classpath 'com.android.tools.build:gradle:+' // classpath 'com.antfortune.freeline:gradle:0.8.5' } } allprojects { repositories { mavenCentral() // // maven { url 'http://repo.baichuan-android.taobao.com/content/groups/BaichuanRepositories/' } } tasks.withType(JavaCompile) { options.encoding = "UTF-8" } } 附上我的build.gradle,放开jcenter(),点Re-download,无论翻墙与否,完全无效。 错误信息: Error:Unable to find method 'org.gradle.api.tasks.Sync.getInputs()Lorg/gradle/api/internal/TaskInputsInternal;'. Possible causes for this unexpected error include: Gradle's dependency cache may be corrupt (this sometimes occurs after a network connection timeout.) Re-download dependencies and sync project (requires network) The state of a Gradle build process (daemon) may be corrupt. Stopping all Gradle daemons may solve this problem. Stop Gradle build processes (requires restart) Your project may be using a third-party plugin which is not compatible with the other plugins in the project or the version of Gradle requested by the project. In the case of corrupt Gradle processes, you can also try closing the IDE and then killing all Java processes. @LiuzxGeek 这基本跟 Freeline 无关呀....可以 Google 一下错误信息,有很多可能对你有帮助的解答在 StackOverflow 或者国内的博客上...比如:http://blog.csdn.net/ouyang_peng/article/details/52027668 @LiuzxGeek Gradle并没有2.2.3的版本,你这里提供的信息不正确。 你的2.2.3的版本应该是指的'com.android.tools.build:gradle'这一插件吧。你的Gradle的版本是?
gharchive/issue
2017-01-18T03:58:13
2025-04-01T06:37:47.646506
{ "authors": [ "LiuzxGeek", "lomanyong", "msdx" ], "repo": "alibaba/freeline", "url": "https://github.com/alibaba/freeline/issues/628", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
331423511
feature: UpdateContainerResources of CRI Manager Signed-off-by: Starnop starnop@163.com Ⅰ. Describe what this PR did add feature: UpdateContainerResources of CRI Manager Ⅱ. Does this pull request fix one issue? None Ⅲ. Describe how you did it Ⅳ. Describe how to verify it # pouch run -d -m 20m --name cri-update-test registry.hub.docker.com/library/nginx:latest WARNING: Current Kernel does not support memory swap, discard --memory-swap bd6c5b9de4874f6703961ed543a9056a9762279433c6cad0fd8b63f42f636ff5 # cat /sys/fs/cgroup/memory/default/bd6c5b9de4874f6703961ed543a9056a9762279433c6cad0fd8b63f42f636ff5/memory.limit_in_bytes 20971520 # crictl update --memory 31457280 bd6c5b9de4874f6703961ed543a9056a9762279433c6cad0fd8b63f42f636ff5 DEBU[0000] UpdateContainerResourcesRequest: &UpdateContainerResourcesRequest{ContainerId:bd6c5b9de4874f6703961ed543a9056a9762279433c6cad0fd8b63f42f636ff5,Linux:&LinuxContainerResources{CpuPeriod:0,CpuQuota:0,CpuShares:0,MemoryLimitInBytes:31457280,OomScoreAdj:0,CpusetCpus:,CpusetMems:,},} DEBU[0000] UpdateContainerResourcesResponse: &UpdateContainerResourcesResponse{} bd6c5b9de4874f6703961ed543a9056a9762279433c6cad0fd8b63f42f636ff5 # cat /sys/fs/cgroup/memory/default/bd6c5b9de4874f6703961ed543a9056a9762279433c6cad0fd8b63f42f636ff5/memory.limit_in_bytes 31457280 Ⅴ. Special notes for reviews Codecov Report Merging #1511 into master will decrease coverage by 2.88%. The diff coverage is 0%. @@ Coverage Diff @@ ## master #1511 +/- ## ========================================== - Coverage 40.56% 37.68% -2.89% ========================================== Files 254 252 -2 Lines 16535 17786 +1251 ========================================== - Hits 6708 6703 -5 - Misses 8965 10215 +1250 - Partials 862 868 +6 Impacted Files Coverage Δ cri/v1alpha1/cri.go 0% <0%> (ø) :arrow_up: cri/v1alpha1/cri_utils.go 28.28% <0%> (-0.97%) :arrow_down: client/network_connect.go 0% <0%> (-100%) :arrow_down: client/container_exec.go 0% <0%> (-80%) :arrow_down: daemon/mgr/network.go 51.42% <0%> (-18.01%) :arrow_down: daemon/mgr/container_types.go 61.16% <0%> (-16.62%) :arrow_down: daemon/mgr/spec_mount.go 54.54% <0%> (-15.67%) :arrow_down: daemon/mgr/container.go 34.72% <0%> (-14.57%) :arrow_down: daemon/mgr/spec.go 40% <0%> (-14.55%) :arrow_down: pkg/utils/utils.go 71.7% <0%> (-13.57%) :arrow_down: ... and 12 more @allencloud Thank you for your patient guidance. Everything mentioned above has been resolved. LGTM
gharchive/pull-request
2018-06-12T03:23:06
2025-04-01T06:37:47.693169
{ "authors": [ "Starnop", "allencloud", "codecov-io" ], "repo": "alibaba/pouch", "url": "https://github.com/alibaba/pouch/pull/1511", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1007343186
optimize e2e build fix github e2e action save log file error. local build requires k8sClient, so delete e2e local build test and add lite build test. /test image
gharchive/pull-request
2021-09-26T10:02:41
2025-04-01T06:37:47.694525
{ "authors": [ "bxy4543" ], "repo": "alibaba/sealer", "url": "https://github.com/alibaba/sealer/pull/714", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
719236488
spring-cloud-alibaba-dependencies 2.3.3 cannot be compatible with springcloud Hoxton.SR8 perfectly 我们鼓励使用英文,如果不能直接使用,可以使用翻译软件,您仍旧可以保留中文原文。 We recommend using English. If you are non-native English speaker, you can use the translation software. Which Component eg. Nacos ,Dubbo Describe the bug <spring-boot-admin.version>2.3.0</spring-boot-admin.version> <spring-boot.version>2.3.3.RELEASE</spring-boot.version> <spring-cloud.version>Hoxton.SR8</spring-cloud.version> <spring-cloud-alibaba.version>2.2.3.RELEASE</spring-cloud-alibaba.version> I have a service that can't regist at nacos, but others suceeded. Dubbo version 2.7.8-release,Nacos version 1.3.2 I also encountered a similar situation. I have two consumers and five providers, but only the providers can be started, and all consumers can't start it. The port is already binded. After observing the configuration of the provider, we configed dubbo.protocol.port= -1. In Dubbo 2.7.6, consumers do not need to configure, but in Dubbo 2.7.8, they need to configure. Please chek you spring-cloud-alibaba.version https://docs.spring.io/spring-cloud/docs/Hoxton.SR8/reference/html/ spring-cloud-alibaba.version is in line with spring-boot.version
gharchive/issue
2020-10-12T09:47:18
2025-04-01T06:37:47.706563
{ "authors": [ "CoooderSan", "LJC8888888888", "zjpjohn" ], "repo": "alibaba/spring-cloud-alibaba", "url": "https://github.com/alibaba/spring-cloud-alibaba/issues/1777", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
331826830
int.dpool.sina.com.cn shutdown should i report to here? http://int.dpool.sina.com.cn/ 404 Not Found The requested URL was not found on this server. Sorry for the inconvenience. Please report this message and include the following information to us. Thank you very much! URL: http://int.dpool.sina.com.cn/ Server: iz2zedvddod8c7o5psqg31z Date: 2018/06/13 11:11:38 Powered by Tengine It's a wrong address to report this issue. It should be related to Sina.com, not Taobao.com. BTW, I'm also trying to find an answer for this one and getting here~
gharchive/issue
2018-06-13T03:17:05
2025-04-01T06:37:47.709926
{ "authors": [ "Oldsooh", "liwengithub" ], "repo": "alibaba/tengine", "url": "https://github.com/alibaba/tengine/issues/1061", "license": "BSD-2-Clause", "license_type": "permissive", "license_source": "github-api" }
358613203
tengine 记录POST 数据报:"The pipe" was incomplete: 65536 of 140665 通过tengine 记录 POST 数据报错 相关nginx 配置: server { listen 80 backlog=20480; server_name c.xxx.com client_body_buffer_size 128k; location = /m1.htm{ lua_need_request_body on; root /data/webroot/www/beibei; #access_log /logs/click/bbappv1.log click; access_log "pipe:/usr/sbin/cronolog -p30min /data/10-10-111-37.%s" click; content_by_lua "ngx.exit(ngx.HTTP_OK)"; } } 具体报错信息: 2018/09/10 20:55:34 [alert] 26143#0: *33275607570 write() to "The pipe" was incomplete: 65536 of 110509 while logging request, client: 1.1.1.1, server: c.xxx.com, request: "POST /m1.htm HTTP/1.1", host: "c.xxx.com" 2018/09/10 20:55:35 [alert] 26127#0: *33275611755 write() to "The pipe" was incomplete: 54925 of 75405 while logging request, client: 1.1.1.1, server: c.xxx.com, request: "POST /m1.htm HTTP/1.1", host: "c.xxx.com" 2018/09/10 20:55:37 [alert] 26144#0: *33275621339 write() to "The pipe" was incomplete: 65536 of 75996 while logging request, client: 11.1.1.1, server: c.xxx.com, request: "POST /m1.htm HTTP/1.1", host: "c.xxx.com" 2018/09/10 20:55:38 [alert] 26146#0: *33275622079 write() to "The pipe" was incomplete: 65536 of 104438 while logging request, client: 1.1.1.1, server: c.xxx.com, request: "POST /m1.htm HTTP/1.1", host: "c.xxx.com" 2018/09/10 20:55:38 [alert] 26143#0: *33275624581 write() to "The pipe" was incomplete: 65536 of 89734 while logging request, client: 1.1.1.1, server: c.xxx.com, request: "POST /m1.htm HTTP/1.1", host: "c.xxx.com" 2018/09/10 20:55:41 [alert] 26144#0: *33275633751 write() to "The pipe" was incomplete: 65536 of 66415 while logging request, client: 1.1.1.1, server: c.xxx.com, request: "POST /m1.htm HTTP/1.1", host: "c.xxx.com" 2018/09/10 20:55:41 [alert] 26143#0: *33275634504 write() to "The pipe" was incomplete: 65536 of 67036 while logging request, client: 1.1.1.1, server: c.xxx.com, request: "POST /m1.htm HTTP/1.1", host: "c.xxx.com" 2018/09/10 20:55:41 [alert] 26130#0: *33275635201 write() to "The pipe" was incomplete: 65536 of 69098 while logging request, client: 1.1.1.1, server: c.xxx.com, request: "POST /m1.htm HTTP/1.1", host: "c.xxx.com" 2018/09/10 20:55:42 [alert] 26116#0: *33275637272 write() to "The pipe" was incomplete: 65536 of 69983 while logging request, client: 1.1.1.1, server: c.xxx.com, request: "POST /m1.htm HTTP/1.1", host: "c.xxx.com" 2018/09/10 20:55:43 [alert] 26118#0: *33275641762 write() to "The pipe" was incomplete: 65536 of 104337 while logging request, client: 1.1.1.1, server: c.xxx.com, request: "POST /m1.htm HTTP/1.1", host: "c.xxx.com" 2018/09/10 20:55:49 [alert] 26127#0: *33275664618 write() to "The pipe" was incomplete: 65536 of 73073 while logging request, client: 1.1.1.1, server: c.xxx.com, request: "POST /m1.htm HTTP/1.1", host: "c.xxx.com" 2018/09/10 20:55:51 [alert] 26146#0: *33275669435 write() to "The pipe" was incomplete: 65536 of 316774 while logging request, client: 1.1.1.1, server: c.xxx.com, request: "POST /m1.htm HTTP/1.1", host: "c.xxx.com" 2018/09/10 20:55:51 [alert] 26135#0: *33275669969 write() to "The pipe" was incomplete: 65536 of 118549 while logging request, client: 1.1.1.1, server: c.xxx.com, request: "POST /m1.htm HTTP/1.1", host: "c.xxx.com" 2018/09/10 20:55:53 [alert] 26115#0: *33275678436 write() to "The pipe" was incomplete: 65536 of 71883 while logging request, client: 1.1.1.1, server: c.xxx.com, request: "POST /m1.htm HTTP/1.1", host: "c.xxx.com" 2018/09/10 20:55:56 [alert] 26130#0: *33275688373 write() to "The pipe" was incomplete: 65536 of 152103 while logging request, client: 1.1.1.1, server: c.xxx.com, request: "POST /m1.htm HTTP/1.1", host: "c.xxx.com" 是否要调整某些配置参数? 通过管道pipe方式记录日志,每条日志是有大小限制的。 maxsize = pipe size * PIPE_BUFFERS 一般是4k * 16 即单行日志最大64k,超过的部分就会被截断。 那有办法修改参数解决吗? 可以不通过pipe的方式记录日志,然后通过设置access_log的buffer大小来控制,详细请参考 http://nginx.org/en/docs/http/ngx_http_log_module.html#access_log 可以不通过pipe的方式记录日志,然后通过设置access_log的buffer大小来控制,详细请参考 http://nginx.org/en/docs/http/ngx_http_log_module.html#access_log 这个pipe_buffer是通过哪个内核参数调整的呢? 很久以前看到是在源代码里硬编码的, 不过不了解新版本的情况
gharchive/issue
2018-09-10T13:03:57
2025-04-01T06:37:47.729830
{ "authors": [ "ArnoYe", "cfsego", "jjzhang789", "wangfakang" ], "repo": "alibaba/tengine", "url": "https://github.com/alibaba/tengine/issues/1098", "license": "BSD-2-Clause", "license_type": "permissive", "license_source": "github-api" }
136747836
Switch Marks from HashMap to an array Since there are only 26 possible marks, it's possible to implement with a simple array, and it ends up being much faster. 100k random insertions: HashMap: ~0.125s Array: ~0.043s With add_line after each random insertion: HashMap: ~3.139s Array: ~0.121s 100k add_line's on an empty container: HashMap: ~0.466s Array: ~0.069s I also changed the refereces to usize to be usize. IIUC usize is the same size as pointers, so there's no benefit. use std::collections::{VecDeque, HashMap}; slipped into the merge. HashMap isn't required.
gharchive/pull-request
2016-02-26T16:38:26
2025-04-01T06:37:47.735599
{ "authors": [ "salty-horse" ], "repo": "alicemaz/rust-ed", "url": "https://github.com/alicemaz/rust-ed/pull/4", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
200693961
Style hotfix Put box-sizing on everything. That's my own crutch but seemed to fix some oddities, like the creative commons positioning on mobile. Change if needed. Not sure why the wrapping flexbox on header was causing problems. Current coverage is 15.09% (diff: 100%) Merging #17 into master will not change coverage @@ master #17 diff @@ ========================================== Files 18 18 Lines 159 159 Methods 62 62 Messages 0 0 Branches 47 47 ========================================== Hits 24 24 Misses 135 135 Partials 0 0 Powered by Codecov. Last update 154a529...0b8a0bb
gharchive/pull-request
2017-01-13T18:12:33
2025-04-01T06:37:47.766823
{ "authors": [ "codecov-io", "jvoros" ], "repo": "aliemteam/aliemcards", "url": "https://github.com/aliemteam/aliemcards/pull/17", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1677337331
Implement token revocation endpoint RFC 7009: OAuth 2.0 Token Revocation https://datatracker.ietf.org/doc/html/rfc7009 Codecov Report Merging #84 (aa72462) into master (c1f3a87) will decrease coverage by 0.68%. The diff coverage is 70.58%. :mega: This organization is not using Codecov’s GitHub App Integration. We recommend you install it so Codecov can continue to function properly for your repositories. Learn more @@ Coverage Diff @@ ## master #84 +/- ## ========================================== - Coverage 98.55% 97.87% -0.68% ========================================== Files 15 15 Lines 691 707 +16 Branches 106 110 +4 ========================================== + Hits 681 692 +11 - Misses 4 6 +2 - Partials 6 9 +3 Impacted Files Coverage Δ aioauth/types.py 100.00% <ø> (ø) aioauth/server.py 95.30% <64.28%> (-3.22%) :arrow_down: aioauth/errors.py 100.00% <100.00%> (ø) aioauth/storage.py 100.00% <100.00%> (ø) :mega: We’re building smart automated test selection to slash your CI/CD build times. Learn more Hi there @aliev, it seems like this didn't get included in the most recent release v1.5.4, was that intentional? Do you know when this feature might get released? Thanks, Shawn Hi, @shawn-monadical Sorry for the late reply; I had a tough week. Give me some time after the weekend, and I will review all possible options regarding the release. I’ll also try to answer your questions in Discussions. No worries @aliev, hope you're feeling better and of course thank you for your work on this excellent project. It's been a big help for me. @shawn-monadical I released v1.6.0. Could you check, please? Thanks @aliev, it seems the token revocation endpoint and the new OIDC classes are included in the latest release, exactly what I needed!
gharchive/pull-request
2023-04-20T20:01:34
2025-04-01T06:37:47.777329
{ "authors": [ "aliev", "codecov-commenter", "mgorven", "shawn-monadical" ], "repo": "aliev/aioauth", "url": "https://github.com/aliev/aioauth/pull/84", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
283363449
Append script/noscript as first child Google has in their documentation that their script should be as close to the top of the head tag and the noscript should be the first thing in the body tag. It is just being appended, so if there were any pre-existing elements this would append them in non-ideal locations. It would be good to be a little bit more defensive about making sure it is appending it as the first element in head/body. If something comes in later and inserts as first there is nothing you can do, but it should not stop this library from doing things as best it can. There's various ways to accomplish this. Here's a SO link for setting elements as the first child. do you mean it should use an insertBefore on the first index element of header and body? https://github.com/alinemorelli/react-gtm/blob/master/src/TagManager.js#L42 Yes, basically just replace those two appendChild calls. Isn't noscript basically useless since its never going to trigger, because if user has javascript disabled react won't even run? If this module would support server-side rendering, then it would be useful. Thank you for the report, fixed in the version 2.0.4.
gharchive/issue
2017-12-19T20:43:39
2025-04-01T06:37:47.785241
{ "authors": [ "alinemorelli", "david-soyez", "nikopavlica", "thaithco", "thaithcock" ], "repo": "alinemorelli/react-gtm", "url": "https://github.com/alinemorelli/react-gtm/issues/5", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
2178002716
Closing when is typed space in the another extract choice section extract-file-names.bat batch script When it is typed space in the another extract choice section, the instance is closed. This issue was resolved using the reaction of to close after press space+enter using it as a special comand to end the program anytime.
gharchive/issue
2024-03-11T00:46:59
2025-04-01T06:37:47.808792
{ "authors": [ "alisonclayton" ], "repo": "alisonclayton/batch-scripts", "url": "https://github.com/alisonclayton/batch-scripts/issues/2", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2686257727
Does the Sima code assume that the TP_num and the number of NVSwitches are consistent across all machines when initializing NCCL? As shown in the figure, during initialization, MockNcclGroup calculates TP_num and NVSwitch. Does MockNcclGroup assume that TP_num and the number of NVSwitches are consistent? For example, if tp_size=4 and gpus_per_node=8, then TP_num=2. Based on the code, it seems to assume that each machine also has 2 NVSwitches in this case. Is my understanding correct? Thank you for clarifying. Yes,in order to support the scenario where multiple TP groups use NVLS within a single machine, we assume that the number of NVswitches within a single machine is consistent with the number of TP groups within that machine. The number of NVswitches within a single machine in the network topology can be set through the -nsps parameter in the file astra-sim-alibabacloud/inputs/topo/gen_HPN_7.0_topo_mulgpus_one_link.py.
gharchive/issue
2024-11-23T16:44:04
2025-04-01T06:37:47.855497
{ "authors": [ "HUNMrsen", "jackmygreat" ], "repo": "aliyun/SimAI", "url": "https://github.com/aliyun/SimAI/issues/21", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
776287531
SignURL能对文件夹生成一个签名,然后访问文件夹下所有文件不? 一个文件夹下有许多的文件,想对文件夹生成一个URL签名。然后通过这个URL签名访问这个文件夹下所有的文件。 用以下代码实现不了 # 想用一个URL签名访问 images 文件夹下所有的文件 signedURL, _ := bucket.SignURL("images/", oss.HTTPGet, 60) 请问有其他方法不? 现在不行,可以先将文件夹的object遍历出来,然后对每个object单独进行签名 现在不行,可以先将文件夹的object遍历出来,然后对每个object单独进行签名
gharchive/issue
2020-12-30T06:18:49
2025-04-01T06:37:47.857008
{ "authors": [ "atiasn", "wangtaowei" ], "repo": "aliyun/aliyun-oss-go-sdk", "url": "https://github.com/aliyun/aliyun-oss-go-sdk/issues/278", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
960829753
Upgrade pip cache Fixes #48 This option did not work as intended - superseded by #50
gharchive/pull-request
2021-08-04T18:16:51
2025-04-01T06:37:47.924975
{ "authors": [ "streeve" ], "repo": "allaffa/GCNN", "url": "https://github.com/allaffa/GCNN/pull/49", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
1435082527
Update rtlamr2mqtt.py Fixing unbalanced paranthesis on line 439 Thank you
gharchive/pull-request
2022-11-03T18:15:24
2025-04-01T06:37:47.925941
{ "authors": [ "LordPsycho202", "allangood" ], "repo": "allangood/rtlamr2mqtt", "url": "https://github.com/allangood/rtlamr2mqtt/pull/167", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1090860496
no sub found . 但是字幕库能搜到 你使用的 chinesesubfinder 是什么版本,什么环境? chinesesubfinder 版本: v0.18.8 环境: docker 你遇到什么问题了? 描述一下你遇到的问题 一些电影log显示no sub found . 但是字幕库能搜到(使用imdbid和电影名均可以) 你的问题弄重现嘛? 能够重新 你期望的结果 描述以下你期望的结果 可以找到电影字幕 可以提供遇到问题时候,电影、连续剧的信息吗? 如下填写 视频的目录: 视频的信息: Red Notice (2021) 红色通缉令.mp4 出错的日志信息可以复制一些出来吗? 日志在程序的 Logs 目录下,如果你用的是 docker ,那么需要你映射出来。 Brought to you by linuxserver.io ------------------------------------- To support LSIO projects visit: https://www.linuxserver.io/donate/ ------------------------------------- GID/UID ------------------------------------- User uid: 1000 User gid: 100 ------------------------------------- [cont-init.d] 10-adduser: exited 0. [cont-init.d] 30-config: executing... [cont-init.d] 30-config: exited 0. [cont-init.d] 50-config: executing... [cont-init.d] 50-config: exited 0. [cont-init.d] 90-custom-folders: executing... [cont-init.d] 90-custom-folders: exited 0. [cont-init.d] 99-custom-scripts: executing... [cont-init.d] 99-custom-scripts: exited 0. [cont-init.d] done. [services.d] starting services [services.d] done. [INFO]: 2021-12-30 11:45:53 - ChineseSubFinder Version: v0.18.8 [INFO]: 2021-12-30 11:45:53 - UseProxy = false [INFO]: 2021-12-30 11:45:53 - MovieFolder: /media/离线电影 [INFO]: 2021-12-30 11:45:53 - SeriesFolder: /media/美剧英剧电视剧 [INFO]: 2021-12-30 11:45:53 - HotFix Start... [INFO]: 2021-12-30 11:45:53 - HotFix End [INFO]: 2021-12-30 11:45:53 - Change Sub Name Format Start... [INFO]: 2021-12-30 11:45:53 - DesSubFormatter == LateTimeSubFormatter then skip process [INFO]: 2021-12-30 11:45:53 - Change Sub Name Format End [INFO]: 2021-12-30 11:45:53 - First Time Download Start [INFO]: 2021-12-30 11:45:53 - Download One Started... [INFO]: 2021-12-30 11:45:53 - Download Movie Sub Started... [INFO]: 2021-12-30 11:45:57 - 0 DlSub Start /media/离线电影/Red Notice (2021) 红色通缉令 [tmdbid=512195] {tmdb-512195} [imdbid=tt7991608] {imdb-tt7991608}/Red Notice (2021) 红色通缉令.mp4 [INFO]: 2021-12-30 11:45:57 - 0 shooter Start... [INFO]: 2021-12-30 11:45:57 - 0 zimuku Start... [INFO]: 2021-12-30 11:45:57 - 0 xunlei Start... [INFO]: 2021-12-30 11:45:57 - 0 xunlei End... [INFO]: 2021-12-30 11:45:57 - 0 shooter End... [INFO]: 2021-12-30 11:46:11 - 0 zimuku End... [INFO]: 2021-12-30 11:46:11 - 0 DlSub End /media/离线电影/Red Notice (2021) 红色通缉令 [tmdbid=512195] {tmdb-512195} [imdbid=tt7991608] {imdb-tt7991608}/Red Notice (2021) 红色通缉令.mp4 [INFO]: 2021-12-30 11:46:11 - no sub found Red Notice (2021) 红色通缉令.mp4 [INFO]: 2021-12-30 11:46:11 - Download Movie Sub End... [INFO]: 2021-12-30 11:46:11 - Download Series Sub Started... [INFO]: 2021-12-30 11:46:11 - Download Series Sub End... [INFO]: 2021-12-30 11:46:11 - Auto Fix Sub Timeline Start... [INFO]: 2021-12-30 11:46:11 - Auto Fix Sub Timeline End [INFO]: 2021-12-30 11:46:11 - Download One End... [INFO]: 2021-12-30 11:46:11 - First Time Download End Red Notice (2021) 红色通缉令.nfo <movie> <title>红色通缉令</title> <originaltitle>Red Notice</originaltitle> <sorttitle>red notice</sorttitle> <ratings> <rating name="themoviedb" max="10" default="true"> <value>6.8</value> <votes>2178</votes> </rating> </ratings> <rating>6.8</rating> <userrating /> <top250 /> <outline /> <plot>一名联邦调查局侧写员奉命追踪世界头号艺术品窃贼,殊不知窃贼却变为了他的同伴。不情不愿的他要与之联手逮捕一个总是领先一步且神出鬼没的诈骗犯。</plot> <tagline /> <runtime>117</runtime> <thumb aspect="poster" preview="https://image.tmdb.org/t/p/original/lAXONuqg41NwUMuzMiFvicDET9Y.jpg">https://image.tmdb.org/t/p/original/lAXONuqg41NwUMuzMiFvicDET9Y.jpg</thumb> <fanart> <thumb preview="https://image.tmdb.org/t/p/original/7ajHGIAYNMiIzejy1LJWdPrcAx8.jpg">https://image.tmdb.org/t/p/original/7ajHGIAYNMiIzejy1LJWdPrcAx8.jpg</thumb> </fanart> <mpaa>PG-13</mpaa> <playcount /> <lastplayed /> <id>512195</id> <uniqueid type="tmdb" default="true">512195</uniqueid> <uniqueid type="imdb">tt7991608</uniqueid> <genre>Action</genre> <genre>Comedy</genre> <genre>Crime</genre> <country /> <credits>Rawson Marshall Thurber</credits> <director>Rawson Marshall Thurber</director> <premiered>2021-11-04</premiered> <year>2021</year> <studio>Flynn Picture Company</studio> <trailer>plugin://plugin.video.youtube/play/?video_id=Pj0wz7zu3Ms</trailer> <fileinfo> <streamdetails> <video> <aspect>1.7777778</aspect> <bitrate>2666406</bitrate> <codec>h264</codec> <framerate>24.000</framerate> <height>1080</height> <scantype>Progressive</scantype> <width>1920</width> <duration>117.98333333333333</duration> <durationinseconds>7079</durationinseconds> </video> <audio> <bitrate>256000</bitrate> <channels>6</channels> <codec>AC3</codec> <language>English</language> </audio> </streamdetails> </fileinfo> <actor> <name>Dwayne Johnson</name> <role>John Hartley</role> <order>0</order> <thumb>https://image.tmdb.org/t/p/original/kuqFzlYMc2IrsOyPznMd1FroeGq.jpg</thumb> </actor> <actor> <name>Ryan Reynolds</name> <role>Nolan Booth</role> <order>1</order> <thumb>https://image.tmdb.org/t/p/original/4SYTH5FdB0dAORV98Nwg3llgVnY.jpg</thumb> </actor> <actor> <name>Gal Gadot</name> <role>Sarah Black / The Bishop</role> <order>2</order> <thumb>https://image.tmdb.org/t/p/original/cIi5pCTdVpD4Hn0OEcJhJeNKYMw.jpg</thumb> </actor> <actor> <name>Ritu Arya</name> <role>Inspector Urvashi Das</role> <order>3</order> <thumb>https://image.tmdb.org/t/p/original/ihrpR4DeBgxYgpU7b1I0tFKckm1.jpg</thumb> </actor> <actor> <name>Chris Diamantopoulos</name> <role>Sotto Voce</role> <order>4</order> <thumb>https://image.tmdb.org/t/p/original/rCp2ZVOFnQt2vvVn4QmOOPz5WVh.jpg</thumb> </actor> <actor> <name>Ivan Mbakop</name> <role>Tambwe</role> <order>5</order> <thumb>https://image.tmdb.org/t/p/original/6X8bfrpJlDJUIQj9nt5IV1HfQGM.jpg</thumb> </actor> <actor> <name>Vincenzo Amato</name> <role>Director Gallo</role> <order>6</order> <thumb>https://image.tmdb.org/t/p/original/h1cwmBKjFxGgIX4RcPhdcjJGpBa.jpg</thumb> </actor> <actor> <name>Rafael Petardi</name> <role>Security Chief Ricci</role> <order>7</order> <thumb>https://image.tmdb.org/t/p/original/1ychureLvmyTVYYKI41pN13efFr.jpg</thumb> </actor> <actor> <name>Seth Michaels</name> <role>Souvenir Stand Owner</role> <order>8</order> </actor> <actor> <name>Sebastien Large</name> <role>Gelato Truck Driver</role> <order>9</order> </actor> <actor> <name>Guy Nardulli</name> <role>Museum Reporter / Italian VIP</role> <order>10</order> </actor> <actor> <name>Andrew Hunter</name> <role>Moped Tourist</role> <order>11</order> <thumb>https://image.tmdb.org/t/p/original/qo257KJR4WpjHrQfnEeUY3JdZ2P.jpg</thumb> </actor> <actor> <name>George Tsai</name> <role>Bali Van Driver</role> <order>12</order> <thumb>https://image.tmdb.org/t/p/original/4l05ulUteEk6Gdp2opdHlnfzvtn.jpg</thumb> </actor> <actor> <name>Rawson Marshall Thurber</name> <role>Exhausted Film Director in Bar</role> <order>13</order> <thumb>https://image.tmdb.org/t/p/original/4gpzB12oy73qr5nWNNyZICz9nFB.jpg</thumb> </actor> <actor> <name>Anthony Belevtsov</name> <role>Prison Guard Sergeant</role> <order>14</order> <thumb>https://image.tmdb.org/t/p/original/8oghqsjK6Pyvc1r9Zndilgl3EOV.jpg</thumb> </actor> <actor> <name>Daniel Bernhardt</name> <role>Drago Grande</role> <order>15</order> <thumb>https://image.tmdb.org/t/p/original/b59qhg5VJOCypx9eMXrXHAjauLd.jpg</thumb> </actor> <actor> <name>Yosef Podolski</name> <role>Lead Guard</role> <order>16</order> </actor> <actor> <name>Alexander Perkins</name> <role>Intelligence Analyst</role> <order>17</order> <thumb>https://image.tmdb.org/t/p/original/aJ3uqgRXPW0Jvxp6MbgQS8vLfBL.jpg</thumb> </actor> <actor> <name>Joseph A. Garcia</name> <role>Old Tech</role> <order>18</order> <thumb>https://image.tmdb.org/t/p/original/kaNFRoFLjHxeEVntTSrb5xeRPW.jpg</thumb> </actor> <actor> <name>Nathan Theis</name> <role>Young Tech</role> <order>19</order> <thumb>https://image.tmdb.org/t/p/original/wUhiaVclV1urgNpopDhvdS31pRR.jpg</thumb> </actor> <actor> <name>Gonzalo Escudero</name> <role>Head Waiter</role> <order>20</order> </actor> <actor> <name>Tom Choi</name> <role>Mongolian Captain</role> <order>21</order> <thumb>https://image.tmdb.org/t/p/original/48uNKlsPufa5NMcaFGYv01ZbGXA.jpg</thumb> </actor> <actor> <name>Nick Arapoglou</name> <role>Officer on Yacht</role> <order>22</order> <thumb>https://image.tmdb.org/t/p/original/3ZM2dRRRFrz1nLsshETs6egpKYX.jpg</thumb> </actor> <actor> <name>Robert Clotworthy</name> <role>Opening Narrator (voice)</role> <order>23</order> <thumb>https://image.tmdb.org/t/p/original/ya6d3Nkp28AYIQ9TFDfwh8lshxg.jpg</thumb> </actor> <actor> <name>Martin Harris</name> <role>Tower Guard</role> <order>24</order> <thumb>https://image.tmdb.org/t/p/original/3CRHqBr5U8pexQdtB42P0ZzK9x0.jpg</thumb> </actor> <actor> <name>Ethan Herschenfeld</name> <role>Aranoub Magdy</role> <order>25</order> </actor> <actor> <name>Ed Sheeran</name> <role>Ed Sheeran (uncredited)</role> <order>26</order> <thumb>https://image.tmdb.org/t/p/original/w7zbWC9AV0WfIEl8L38otal7mwS.jpg</thumb> </actor> <actor> <name>Steve Eifert</name> <role>Prison Captain</role> <order>27</order> <thumb>https://image.tmdb.org/t/p/original/2cmouno9Lz9hVuQvrb350epJZw9.jpg</thumb> </actor> </movie> https://www.themoviedb.org/movie/512195 UseProxy: false HttpProxy: http://127.0.0.1:10809 EveryTime: 6h Threads: 4 SubTypePriority: 1 SubNameFormatter: 1 DebugMode: false SaveMultiSub: false #SaveOneSeasonSub: true RunAtStartup: true #CustomVideoExts: mpeg,flv,f4v # 这里是举例,一般来说这一项可以不填写(删除)足够满足大部分人的需求 MovieFolder: /media/离线电影 SeriesFolder: /media/美剧英剧电视剧 FixTimeLine: true 推送了 v0.19.0 ,估计半个小时后可以下载,你换新的试试,新的日志和一些细节调整了。有问题再反馈。麻烦了。 这个电影我也看了,应该是没问题的,使用 v0.19 后,你可以尝试把 DebugMode: True 打开来允许。测试下。 图片1 不排除是你这个文件夹的名称太猛了··· 😂 0.19.0 相同结果 [s6-init] making user provided files available at /var/run/s6/etc...exited 0. [s6-init] ensuring user provided files have correct perms...exited 0. [fix-attrs.d] applying ownership & permissions fixes... [fix-attrs.d] done. [cont-init.d] executing container initialization scripts... [cont-init.d] 01-envfile: executing... [cont-init.d] 01-envfile: exited 0. [cont-init.d] 01-migrations: executing... [migrations] started [migrations] no migrations found [cont-init.d] 01-migrations: exited 0. [cont-init.d] 10-adduser: executing... ------------------------------------- _ () | | ___ _ __ | | / __| | | / \ | | \__ \ | | | () | |_| |___/ |_| \__/ Brought to you by linuxserver.io ------------------------------------- To support LSIO projects visit: https://www.linuxserver.io/donate/ ------------------------------------- GID/UID ------------------------------------- User uid: 1000 User gid: 100 ------------------------------------- [cont-init.d] 10-adduser: exited 0. [cont-init.d] 30-config: executing... [cont-init.d] 30-config: exited 0. [cont-init.d] 50-config: executing... [cont-init.d] 50-config: exited 0. [cont-init.d] 90-custom-folders: executing... [cont-init.d] 90-custom-folders: exited 0. [cont-init.d] 99-custom-scripts: executing... [cont-init.d] 99-custom-scripts: exited 0. [cont-init.d] done. [services.d] starting services [services.d] done. [INFO]: 2021-12-30 12:38:10 - ChineseSubFinder Version: v0.19.0 [INFO]: 2021-12-30 12:38:10 - UseProxy = false [INFO]: 2021-12-30 12:38:10 - MovieFolder: /media/离线电影 [INFO]: 2021-12-30 12:38:10 - SeriesFolder: /media/美剧英剧电视剧 [INFO]: 2021-12-30 12:38:10 - HotFix Start, wait ... [INFO]: 2021-12-30 12:38:10 - If you have a lot of videos, it may take a lot of time, just wait... [INFO]: 2021-12-30 12:38:10 - HotFix End [INFO]: 2021-12-30 12:38:10 - Change Sub Name Format Start... [INFO]: 2021-12-30 12:38:10 - If you have a lot of videos, it may take a lot of time, just wait... [INFO]: 2021-12-30 12:38:10 - DesSubFormatter == LateTimeSubFormatter then skip process [INFO]: 2021-12-30 12:38:10 - Change Sub Name Format End [INFO]: 2021-12-30 12:38:10 - First Time Download Start [INFO]: 2021-12-30 12:38:11 - ffmpeg version 3.4.8-0ubuntu0.2 Copyright (c) 2000-2020 the FFmpeg developers built with gcc 7 (Ubuntu 7.5.0-3ubuntu1~18.04) configuration: --prefix=/usr --extra-version=0ubuntu0.2 --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --enable-gpl --disable-stripping --enable-avresample --enable-avisynth --enable-gnutls --enable-ladspa --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librubberband --enable-librsvg --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzmq --enable-libzvbi --enable-omx --enable-openal --enable-opengl --enable-sdl2 --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libopencv --enable-libx264 --enable-shared libavutil 55. 78.100 / 55. 78.100 libavcodec 57.107.100 / 57.107.100 libavformat 57. 83.100 / 57. 83.100 libavdevice 57. 10.100 / 57. 10.100 libavfilter 6.107.100 / 6.107.100 libavresample 3. 7. 0 / 3. 7. 0 libswscale 4. 8.100 / 4. 8.100 libswresample 2. 9.100 / 2. 9.100 libpostproc 54. 7.100 / 54. 7.100 ffprobe version 3.4.8-0ubuntu0.2 Copyright (c) 2007-2020 the FFmpeg developers built with gcc 7 (Ubuntu 7.5.0-3ubuntu1~18.04) configuration: --prefix=/usr --extra-version=0ubuntu0.2 --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --enable-gpl --disable-stripping --enable-avresample --enable-avisynth --enable-gnutls --enable-ladspa --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librubberband --enable-librsvg --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzmq --enable-libzvbi --enable-omx --enable-openal --enable-opengl --enable-sdl2 --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libopencv --enable-libx264 --enable-shared libavutil 55. 78.100 / 55. 78.100 libavcodec 57.107.100 / 57.107.100 libavformat 57. 83.100 / 57. 83.100 libavdevice 57. 10.100 / 57. 10.100 libavfilter 6.107.100 / 6.107.100 libavresample 3. 7. 0 / 3. 7. 0 libswscale 4. 8.100 / 4. 8.100 libswresample 2. 9.100 / 2. 9.100 libpostproc 54. 7.100 / 54. 7.100 [INFO]: 2021-12-30 12:38:11 - Download One Started... [INFO]: 2021-12-30 12:38:11 - Download Movie Sub Started... [INFO]: 2021-12-30 12:38:20 - Queue 0 DlSub Start /media/离线电影/Red Notice (2021) 红色通缉令 [tmdbid=512195] {tmdb-512195} [imdbid=tt7991608] {imdb-tt7991608}/Red Notice (2021) 红色通缉令.mp4 [INFO]: 2021-12-30 12:38:20 - Queue 0 shooter Start... [INFO]: 2021-12-30 12:38:20 - Queue 0 zimuku Start... [INFO]: 2021-12-30 12:38:20 - Queue 0 xunlei Start... [INFO]: 2021-12-30 12:38:21 - Queue 0 xunlei End... [INFO]: 2021-12-30 12:38:21 - Queue 0 shooter End... [INFO]: 2021-12-30 12:38:39 - Queue 0 zimuku End... [INFO]: 2021-12-30 12:38:39 - Queue 0 DlSub End /media/离线电影/Red Notice (2021) 红色通缉令 [tmdbid=512195] {tmdb-512195} [imdbid=tt7991608] {imdb-tt7991608}/Red Notice (2021) 红色通缉令.mp4 [INFO]: 2021-12-30 12:38:39 - no sub found Red Notice (2021) 红色通缉令.mp4 [INFO]: 2021-12-30 12:38:39 - Download Movie Sub End... [INFO]: 2021-12-30 12:38:39 - Download Series Sub Started... [INFO]: 2021-12-30 12:38:39 - Download Series Sub End... [INFO]: 2021-12-30 12:38:39 - Download One End... [INFO]: 2021-12-30 12:38:39 - First Time Download End 开启了DebugMode: true [cont-init.d] 10-adduser: exited 0. [cont-init.d] 30-config: executing... [cont-init.d] 30-config: exited 0. [cont-init.d] 50-config: executing... [cont-init.d] 50-config: exited 0. [cont-init.d] 90-custom-folders: executing... [cont-init.d] 90-custom-folders: exited 0. [cont-init.d] 99-custom-scripts: executing... [cont-init.d] 99-custom-scripts: exited 0. [cont-init.d] done. [services.d] starting services [services.d] done. [INFO]: 2021-12-30 12:40:57 - ChineseSubFinder Version: v0.19.0 [INFO]: 2021-12-30 12:40:57 - UseProxy = false [INFO]: 2021-12-30 12:40:57 - MovieFolder: /media/离线电影 [INFO]: 2021-12-30 12:40:57 - SeriesFolder: /media/美剧英剧电视剧 [INFO]: 2021-12-30 12:40:57 - HotFix Start, wait ... [INFO]: 2021-12-30 12:40:57 - If you have a lot of videos, it may take a lot of time, just wait... [INFO]: 2021-12-30 12:40:57 - HotFix End [INFO]: 2021-12-30 12:40:57 - Change Sub Name Format Start... [INFO]: 2021-12-30 12:40:57 - If you have a lot of videos, it may take a lot of time, just wait... [INFO]: 2021-12-30 12:40:57 - DesSubFormatter == LateTimeSubFormatter then skip process [INFO]: 2021-12-30 12:40:57 - Change Sub Name Format End [INFO]: 2021-12-30 12:40:57 - First Time Download Start [INFO]: 2021-12-30 12:40:57 - ffmpeg version 3.4.8-0ubuntu0.2 Copyright (c) 2000-2020 the FFmpeg developers built with gcc 7 (Ubuntu 7.5.0-3ubuntu1~18.04) configuration: --prefix=/usr --extra-version=0ubuntu0.2 --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --enable-gpl --disable-stripping --enable-avresample --enable-avisynth --enable-gnutls --enable-ladspa --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librubberband --enable-librsvg --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzmq --enable-libzvbi --enable-omx --enable-openal --enable-opengl --enable-sdl2 --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libopencv --enable-libx264 --enable-shared libavutil 55. 78.100 / 55. 78.100 libavcodec 57.107.100 / 57.107.100 libavformat 57. 83.100 / 57. 83.100 libavdevice 57. 10.100 / 57. 10.100 libavfilter 6.107.100 / 6.107.100 libavresample 3. 7. 0 / 3. 7. 0 libswscale 4. 8.100 / 4. 8.100 libswresample 2. 9.100 / 2. 9.100 libpostproc 54. 7.100 / 54. 7.100 ffprobe version 3.4.8-0ubuntu0.2 Copyright (c) 2007-2020 the FFmpeg developers built with gcc 7 (Ubuntu 7.5.0-3ubuntu1~18.04) configuration: --prefix=/usr --extra-version=0ubuntu0.2 --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --enable-gpl --disable-stripping --enable-avresample --enable-avisynth --enable-gnutls --enable-ladspa --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librubberband --enable-librsvg --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzmq --enable-libzvbi --enable-omx --enable-openal --enable-opengl --enable-sdl2 --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libopencv --enable-libx264 --enable-shared libavutil 55. 78.100 / 55. 78.100 libavcodec 57.107.100 / 57.107.100 libavformat 57. 83.100 / 57. 83.100 libavdevice 57. 10.100 / 57. 10.100 libavfilter 6.107.100 / 6.107.100 libavresample 3. 7. 0 / 3. 7. 0 libswscale 4. 8.100 / 4. 8.100 libswresample 2. 9.100 / 2. 9.100 libpostproc 54. 7.100 / 54. 7.100 [INFO]: 2021-12-30 12:40:57 - Download One Started... [INFO]: 2021-12-30 12:40:57 - Download Movie Sub Started... [INFO]: 2021-12-30 12:41:00 - Queue 0 DlSub Start /media/离线电影/Red Notice (2021) 红色通缉令 [tmdbid=512195] {tmdb-512195} [imdbid=tt7991608] {imdb-tt7991608}/Red Notice (2021) 红色通缉令.mp4 [INFO]: 2021-12-30 12:41:00 - Queue 0 shooter Start... [DEBUG]: 2021-12-30 12:41:00 - shooter /media/离线电影/Red Notice (2021) 红色通缉令 [tmdbid=512195] {tmdb-512195} [imdbid=tt7991608] {imdb-tt7991608}/Red Notice (2021) 红色通缉令.mp4 Start... [INFO]: 2021-12-30 12:41:00 - Queue 0 zimuku Start... [INFO]: 2021-12-30 12:41:00 - Queue 0 xunlei Start... [DEBUG]: 2021-12-30 12:41:00 - xunlei /media/离线电影/Red Notice (2021) 红色通缉令 [tmdbid=512195] {tmdb-512195} [imdbid=tt7991608] {imdb-tt7991608}/Red Notice (2021) 红色通缉令.mp4 Start... [DEBUG]: 2021-12-30 12:41:00 - zimuku /media/离线电影/Red Notice (2021) 红色通缉令 [tmdbid=512195] {tmdb-512195} [imdbid=tt7991608] {imdb-tt7991608}/Red Notice (2021) 红色通缉令.mp4 Start... [DEBUG]: 2021-12-30 12:41:01 - shooter /media/离线电影/Red Notice (2021) 红色通缉令 [tmdbid=512195] {tmdb-512195} [imdbid=tt7991608] {imdb-tt7991608}/Red Notice (2021) 红色通缉令.mp4 End... [INFO]: 2021-12-30 12:41:01 - Queue 0 shooter End... [DEBUG]: 2021-12-30 12:41:01 - xunlei /media/离线电影/Red Notice (2021) 红色通缉令 [tmdbid=512195] {tmdb-512195} [imdbid=tt7991608] {imdb-tt7991608}/Red Notice (2021) 红色通缉令.mp4 End... [INFO]: 2021-12-30 12:41:01 - Queue 0 xunlei End... [DEBUG]: 2021-12-30 12:41:01 - shooter /media/离线电影/Red Notice (2021) 红色通缉令 [tmdbid=512195] {tmdb-512195} [imdbid=tt7991608] {imdb-tt7991608}/Red Notice (2021) 红色通缉令.mp4 End... [INFO]: 2021-12-30 12:41:01 - Queue 0 shooter End... [DEBUG]: 2021-12-30 12:41:01 - xunlei /media/离线电影/Red Notice (2021) 红色通缉令 [tmdbid=512195] {tmdb-512195} [imdbid=tt7991608] {imdb-tt7991608}/Red Notice (2021) 红色通缉令.mp4 End... [INFO]: 2021-12-30 12:41:01 - Queue 0 xunlei End... [DEBUG]: 2021-12-30 12:41:20 - zimuku /media/离线电影/Red Notice (2021) 红色通缉令 [tmdbid=512195] {tmdb-512195} [imdbid=tt7991608] {imdb-tt7991608}/Red Notice (2021) 红色通缉令.mp4 End... [INFO]: 2021-12-30 12:41:20 - Queue 0 zimuku End... [INFO]: 2021-12-30 12:41:20 - Queue 0 DlSub End /media/离线电影/Red Notice (2021) 红色通缉令 [tmdbid=512195] {tmdb-512195} [imdbid=tt7991608] {imdb-tt7991608}/Red Notice (2021) 红色通缉令.mp4 [INFO]: 2021-12-30 12:41:20 - no sub found Red Notice (2021) 红色通缉令.mp4 [INFO]: 2021-12-30 12:41:20 - Download Movie Sub End... [INFO]: 2021-12-30 12:41:20 - Download Series Sub Started... [INFO]: 2021-12-30 12:41:20 - Download Series Sub End... [INFO]: 2021-12-30 12:41:20 - Download One End... [INFO]: 2021-12-30 12:41:20 - First Time Download End 尝试将目录名改短,结果相同。 Brought to you by linuxserver.io ------------------------------------- To support LSIO projects visit: https://www.linuxserver.io/donate/ ------------------------------------- GID/UID ------------------------------------- User uid: 1000 User gid: 100 ------------------------------------- [cont-init.d] 10-adduser: exited 0. [cont-init.d] 30-config: executing... [cont-init.d] 30-config: exited 0. [cont-init.d] 50-config: executing... [cont-init.d] 50-config: exited 0. [cont-init.d] 90-custom-folders: executing... [cont-init.d] 90-custom-folders: exited 0. [cont-init.d] 99-custom-scripts: executing... [cont-init.d] 99-custom-scripts: exited 0. [cont-init.d] done. [services.d] starting services [services.d] done. [INFO]: 2021-12-30 12:47:08 - ChineseSubFinder Version: v0.19.0 [INFO]: 2021-12-30 12:47:08 - UseProxy = false [INFO]: 2021-12-30 12:47:08 - MovieFolder: /media/离线电影 [INFO]: 2021-12-30 12:47:08 - SeriesFolder: /media/美剧英剧电视剧 [INFO]: 2021-12-30 12:47:08 - HotFix Start, wait ... [INFO]: 2021-12-30 12:47:08 - If you have a lot of videos, it may take a lot of time, just wait... [INFO]: 2021-12-30 12:47:08 - HotFix End [INFO]: 2021-12-30 12:47:08 - Change Sub Name Format Start... [INFO]: 2021-12-30 12:47:08 - If you have a lot of videos, it may take a lot of time, just wait... [INFO]: 2021-12-30 12:47:08 - DesSubFormatter == LateTimeSubFormatter then skip process [INFO]: 2021-12-30 12:47:08 - Change Sub Name Format End [INFO]: 2021-12-30 12:47:08 - First Time Download Start [INFO]: 2021-12-30 12:47:08 - ffmpeg version 3.4.8-0ubuntu0.2 Copyright (c) 2000-2020 the FFmpeg developers built with gcc 7 (Ubuntu 7.5.0-3ubuntu1~18.04) configuration: --prefix=/usr --extra-version=0ubuntu0.2 --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --enable-gpl --disable-stripping --enable-avresample --enable-avisynth --enable-gnutls --enable-ladspa --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librubberband --enable-librsvg --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzmq --enable-libzvbi --enable-omx --enable-openal --enable-opengl --enable-sdl2 --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libopencv --enable-libx264 --enable-shared libavutil 55. 78.100 / 55. 78.100 libavcodec 57.107.100 / 57.107.100 libavformat 57. 83.100 / 57. 83.100 libavdevice 57. 10.100 / 57. 10.100 libavfilter 6.107.100 / 6.107.100 libavresample 3. 7. 0 / 3. 7. 0 libswscale 4. 8.100 / 4. 8.100 libswresample 2. 9.100 / 2. 9.100 libpostproc 54. 7.100 / 54. 7.100 ffprobe version 3.4.8-0ubuntu0.2 Copyright (c) 2007-2020 the FFmpeg developers built with gcc 7 (Ubuntu 7.5.0-3ubuntu1~18.04) configuration: --prefix=/usr --extra-version=0ubuntu0.2 --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --enable-gpl --disable-stripping --enable-avresample --enable-avisynth --enable-gnutls --enable-ladspa --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librubberband --enable-librsvg --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzmq --enable-libzvbi --enable-omx --enable-openal --enable-opengl --enable-sdl2 --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libopencv --enable-libx264 --enable-shared libavutil 55. 78.100 / 55. 78.100 libavcodec 57.107.100 / 57.107.100 libavformat 57. 83.100 / 57. 83.100 libavdevice 57. 10.100 / 57. 10.100 libavfilter 6.107.100 / 6.107.100 libavresample 3. 7. 0 / 3. 7. 0 libswscale 4. 8.100 / 4. 8.100 libswresample 2. 9.100 / 2. 9.100 libpostproc 54. 7.100 / 54. 7.100 [INFO]: 2021-12-30 12:47:08 - Download One Started... [INFO]: 2021-12-30 12:47:08 - Download Movie Sub Started... [INFO]: 2021-12-30 12:47:11 - Queue 0 DlSub Start /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 [INFO]: 2021-12-30 12:47:11 - Queue 0 shooter Start... [DEBUG]: 2021-12-30 12:47:11 - shooter /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 Start... [INFO]: 2021-12-30 12:47:11 - Queue 0 xunlei Start... [INFO]: 2021-12-30 12:47:11 - Queue 0 zimuku Start... [DEBUG]: 2021-12-30 12:47:11 - xunlei /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 Start... [DEBUG]: 2021-12-30 12:47:11 - zimuku /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 Start... [DEBUG]: 2021-12-30 12:47:11 - shooter /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 End... [INFO]: 2021-12-30 12:47:11 - Queue 0 shooter End... [DEBUG]: 2021-12-30 12:47:25 - zimuku /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 End... [INFO]: 2021-12-30 12:47:25 - Queue 0 zimuku End... [DEBUG]: 2021-12-30 12:47:25 - zimuku /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 End... [INFO]: 2021-12-30 12:47:25 - Queue 0 zimuku End... [DEBUG]: 2021-12-30 12:47:52 - xunlei /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 End... [INFO]: 2021-12-30 12:47:52 - Queue 0 xunlei End... [INFO]: 2021-12-30 12:47:52 - Queue 0 DlSub End /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 [INFO]: 2021-12-30 12:47:52 - no sub found Red Notice (2021) 红色通缉令.mp4 [INFO]: 2021-12-30 12:47:52 - Download Movie Sub End... [INFO]: 2021-12-30 12:47:52 - Download Series Sub Started... [INFO]: 2021-12-30 12:47:52 - Download Series Sub End... [INFO]: 2021-12-30 12:47:52 - Download One End... [INFO]: 2021-12-30 12:47:52 - First Time Download End 刚推送了 v0.19.1 ,增加了更多的 zimuku 下载器的日志,以及开启 DebugMode 会强制线程数=1。 也继续开启Debug模式允许,提供下日志。 xunlei 和 shooter 的暂时不加更多日志先,接口比较简单,一般没有就是没有,不然就会提示网络错误。 v0.19.1 [s6-init] making user provided files available at /var/run/s6/etc...exited 0. [s6-init] ensuring user provided files have correct perms...exited 0. [fix-attrs.d] applying ownership & permissions fixes... [fix-attrs.d] done. [cont-init.d] executing container initialization scripts... [cont-init.d] 01-envfile: executing... [cont-init.d] 01-envfile: exited 0. [cont-init.d] 01-migrations: executing... [migrations] started [migrations] no migrations found [cont-init.d] 01-migrations: exited 0. [cont-init.d] 10-adduser: executing... ------------------------------------- _ () | | ___ _ __ | | / __| | | / \ | | \__ \ | | | () | |_| |___/ |_| \__/ Brought to you by linuxserver.io ------------------------------------- To support LSIO projects visit: https://www.linuxserver.io/donate/ ------------------------------------- GID/UID ------------------------------------- User uid: 1000 User gid: 100 ------------------------------------- [cont-init.d] 10-adduser: exited 0. [cont-init.d] 30-config: executing... [cont-init.d] 30-config: exited 0. [cont-init.d] 50-config: executing... [cont-init.d] 50-config: exited 0. [cont-init.d] 90-custom-folders: executing... [cont-init.d] 90-custom-folders: exited 0. [cont-init.d] 99-custom-scripts: executing... [cont-init.d] 99-custom-scripts: exited 0. [cont-init.d] done. [services.d] starting services [services.d] done. [INFO]: 2021-12-30 15:46:21 - ChineseSubFinder Version: v0.19.1 [INFO]: 2021-12-30 15:46:21 - UseProxy = false [INFO]: 2021-12-30 15:46:21 - MovieFolder: /media/离线电影 [INFO]: 2021-12-30 15:46:21 - SeriesFolder: /media/美剧英剧电视剧 [INFO]: 2021-12-30 15:46:21 - HotFix Start, wait ... [INFO]: 2021-12-30 15:46:21 - If you have a lot of videos, it may take a lot of time, just wait... [INFO]: 2021-12-30 15:46:21 - HotFix End [INFO]: 2021-12-30 15:46:21 - Change Sub Name Format Start... [INFO]: 2021-12-30 15:46:21 - If you have a lot of videos, it may take a lot of time, just wait... [INFO]: 2021-12-30 15:46:21 - DesSubFormatter == LateTimeSubFormatter then skip process [INFO]: 2021-12-30 15:46:21 - Change Sub Name Format End [INFO]: 2021-12-30 15:46:21 - First Time Download Start [INFO]: 2021-12-30 15:46:22 - ffmpeg version 3.4.8-0ubuntu0.2 Copyright (c) 2000-2020 the FFmpeg developers built with gcc 7 (Ubuntu 7.5.0-3ubuntu1~18.04) configuration: --prefix=/usr --extra-version=0ubuntu0.2 --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --enable-gpl --disable-stripping --enable-avresample --enable-avisynth --enable-gnutls --enable-ladspa --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librubberband --enable-librsvg --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzmq --enable-libzvbi --enable-omx --enable-openal --enable-opengl --enable-sdl2 --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libopencv --enable-libx264 --enable-shared libavutil 55. 78.100 / 55. 78.100 libavcodec 57.107.100 / 57.107.100 libavformat 57. 83.100 / 57. 83.100 libavdevice 57. 10.100 / 57. 10.100 libavfilter 6.107.100 / 6.107.100 libavresample 3. 7. 0 / 3. 7. 0 libswscale 4. 8.100 / 4. 8.100 libswresample 2. 9.100 / 2. 9.100 libpostproc 54. 7.100 / 54. 7.100 ffprobe version 3.4.8-0ubuntu0.2 Copyright (c) 2007-2020 the FFmpeg developers built with gcc 7 (Ubuntu 7.5.0-3ubuntu1~18.04) configuration: --prefix=/usr --extra-version=0ubuntu0.2 --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --enable-gpl --disable-stripping --enable-avresample --enable-avisynth --enable-gnutls --enable-ladspa --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librubberband --enable-librsvg --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzmq --enable-libzvbi --enable-omx --enable-openal --enable-opengl --enable-sdl2 --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libopencv --enable-libx264 --enable-shared libavutil 55. 78.100 / 55. 78.100 libavcodec 57.107.100 / 57.107.100 libavformat 57. 83.100 / 57. 83.100 libavdevice 57. 10.100 / 57. 10.100 libavfilter 6.107.100 / 6.107.100 libavresample 3. 7. 0 / 3. 7. 0 libswscale 4. 8.100 / 4. 8.100 libswresample 2. 9.100 / 2. 9.100 libpostproc 54. 7.100 / 54. 7.100 [INFO]: 2021-12-30 15:46:22 - Download One Started... [INFO]: 2021-12-30 15:46:22 - Download Movie Sub Started... [INFO]: 2021-12-30 15:46:25 - Queue 0 DlSub Start /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 [INFO]: 2021-12-30 15:46:25 - Queue 0 shooter Start... [DEBUG]: 2021-12-30 15:46:25 - shooter /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 Start... [INFO]: 2021-12-30 15:46:25 - Queue 0 xunlei Start... [DEBUG]: 2021-12-30 15:46:25 - xunlei /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 Start... [INFO]: 2021-12-30 15:46:25 - Queue 0 zimuku Start... [DEBUG]: 2021-12-30 15:46:25 - zimuku /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 Start... [DEBUG]: 2021-12-30 15:46:25 - zimuku /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 GetVideoInfoFromFileFullPath -> Title: Red Notice [DEBUG]: 2021-12-30 15:46:25 - zimuku /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 GetImdbInfo4Movie -> Title: 红色通缉令 [DEBUG]: 2021-12-30 15:46:25 - zimuku /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 GetImdbInfo4Movie -> OriginalTitle: [DEBUG]: 2021-12-30 15:46:25 - zimuku /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 GetImdbInfo4Movie -> Year: 2021 [DEBUG]: 2021-12-30 15:46:25 - zimuku /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 GetImdbInfo4Movie -> ImdbId: tt7991608 [DEBUG]: 2021-12-30 15:46:25 - zimuku /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 getSubListFromKeyword -> Search By IMDB ID: tt7991608 2021/12/30 15:46:25.972883 ERROR RESTY Get "http://sub.xmp.sandai.net:8000/subxl/352B9B3D35A75E6D0BD04D83A382285972B6CB61.json": read tcp 192.168.195.122:48880->106.14.221.44:8000: read: connection reset by peer, Attempt 1 2021/12/30 15:46:26.175571 ERROR RESTY Get "http://sub.xmp.sandai.net:8000/subxl/352B9B3D35A75E6D0BD04D83A382285972B6CB61.json": read tcp 192.168.195.122:48884->106.14.221.44:8000: read: connection reset by peer, Attempt 2 [DEBUG]: 2021-12-30 15:46:26 - shooter /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 End... [INFO]: 2021-12-30 15:46:26 - Queue 0 shooter End... 2021/12/30 15:46:26.660103 ERROR RESTY Get "http://sub.xmp.sandai.net:8000/subxl/352B9B3D35A75E6D0BD04D83A382285972B6CB61.json": read tcp 192.168.195.122:48888->106.14.221.44:8000: read: connection reset by peer, Attempt 3 [DEBUG]: 2021-12-30 15:46:26 - zimuku getSubListFromKeyword -> step0 -> filmDetailPageUrl: /subs/59565.html [ERROR]: 2021-12-30 15:46:26 - xunlei NewHttpClient: /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 Get "http://sub.xmp.sandai.net:8000/subxl/352B9B3D35A75E6D0BD04D83A382285972B6CB61.json": read tcp 192.168.195.122:48888->106.14.221.44:8000: read: connection reset by peer [DEBUG]: 2021-12-30 15:46:26 - xunlei /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 End... [INFO]: 2021-12-30 15:46:26 - Queue 0 xunlei End... [ERROR]: 2021-12-30 15:46:26 - Queue 0 xunlei oneMovieDlSubInOneSite Get "http://sub.xmp.sandai.net:8000/subxl/352B9B3D35A75E6D0BD04D83A382285972B6CB61.json": read tcp 192.168.195.122:48888->106.14.221.44:8000: read: connection reset by peer [DEBUG]: 2021-12-30 15:46:27 - zimuku getSubListFromKeyword -> step1 -> subResult.Title: 红色通缉令.Red.Notice.2021.1080p.WEB.H264-PECULATE.zip [DEBUG]: 2021-12-30 15:46:27 - zimuku getSubListFromKeyword -> step1 -> subResult.OtherName: [DEBUG]: 2021-12-30 15:46:27 - zimuku getSubListFromKeyword -> step1 -> info.Name 0 红色通缉令.Red.Notice【V2】.[WEB.1080P]中英文字幕【官方译本】Red.Notice.2021.1080p.WEB.H264-PECULATE [DEBUG]: 2021-12-30 15:46:27 - zimuku getSubListFromKeyword -> step1 -> info.DownloadUrl: 0 [DEBUG]: 2021-12-30 15:46:27 - zimuku getSubListFromKeyword -> step1 -> info.DetailUrl: 0 /detail/162150.html [DEBUG]: 2021-12-30 15:46:27 - zimuku getSubListFromKeyword -> step1 -> info.DownloadTimes: 0 100000 [DEBUG]: 2021-12-30 15:46:27 - zimuku getSubListFromKeyword -> step1 -> info.Name 1 红色通缉令.Red.Notice.2021.2160p.NF.WEB-DL.HDR.DDP5.1.Atmos.H.265-ABBiE.碟机外挂简体中字 [DEBUG]: 2021-12-30 15:46:27 - zimuku getSubListFromKeyword -> step1 -> info.DownloadUrl: 1 [DEBUG]: 2021-12-30 15:46:27 - zimuku getSubListFromKeyword -> step1 -> info.DetailUrl: 1 /detail/162204.html [DEBUG]: 2021-12-30 15:46:27 - zimuku getSubListFromKeyword -> step1 -> info.DownloadTimes: 1 73000 [DEBUG]: 2021-12-30 15:46:27 - zimuku getSubListFromKeyword -> step1 -> info.Name 2 【官方字幕】红色通缉令.Red.Notice.2021.1080p.NF.WEBRip.x265.10bit.SDR.DDP5.1.Atmos-AGLET.rar [DEBUG]: 2021-12-30 15:46:27 - zimuku getSubListFromKeyword -> step1 -> info.DownloadUrl: 2 [DEBUG]: 2021-12-30 15:46:27 - zimuku getSubListFromKeyword -> step1 -> info.DetailUrl: 2 /detail/162149.html [DEBUG]: 2021-12-30 15:46:27 - zimuku getSubListFromKeyword -> step1 -> info.DownloadTimes: 2 69000 [DEBUG]: 2021-12-30 15:46:27 - zimuku getSubListFromKeyword -> step1 -> info.Name 3 Red.Notice.2021.Netflix.WEB-DL.1080p.HEVC.DV.DDP-Enichi.chteng.ass [DEBUG]: 2021-12-30 15:46:27 - zimuku getSubListFromKeyword -> step1 -> info.DownloadUrl: 3 [DEBUG]: 2021-12-30 15:46:27 - zimuku getSubListFromKeyword -> step1 -> info.DetailUrl: 3 /detail/162197.html [DEBUG]: 2021-12-30 15:46:27 - zimuku getSubListFromKeyword -> step1 -> info.DownloadTimes: 3 61000 [DEBUG]: 2021-12-30 15:46:27 - zimuku getSubListFromKeyword -> step1 -> info.Name 4 Red.Notice.2021.1080p.WEBRip.x265-RARBG.ass [DEBUG]: 2021-12-30 15:46:27 - zimuku getSubListFromKeyword -> step1 -> info.DownloadUrl: 4 [DEBUG]: 2021-12-30 15:46:27 - zimuku getSubListFromKeyword -> step1 -> info.DetailUrl: 4 /detail/162493.html [DEBUG]: 2021-12-30 15:46:27 - zimuku getSubListFromKeyword -> step1 -> info.DownloadTimes: 4 56000 [DEBUG]: 2021-12-30 15:46:27 - zimuku getSubListFromKeyword -> step1 -> info.Name 5 红色通缉令.Red.Notice.2021.1080p.WEBRip.x264-RARBG.简体&英文.ass [DEBUG]: 2021-12-30 15:46:27 - zimuku getSubListFromKeyword -> step1 -> info.DownloadUrl: 5 [DEBUG]: 2021-12-30 15:46:27 - zimuku getSubListFromKeyword -> step1 -> info.DetailUrl: 5 /detail/162408.html [DEBUG]: 2021-12-30 15:46:27 - zimuku getSubListFromKeyword -> step1 -> info.DownloadTimes: 5 59000 [DEBUG]: 2021-12-30 15:46:27 - zimuku getSubListFromKeyword -> step1 -> info.Name 6 红色通缉令.Red.Notice.2021.1080p.WEB.H264-PECULATE.zip [DEBUG]: 2021-12-30 15:46:27 - zimuku getSubListFromKeyword -> step1 -> info.DownloadUrl: 6 [DEBUG]: 2021-12-30 15:46:27 - zimuku getSubListFromKeyword -> step1 -> info.DetailUrl: 6 /detail/162148.html [DEBUG]: 2021-12-30 15:46:27 - zimuku getSubListFromKeyword -> step1 -> info.DownloadTimes: 6 515 [DEBUG]: 2021-12-30 15:46:28 - zimuku whichSubInfoNeedDownload -> step2 -> info.SubDownloadPageUrl: 0 https://zmk.pw/dld/162150.html [DEBUG]: 2021-12-30 15:46:28 - zimuku whichSubInfoNeedDownload -> step2 -> info.SubDownloadPageUrl: 1 https://zmk.pw/dld/162204.html [DEBUG]: 2021-12-30 15:46:29 - zimuku whichSubInfoNeedDownload -> step2 -> info.SubDownloadPageUrl: 2 https://zmk.pw/dld/162149.html [DEBUG]: 2021-12-30 15:46:30 - zimuku whichSubInfoNeedDownload -> step2 -> info.SubDownloadPageUrl: 3 https://zmk.pw/dld/162197.html [DEBUG]: 2021-12-30 15:46:30 - zimuku whichSubInfoNeedDownload -> step2 -> info.SubDownloadPageUrl: 4 https://zmk.pw/dld/162493.html [DEBUG]: 2021-12-30 15:46:31 - zimuku whichSubInfoNeedDownload -> step2 -> info.SubDownloadPageUrl: 5 https://zmk.pw/dld/162408.html [DEBUG]: 2021-12-30 15:46:32 - zimuku whichSubInfoNeedDownload -> step2 -> info.SubDownloadPageUrl: 6 https://zmk.pw/dld/162148.html [DEBUG]: 2021-12-30 15:46:32 - zimuku step2 -> tmpSubInfo.Count 6 [DEBUG]: 2021-12-30 15:46:32 - zimuku ChineseSubs -> tmpSubInfo.Name: 0 红色通缉令.Red.Notice【V2】.[WEB.1080P]中英文字幕【官方译本】Red.Notice.2021.1080p.WEB.H264-PECULATE [DEBUG]: 2021-12-30 15:46:32 - zimuku ChineseSubs -> tmpSubInfo.DownloadUrl: 0 [DEBUG]: 2021-12-30 15:46:32 - zimuku ChineseSubs -> tmpSubInfo.DetailUrl: 0 /detail/162150.html [DEBUG]: 2021-12-30 15:46:32 - zimuku ChineseSubs -> tmpSubInfo.DownloadTimes: 0 100000 [DEBUG]: 2021-12-30 15:46:32 - zimuku ChineseSubs -> tmpSubInfo.SubDownloadPageUrl: 0 https://zmk.pw/dld/162150.html [DEBUG]: 2021-12-30 15:46:32 - zimuku ChineseSubs -> tmpSubInfo.Name: 1 红色通缉令.Red.Notice.2021.2160p.NF.WEB-DL.HDR.DDP5.1.Atmos.H.265-ABBiE.碟机外挂简体中字 [DEBUG]: 2021-12-30 15:46:32 - zimuku ChineseSubs -> tmpSubInfo.DownloadUrl: 1 [DEBUG]: 2021-12-30 15:46:32 - zimuku ChineseSubs -> tmpSubInfo.DetailUrl: 1 /detail/162204.html [DEBUG]: 2021-12-30 15:46:32 - zimuku ChineseSubs -> tmpSubInfo.DownloadTimes: 1 73000 [DEBUG]: 2021-12-30 15:46:32 - zimuku ChineseSubs -> tmpSubInfo.SubDownloadPageUrl: 1 https://zmk.pw/dld/162204.html [DEBUG]: 2021-12-30 15:46:32 - zimuku ChineseSubs -> tmpSubInfo.Name: 2 【官方字幕】红色通缉令.Red.Notice.2021.1080p.NF.WEBRip.x265.10bit.SDR.DDP5.1.Atmos-AGLET.rar [DEBUG]: 2021-12-30 15:46:32 - zimuku ChineseSubs -> tmpSubInfo.DownloadUrl: 2 [DEBUG]: 2021-12-30 15:46:32 - zimuku ChineseSubs -> tmpSubInfo.DetailUrl: 2 /detail/162149.html [DEBUG]: 2021-12-30 15:46:32 - zimuku ChineseSubs -> tmpSubInfo.DownloadTimes: 2 69000 [DEBUG]: 2021-12-30 15:46:32 - zimuku ChineseSubs -> tmpSubInfo.SubDownloadPageUrl: 2 https://zmk.pw/dld/162149.html [DEBUG]: 2021-12-30 15:46:32 - zimuku ChineseSubs -> tmpSubInfo.Name: 3 Red.Notice.2021.Netflix.WEB-DL.1080p.HEVC.DV.DDP-Enichi.chteng.ass [DEBUG]: 2021-12-30 15:46:32 - zimuku ChineseSubs -> tmpSubInfo.DownloadUrl: 3 [DEBUG]: 2021-12-30 15:46:32 - zimuku ChineseSubs -> tmpSubInfo.DetailUrl: 3 /detail/162197.html [DEBUG]: 2021-12-30 15:46:32 - zimuku ChineseSubs -> tmpSubInfo.DownloadTimes: 3 61000 [DEBUG]: 2021-12-30 15:46:32 - zimuku ChineseSubs -> tmpSubInfo.SubDownloadPageUrl: 3 https://zmk.pw/dld/162197.html [DEBUG]: 2021-12-30 15:46:32 - zimuku ChineseSubs -> tmpSubInfo.Name: 4 Red.Notice.2021.1080p.WEBRip.x265-RARBG.ass [DEBUG]: 2021-12-30 15:46:32 - zimuku ChineseSubs -> tmpSubInfo.DownloadUrl: 4 [DEBUG]: 2021-12-30 15:46:32 - zimuku ChineseSubs -> tmpSubInfo.DetailUrl: 4 /detail/162493.html [DEBUG]: 2021-12-30 15:46:32 - zimuku ChineseSubs -> tmpSubInfo.DownloadTimes: 4 56000 [DEBUG]: 2021-12-30 15:46:32 - zimuku ChineseSubs -> tmpSubInfo.SubDownloadPageUrl: 4 https://zmk.pw/dld/162493.html [DEBUG]: 2021-12-30 15:46:32 - zimuku ChineseSubs -> tmpSubInfo.Name: 5 红色通缉令.Red.Notice.2021.1080p.WEBRip.x264-RARBG.简体&英文.ass [DEBUG]: 2021-12-30 15:46:32 - zimuku ChineseSubs -> tmpSubInfo.DownloadUrl: 5 [DEBUG]: 2021-12-30 15:46:32 - zimuku ChineseSubs -> tmpSubInfo.DetailUrl: 5 /detail/162408.html [DEBUG]: 2021-12-30 15:46:32 - zimuku ChineseSubs -> tmpSubInfo.DownloadTimes: 5 59000 [DEBUG]: 2021-12-30 15:46:32 - zimuku ChineseSubs -> tmpSubInfo.SubDownloadPageUrl: 5 https://zmk.pw/dld/162408.html [DEBUG]: 2021-12-30 15:46:32 - zimuku step3 -> subInfo.SubDownloadPageUrl: 0 https://zmk.pw/dld/162150.html [DEBUG]: 2021-12-30 15:46:33 - zimuku step3 -> subInfo.SubDownloadPageUrl: 1 https://zmk.pw/dld/162204.html [DEBUG]: 2021-12-30 15:46:34 - zimuku step3 -> subInfo.SubDownloadPageUrl: 2 https://zmk.pw/dld/162149.html [DEBUG]: 2021-12-30 15:46:36 - zimuku step3 -> subInfo.SubDownloadPageUrl: 3 https://zmk.pw/dld/162197.html [DEBUG]: 2021-12-30 15:46:37 - zimuku step3 -> subInfo.SubDownloadPageUrl: 4 https://zmk.pw/dld/162493.html [DEBUG]: 2021-12-30 15:46:38 - zimuku step3 -> subInfo.SubDownloadPageUrl: 5 https://zmk.pw/dld/162408.html [DEBUG]: 2021-12-30 15:46:40 - zimuku /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 getSubListFromKeyword -> Search By IMDB ID, subInfoList Count: 6 [DEBUG]: 2021-12-30 15:46:40 - zimuku /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 End... [INFO]: 2021-12-30 15:46:40 - Queue 0 zimuku End... [INFO]: 2021-12-30 15:46:40 - Queue 0 DlSub End /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 [INFO]: 2021-12-30 15:46:40 - no sub found Red Notice (2021) 红色通缉令.mp4 [INFO]: 2021-12-30 15:46:40 - Download Movie Sub End... [INFO]: 2021-12-30 15:46:40 - Download Series Sub Started... [INFO]: 2021-12-30 15:46:40 - Download Series Sub End... [INFO]: 2021-12-30 15:46:40 - Download One End... [INFO]: 2021-12-30 15:46:40 - First Time Download End 你使用 xunlei 和 shooter 的接口是故障的,你需要排查下网络问题,上面有具体的请求地址,一般是不会频繁出故障的。 zimuku 如果走到这里,很可能你的 IP 下载的次数受限了,一般来说隔天会重置。 还有一部分日志偷懒没有加,但是根据最近遇到的情况可能是 2。保险起见,我又加了更多日志,推送了 v0.19.2(之前提过,debug日志加多了,代码看起来比较难受,还没想好怎么加会所谓是“优雅”一点 😂 ),所以麻烦你再试试··· 下面的日志就是具体下载字幕的页面了,如果没有下载保存,就是 2 提及的问题。 [DEBUG]: 2021-12-30 15:46:32 - zimuku step3 -> subInfo.SubDownloadPageUrl: 0 https://zmk.pw/dld/162150.html [DEBUG]: 2021-12-30 15:46:33 - zimuku step3 -> subInfo.SubDownloadPageUrl: 1 https://zmk.pw/dld/162204.html [DEBUG]: 2021-12-30 15:46:34 - zimuku step3 -> subInfo.SubDownloadPageUrl: 2 https://zmk.pw/dld/162149.html [DEBUG]: 2021-12-30 15:46:36 - zimuku step3 -> subInfo.SubDownloadPageUrl: 3 https://zmk.pw/dld/162197.html [DEBUG]: 2021-12-30 15:46:37 - zimuku step3 -> subInfo.SubDownloadPageUrl: 4 https://zmk.pw/dld/162493.html [DEBUG]: 2021-12-30 15:46:38 - zimuku step3 -> subInfo.SubDownloadPageUrl: 5 https://zmk.pw/dld/162408.html v0.19.2 [s6-init] making user provided files available at /var/run/s6/etc...exited 0. [s6-init] ensuring user provided files have correct perms...exited 0. [fix-attrs.d] applying ownership & permissions fixes... [fix-attrs.d] done. [cont-init.d] executing container initialization scripts... [cont-init.d] 01-envfile: executing... [cont-init.d] 01-envfile: exited 0. [cont-init.d] 01-migrations: executing... [migrations] started [migrations] no migrations found [cont-init.d] 01-migrations: exited 0. [cont-init.d] 10-adduser: executing... ------------------------------------- _ () | | ___ _ __ | | / __| | | / \ | | \__ \ | | | () | |_| |___/ |_| \__/ Brought to you by linuxserver.io ------------------------------------- To support LSIO projects visit: https://www.linuxserver.io/donate/ ------------------------------------- GID/UID ------------------------------------- User uid: 1000 User gid: 100 ------------------------------------- [cont-init.d] 10-adduser: exited 0. [cont-init.d] 30-config: executing... [cont-init.d] 30-config: exited 0. [cont-init.d] 50-config: executing... [cont-init.d] 50-config: exited 0. [cont-init.d] 90-custom-folders: executing... [cont-init.d] 90-custom-folders: exited 0. [cont-init.d] 99-custom-scripts: executing... [cont-init.d] 99-custom-scripts: exited 0. [cont-init.d] done. [services.d] starting services [services.d] done. [INFO]: 2021-12-30 18:41:34 - ChineseSubFinder Version: v0.19.2 [INFO]: 2021-12-30 18:41:34 - UseProxy = false [INFO]: 2021-12-30 18:41:34 - MovieFolder: /media/离线电影 [INFO]: 2021-12-30 18:41:34 - SeriesFolder: /media/美剧英剧电视剧 [INFO]: 2021-12-30 18:41:34 - HotFix Start, wait ... [INFO]: 2021-12-30 18:41:34 - If you have a lot of videos, it may take a lot of time, just wait... [INFO]: 2021-12-30 18:41:34 - HotFix End [INFO]: 2021-12-30 18:41:34 - Change Sub Name Format Start... [INFO]: 2021-12-30 18:41:34 - If you have a lot of videos, it may take a lot of time, just wait... [INFO]: 2021-12-30 18:41:34 - DesSubFormatter == LateTimeSubFormatter then skip process [INFO]: 2021-12-30 18:41:34 - Change Sub Name Format End [INFO]: 2021-12-30 18:41:34 - First Time Download Start [INFO]: 2021-12-30 18:41:35 - ffmpeg version 3.4.8-0ubuntu0.2 Copyright (c) 2000-2020 the FFmpeg developers built with gcc 7 (Ubuntu 7.5.0-3ubuntu1~18.04) configuration: --prefix=/usr --extra-version=0ubuntu0.2 --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --enable-gpl --disable-stripping --enable-avresample --enable-avisynth --enable-gnutls --enable-ladspa --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librubberband --enable-librsvg --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzmq --enable-libzvbi --enable-omx --enable-openal --enable-opengl --enable-sdl2 --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libopencv --enable-libx264 --enable-shared libavutil 55. 78.100 / 55. 78.100 libavcodec 57.107.100 / 57.107.100 libavformat 57. 83.100 / 57. 83.100 libavdevice 57. 10.100 / 57. 10.100 libavfilter 6.107.100 / 6.107.100 libavresample 3. 7. 0 / 3. 7. 0 libswscale 4. 8.100 / 4. 8.100 libswresample 2. 9.100 / 2. 9.100 libpostproc 54. 7.100 / 54. 7.100 ffprobe version 3.4.8-0ubuntu0.2 Copyright (c) 2007-2020 the FFmpeg developers built with gcc 7 (Ubuntu 7.5.0-3ubuntu1~18.04) configuration: --prefix=/usr --extra-version=0ubuntu0.2 --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --enable-gpl --disable-stripping --enable-avresample --enable-avisynth --enable-gnutls --enable-ladspa --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librubberband --enable-librsvg --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzmq --enable-libzvbi --enable-omx --enable-openal --enable-opengl --enable-sdl2 --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libopencv --enable-libx264 --enable-shared libavutil 55. 78.100 / 55. 78.100 libavcodec 57.107.100 / 57.107.100 libavformat 57. 83.100 / 57. 83.100 libavdevice 57. 10.100 / 57. 10.100 libavfilter 6.107.100 / 6.107.100 libavresample 3. 7. 0 / 3. 7. 0 libswscale 4. 8.100 / 4. 8.100 libswresample 2. 9.100 / 2. 9.100 libpostproc 54. 7.100 / 54. 7.100 [INFO]: 2021-12-30 18:41:35 - Download One Started... [INFO]: 2021-12-30 18:41:35 - Download Movie Sub Started... [INFO]: 2021-12-30 18:41:39 - Queue 0 DlSub Start /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 [INFO]: 2021-12-30 18:41:39 - Queue 0 zimuku Start... [DEBUG]: 2021-12-30 18:41:39 - zimuku /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 Start... [INFO]: 2021-12-30 18:41:39 - Queue 0 xunlei Start... [INFO]: 2021-12-30 18:41:39 - Queue 0 shooter Start... [DEBUG]: 2021-12-30 18:41:39 - shooter /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 Start... [DEBUG]: 2021-12-30 18:41:39 - zimuku /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 GetVideoInfoFromFileFullPath -> Title: Red Notice [DEBUG]: 2021-12-30 18:41:39 - xunlei /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 Start... [DEBUG]: 2021-12-30 18:41:39 - zimuku /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 GetImdbInfo4Movie -> Title: 红色通缉令 [DEBUG]: 2021-12-30 18:41:39 - zimuku /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 GetImdbInfo4Movie -> OriginalTitle: [DEBUG]: 2021-12-30 18:41:39 - zimuku /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 GetImdbInfo4Movie -> Year: 2021 [DEBUG]: 2021-12-30 18:41:39 - zimuku /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 GetImdbInfo4Movie -> ImdbId: tt7991608 [DEBUG]: 2021-12-30 18:41:39 - zimuku /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 getSubListFromKeyword -> Search By IMDB ID: tt7991608 [DEBUG]: 2021-12-30 18:41:39 - xunlei /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 End... [INFO]: 2021-12-30 18:41:39 - Queue 0 xunlei End... [DEBUG]: 2021-12-30 18:41:39 - shooter /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 End... [INFO]: 2021-12-30 18:41:39 - Queue 0 shooter End... [DEBUG]: 2021-12-30 18:41:40 - zimuku getSubListFromKeyword -> step0 -> filmDetailPageUrl: /subs/59565.html [DEBUG]: 2021-12-30 18:41:40 - zimuku getSubListFromKeyword -> step1 -> subResult.Title: 红色通缉令.Red.Notice.2021.1080p.WEB.H264-PECULATE.zip [DEBUG]: 2021-12-30 18:41:40 - zimuku getSubListFromKeyword -> step1 -> subResult.OtherName: [DEBUG]: 2021-12-30 18:41:40 - zimuku getSubListFromKeyword -> step1 -> info.Name 0 红色通缉令.Red.Notice【V2】.[WEB.1080P]中英文字幕【官方译本】Red.Notice.2021.1080p.WEB.H264-PECULATE [DEBUG]: 2021-12-30 18:41:40 - zimuku getSubListFromKeyword -> step1 -> info.DownloadUrl: 0 [DEBUG]: 2021-12-30 18:41:40 - zimuku getSubListFromKeyword -> step1 -> info.DetailUrl: 0 /detail/162150.html [DEBUG]: 2021-12-30 18:41:40 - zimuku getSubListFromKeyword -> step1 -> info.DownloadTimes: 0 100000 [DEBUG]: 2021-12-30 18:41:40 - zimuku getSubListFromKeyword -> step1 -> info.Name 1 红色通缉令.Red.Notice.2021.2160p.NF.WEB-DL.HDR.DDP5.1.Atmos.H.265-ABBiE.碟机外挂简体中字 [DEBUG]: 2021-12-30 18:41:40 - zimuku getSubListFromKeyword -> step1 -> info.DownloadUrl: 1 [DEBUG]: 2021-12-30 18:41:40 - zimuku getSubListFromKeyword -> step1 -> info.DetailUrl: 1 /detail/162204.html [DEBUG]: 2021-12-30 18:41:40 - zimuku getSubListFromKeyword -> step1 -> info.DownloadTimes: 1 73000 [DEBUG]: 2021-12-30 18:41:40 - zimuku getSubListFromKeyword -> step1 -> info.Name 2 【官方字幕】红色通缉令.Red.Notice.2021.1080p.NF.WEBRip.x265.10bit.SDR.DDP5.1.Atmos-AGLET.rar [DEBUG]: 2021-12-30 18:41:40 - zimuku getSubListFromKeyword -> step1 -> info.DownloadUrl: 2 [DEBUG]: 2021-12-30 18:41:40 - zimuku getSubListFromKeyword -> step1 -> info.DetailUrl: 2 /detail/162149.html [DEBUG]: 2021-12-30 18:41:40 - zimuku getSubListFromKeyword -> step1 -> info.DownloadTimes: 2 69000 [DEBUG]: 2021-12-30 18:41:40 - zimuku getSubListFromKeyword -> step1 -> info.Name 3 Red.Notice.2021.Netflix.WEB-DL.1080p.HEVC.DV.DDP-Enichi.chteng.ass [DEBUG]: 2021-12-30 18:41:40 - zimuku getSubListFromKeyword -> step1 -> info.DownloadUrl: 3 [DEBUG]: 2021-12-30 18:41:40 - zimuku getSubListFromKeyword -> step1 -> info.DetailUrl: 3 /detail/162197.html [DEBUG]: 2021-12-30 18:41:40 - zimuku getSubListFromKeyword -> step1 -> info.DownloadTimes: 3 61000 [DEBUG]: 2021-12-30 18:41:40 - zimuku getSubListFromKeyword -> step1 -> info.Name 4 Red.Notice.2021.1080p.WEBRip.x265-RARBG.ass [DEBUG]: 2021-12-30 18:41:40 - zimuku getSubListFromKeyword -> step1 -> info.DownloadUrl: 4 [DEBUG]: 2021-12-30 18:41:40 - zimuku getSubListFromKeyword -> step1 -> info.DetailUrl: 4 /detail/162493.html [DEBUG]: 2021-12-30 18:41:40 - zimuku getSubListFromKeyword -> step1 -> info.DownloadTimes: 4 56000 [DEBUG]: 2021-12-30 18:41:40 - zimuku getSubListFromKeyword -> step1 -> info.Name 5 红色通缉令.Red.Notice.2021.1080p.WEBRip.x264-RARBG.简体&英文.ass [DEBUG]: 2021-12-30 18:41:40 - zimuku getSubListFromKeyword -> step1 -> info.DownloadUrl: 5 [DEBUG]: 2021-12-30 18:41:40 - zimuku getSubListFromKeyword -> step1 -> info.DetailUrl: 5 /detail/162408.html [DEBUG]: 2021-12-30 18:41:40 - zimuku getSubListFromKeyword -> step1 -> info.DownloadTimes: 5 59000 [DEBUG]: 2021-12-30 18:41:40 - zimuku getSubListFromKeyword -> step1 -> info.Name 6 红色通缉令.Red.Notice.2021.1080p.WEB.H264-PECULATE.zip [DEBUG]: 2021-12-30 18:41:40 - zimuku getSubListFromKeyword -> step1 -> info.DownloadUrl: 6 [DEBUG]: 2021-12-30 18:41:40 - zimuku getSubListFromKeyword -> step1 -> info.DetailUrl: 6 /detail/162148.html [DEBUG]: 2021-12-30 18:41:40 - zimuku getSubListFromKeyword -> step1 -> info.DownloadTimes: 6 515 [DEBUG]: 2021-12-30 18:41:41 - zimuku whichSubInfoNeedDownload -> step2 -> info.SubDownloadPageUrl: 0 https://zmk.pw/dld/162150.html [DEBUG]: 2021-12-30 18:41:42 - zimuku whichSubInfoNeedDownload -> step2 -> info.SubDownloadPageUrl: 1 https://zmk.pw/dld/162204.html [DEBUG]: 2021-12-30 18:41:42 - zimuku whichSubInfoNeedDownload -> step2 -> info.SubDownloadPageUrl: 1 https://zmk.pw/dld/162204.html [DEBUG]: 2021-12-30 18:41:42 - zimuku whichSubInfoNeedDownload -> step2 -> info.SubDownloadPageUrl: 2 https://zmk.pw/dld/162149.html [DEBUG]: 2021-12-30 18:41:43 - zimuku whichSubInfoNeedDownload -> step2 -> info.SubDownloadPageUrl: 3 https://zmk.pw/dld/162197.html [DEBUG]: 2021-12-30 18:41:44 - zimuku whichSubInfoNeedDownload -> step2 -> info.SubDownloadPageUrl: 4 https://zmk.pw/dld/162493.html [DEBUG]: 2021-12-30 18:41:44 - zimuku whichSubInfoNeedDownload -> step2 -> info.SubDownloadPageUrl: 5 https://zmk.pw/dld/162408.html [DEBUG]: 2021-12-30 18:41:45 - zimuku whichSubInfoNeedDownload -> step2 -> info.SubDownloadPageUrl: 6 https://zmk.pw/dld/162148.html [DEBUG]: 2021-12-30 18:41:45 - zimuku step2 -> tmpSubInfo.Count 6 [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.Name: 0 红色通缉令.Red.Notice【V2】.[WEB.1080P]中英文字幕【官方译本】Red.Notice.2021.1080p.WEB.H264-PECULATE [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.DownloadUrl: 0 [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.DetailUrl: 0 /detail/162150.html [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.DownloadTimes: 0 100000 [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.SubDownloadPageUrl: 0 https://zmk.pw/dld/162150.html [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.Name: 1 红色通缉令.Red.Notice.2021.2160p.NF.WEB-DL.HDR.DDP5.1.Atmos.H.265-ABBiE.碟机外挂简体中字 [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.DownloadUrl: 1 [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.DetailUrl: 1 /detail/162204.html [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.DownloadTimes: 1 73000 [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.SubDownloadPageUrl: 1 https://zmk.pw/dld/162204.html [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.Name: 2 【官方字幕】红色通缉令.Red.Notice.2021.1080p.NF.WEBRip.x265.10bit.SDR.DDP5.1.Atmos-AGLET.rar [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.DownloadUrl: 2 [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.DetailUrl: 2 /detail/162149.html [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.DownloadTimes: 2 69000 [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.SubDownloadPageUrl: 2 https://zmk.pw/dld/162149.html [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.Name: 3 Red.Notice.2021.Netflix.WEB-DL.1080p.HEVC.DV.DDP-Enichi.chteng.ass [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.DownloadUrl: 3 [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.DetailUrl: 3 /detail/162197.html [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.DownloadTimes: 3 61000 [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.SubDownloadPageUrl: 3 https://zmk.pw/dld/162197.html [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.Name: 4 Red.Notice.2021.1080p.WEBRip.x265-RARBG.ass [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.DownloadUrl: 4 [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.DetailUrl: 4 /detail/162493.html [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.DownloadTimes: 4 56000 [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.SubDownloadPageUrl: 4 https://zmk.pw/dld/162493.html [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.Name: 5 红色通缉令.Red.Notice.2021.1080p.WEBRip.x264-RARBG.简体&英文.ass [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.DownloadUrl: 5 [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.DetailUrl: 5 /detail/162408.html [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.DownloadTimes: 5 59000 [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.SubDownloadPageUrl: 5 https://zmk.pw/dld/162408.html [DEBUG]: 2021-12-30 18:41:45 - zimuku step3 -> subInfo.SubDownloadPageUrl: 0 https://zmk.pw/dld/162150.html [DEBUG]: 2021-12-30 18:41:45 - zimuku whichSubInfoNeedDownload -> step2 -> info.SubDownloadPageUrl: 6 https://zmk.pw/dld/162148.html [DEBUG]: 2021-12-30 18:41:45 - zimuku step2 -> tmpSubInfo.Count 6 [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.Name: 0 红色通缉令.Red.Notice【V2】.[WEB.1080P]中英文字幕【官方译本】Red.Notice.2021.1080p.WEB.H264-PECULATE [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.DownloadUrl: 0 [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.DetailUrl: 0 /detail/162150.html [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.DownloadTimes: 0 100000 [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.SubDownloadPageUrl: 0 https://zmk.pw/dld/162150.html [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.Name: 1 红色通缉令.Red.Notice.2021.2160p.NF.WEB-DL.HDR.DDP5.1.Atmos.H.265-ABBiE.碟机外挂简体中字 [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.DownloadUrl: 1 [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.DetailUrl: 1 /detail/162204.html [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.DownloadTimes: 1 73000 [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.SubDownloadPageUrl: 1 https://zmk.pw/dld/162204.html [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.Name: 2 【官方字幕】红色通缉令.Red.Notice.2021.1080p.NF.WEBRip.x265.10bit.SDR.DDP5.1.Atmos-AGLET.rar [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.DownloadUrl: 2 [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.DetailUrl: 2 /detail/162149.html [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.DownloadTimes: 2 69000 [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.SubDownloadPageUrl: 2 https://zmk.pw/dld/162149.html [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.Name: 3 Red.Notice.2021.Netflix.WEB-DL.1080p.HEVC.DV.DDP-Enichi.chteng.ass [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.DownloadUrl: 3 [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.DetailUrl: 3 /detail/162197.html [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.DownloadTimes: 3 61000 [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.SubDownloadPageUrl: 3 https://zmk.pw/dld/162197.html [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.Name: 4 Red.Notice.2021.1080p.WEBRip.x265-RARBG.ass [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.DownloadUrl: 4 [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.DetailUrl: 4 /detail/162493.html [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.DownloadTimes: 4 56000 [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.SubDownloadPageUrl: 4 https://zmk.pw/dld/162493.html [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.Name: 5 红色通缉令.Red.Notice.2021.1080p.WEBRip.x264-RARBG.简体&英文.ass [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.DownloadUrl: 5 [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.DetailUrl: 5 /detail/162408.html [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.DownloadTimes: 5 59000 [DEBUG]: 2021-12-30 18:41:45 - zimuku ChineseSubs -> tmpSubInfo.SubDownloadPageUrl: 5 https://zmk.pw/dld/162408.html [DEBUG]: 2021-12-30 18:41:45 - zimuku step3 -> subInfo.SubDownloadPageUrl: 0 https://zmk.pw/dld/162150.html [DEBUG]: 2021-12-30 18:41:46 - Step3,DownFile, FileName: DataLen: 1759 [DEBUG]: 2021-12-30 18:41:46 - zimuku step3 -> subInfo.SubDownloadPageUrl: 1 https://zmk.pw/dld/162204.html [DEBUG]: 2021-12-30 18:41:48 - Step3,DownFile, FileName: DataLen: 1759 [DEBUG]: 2021-12-30 18:41:48 - zimuku step3 -> subInfo.SubDownloadPageUrl: 2 https://zmk.pw/dld/162149.html [DEBUG]: 2021-12-30 18:41:48 - Step3,DownFile, FileName: DataLen: 1759 [DEBUG]: 2021-12-30 18:41:48 - zimuku step3 -> subInfo.SubDownloadPageUrl: 2 https://zmk.pw/dld/162149.html [DEBUG]: 2021-12-30 18:41:49 - Step3,DownFile, FileName: DataLen: 1759 [DEBUG]: 2021-12-30 18:41:49 - zimuku step3 -> subInfo.SubDownloadPageUrl: 3 https://zmk.pw/dld/162197.html [DEBUG]: 2021-12-30 18:41:50 - Step3,DownFile, FileName: DataLen: 1759 [DEBUG]: 2021-12-30 18:41:50 - zimuku step3 -> subInfo.SubDownloadPageUrl: 4 https://zmk.pw/dld/162493.html [DEBUG]: 2021-12-30 18:41:50 - Step3,DownFile, FileName: DataLen: 1759 [DEBUG]: 2021-12-30 18:41:50 - zimuku step3 -> subInfo.SubDownloadPageUrl: 4 https://zmk.pw/dld/162493.html [DEBUG]: 2021-12-30 18:41:51 - Step3,DownFile, FileName: DataLen: 1759 [DEBUG]: 2021-12-30 18:41:51 - zimuku step3 -> subInfo.SubDownloadPageUrl: 5 https://zmk.pw/dld/162408.html [DEBUG]: 2021-12-30 18:41:53 - Step3,DownFile, FileName: DataLen: 1759 [DEBUG]: 2021-12-30 18:41:53 - zimuku step3 -> Downloaded File Info 0 FileName: FileUrl: https://zmk.pw/dld/162150.html [DEBUG]: 2021-12-30 18:41:53 - zimuku step3 -> Downloaded File Info 1 FileName: FileUrl: https://zmk.pw/dld/162204.html [DEBUG]: 2021-12-30 18:41:53 - zimuku step3 -> Downloaded File Info 2 FileName: FileUrl: https://zmk.pw/dld/162149.html [DEBUG]: 2021-12-30 18:41:53 - zimuku step3 -> Downloaded File Info 3 FileName: FileUrl: https://zmk.pw/dld/162197.html [DEBUG]: 2021-12-30 18:41:53 - zimuku step3 -> Downloaded File Info 4 FileName: FileUrl: https://zmk.pw/dld/162493.html [DEBUG]: 2021-12-30 18:41:53 - zimuku step3 -> Downloaded File Info 5 FileName: FileUrl: https://zmk.pw/dld/162408.html [DEBUG]: 2021-12-30 18:41:53 - zimuku /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 getSubListFromKeyword -> Search By IMDB ID, subInfoList Count: 6 [DEBUG]: 2021-12-30 18:41:53 - zimuku /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 End... [INFO]: 2021-12-30 18:41:53 - Queue 0 zimuku End... [DEBUG]: 2021-12-30 18:41:53 - Queue 0 OneMovieDlSubInAllSite get sub 0 Name: FileUrl: https://zmk.pw/dld/162150.html [DEBUG]: 2021-12-30 18:41:53 - Queue 0 OneMovieDlSubInAllSite get sub 1 Name: FileUrl: https://zmk.pw/dld/162204.html [DEBUG]: 2021-12-30 18:41:53 - Queue 0 OneMovieDlSubInAllSite get sub 2 Name: FileUrl: https://zmk.pw/dld/162149.html [DEBUG]: 2021-12-30 18:41:53 - Queue 0 OneMovieDlSubInAllSite get sub 3 Name: FileUrl: https://zmk.pw/dld/162197.html [DEBUG]: 2021-12-30 18:41:53 - Queue 0 OneMovieDlSubInAllSite get sub 4 Name: FileUrl: https://zmk.pw/dld/162493.html [DEBUG]: 2021-12-30 18:41:53 - Queue 0 OneMovieDlSubInAllSite get sub 5 Name: FileUrl: https://zmk.pw/dld/162408.html [INFO]: 2021-12-30 18:41:53 - Queue 0 DlSub End /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 [DEBUG]: 2021-12-30 18:41:53 - OrganizeDlSubFiles -> IsSubExtWanted == false Name: _S0E0 FileUrl: https://zmk.pw/dld/162150.html [DEBUG]: 2021-12-30 18:41:53 - OrganizeDlSubFiles -> IsSubExtWanted == false Name: _S0E0 FileUrl: https://zmk.pw/dld/162204.html [DEBUG]: 2021-12-30 18:41:53 - OrganizeDlSubFiles -> IsSubExtWanted == false Name: _S0E0 FileUrl: https://zmk.pw/dld/162149.html [DEBUG]: 2021-12-30 18:41:53 - OrganizeDlSubFiles -> IsSubExtWanted == false Name: _S0E0 FileUrl: https://zmk.pw/dld/162197.html [DEBUG]: 2021-12-30 18:41:53 - OrganizeDlSubFiles -> IsSubExtWanted == false Name: _S0E0 FileUrl: https://zmk.pw/dld/162493.html [DEBUG]: 2021-12-30 18:41:53 - OrganizeDlSubFiles -> IsSubExtWanted == false Name: _S0E0 FileUrl: https://zmk.pw/dld/162408.html [INFO]: 2021-12-30 18:41:53 - no sub found Red Notice (2021) 红色通缉令.mp4 [INFO]: 2021-12-30 18:41:53 - Download Movie Sub End... [INFO]: 2021-12-30 18:41:53 - Download Series Sub Started... [INFO]: 2021-12-30 18:41:53 - Download Series Sub End... [INFO]: 2021-12-30 18:41:53 - Download One End... [INFO]: 2021-12-30 18:41:53 - First Time Download End 感觉不是IP的问题,例如https://zmk.pw/dld/162150.html,我在同一内网的浏览器打开是可以正常下载字幕文件的。 留意到DownFile这个函数返回的filename为空。 https://github.com/allanpk716/ChineseSubFinder/blob/d76f9072c29a0759e5fcd57a7fb12eaa26befd04/internal/pkg/my_util/util.go#L82 你那边能够帮调试下吗?我这边测试了上述的链接是没得问题的,能够正确解析出 filename 出来。图1 图1 如何快速调试: 在这个 internal/logic/sub_supplier/zimuku/zimuku_test.go 文件最后,添加: func TestSupplier_step3(t *testing.T) { dlUrl := "https://zmk.pw/dld/162150.html" s := Supplier{} fileName, datas, err := s.step3(dlUrl) if err != nil { t.Fatal(err) } println(fileName) println(len(datas)) } 然后需要在 internal/logic/sub_supplier/zimuku/zimuku_test.go 文件的同级目录下,新建本程序的 config.xml,复制过去也行 (这个日志的梗可能后续才会改,否则会提示异常) 在图2,地方打断点。这个函数在 internal/pkg/my_util/util.go 然后正常启动这个 TestSupplier_step3 单元测试 看看图2中,contentDisposition 的值是多少,发一下。看看是否是正则表达式不支持,需要更新和扩充。 图2 又推送 v0.19.3 了,我加了错误日志,如果上面麻烦的话,可以帮再次运行下,会打印对应的字段内容是什么。 v0.19.3 错误警告系统阵列登录 [s6-init] making user provided files available at /var/run/s6/etc...exited 0. [s6-init] ensuring user provided files have correct perms...exited 0. [fix-attrs.d] applying ownership & permissions fixes... [fix-attrs.d] done. [cont-init.d] executing container initialization scripts... [cont-init.d] 01-envfile: executing... [cont-init.d] 01-envfile: exited 0. [cont-init.d] 01-migrations: executing... [migrations] started [migrations] no migrations found [cont-init.d] 01-migrations: exited 0. [cont-init.d] 10-adduser: executing... ------------------------------------- _ () | | ___ _ __ | | / __| | | / \ | | \__ \ | | | () | |_| |___/ |_| \__/ Brought to you by linuxserver.io ------------------------------------- To support LSIO projects visit: https://www.linuxserver.io/donate/ ------------------------------------- GID/UID ------------------------------------- User uid: 1000 User gid: 100 ------------------------------------- [cont-init.d] 10-adduser: exited 0. [cont-init.d] 30-config: executing... [cont-init.d] 30-config: exited 0. [cont-init.d] 50-config: executing... [cont-init.d] 50-config: exited 0. [cont-init.d] 90-custom-folders: executing... [cont-init.d] 90-custom-folders: exited 0. [cont-init.d] 99-custom-scripts: executing... [cont-init.d] 99-custom-scripts: exited 0. [cont-init.d] done. [services.d] starting services [services.d] done. [INFO]: 2021-12-30 20:41:53 - ChineseSubFinder Version: v0.19.3 [INFO]: 2021-12-30 20:41:53 - UseProxy = false [INFO]: 2021-12-30 20:41:53 - MovieFolder: /media/离线电影 [INFO]: 2021-12-30 20:41:53 - SeriesFolder: /media/美剧英剧电视剧 [INFO]: 2021-12-30 20:41:53 - HotFix Start, wait ... [INFO]: 2021-12-30 20:41:53 - If you have a lot of videos, it may take a lot of time, just wait... [INFO]: 2021-12-30 20:41:53 - HotFix End [INFO]: 2021-12-30 20:41:53 - Change Sub Name Format Start... [INFO]: 2021-12-30 20:41:53 - If you have a lot of videos, it may take a lot of time, just wait... [INFO]: 2021-12-30 20:41:53 - DesSubFormatter == LateTimeSubFormatter then skip process [INFO]: 2021-12-30 20:41:53 - Change Sub Name Format End [INFO]: 2021-12-30 20:41:53 - First Time Download Start [INFO]: 2021-12-30 20:41:54 - ffmpeg version 3.4.8-0ubuntu0.2 Copyright (c) 2000-2020 the FFmpeg developers built with gcc 7 (Ubuntu 7.5.0-3ubuntu1~18.04) configuration: --prefix=/usr --extra-version=0ubuntu0.2 --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --enable-gpl --disable-stripping --enable-avresample --enable-avisynth --enable-gnutls --enable-ladspa --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librubberband --enable-librsvg --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzmq --enable-libzvbi --enable-omx --enable-openal --enable-opengl --enable-sdl2 --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libopencv --enable-libx264 --enable-shared libavutil 55. 78.100 / 55. 78.100 libavcodec 57.107.100 / 57.107.100 libavformat 57. 83.100 / 57. 83.100 libavdevice 57. 10.100 / 57. 10.100 libavfilter 6.107.100 / 6.107.100 libavresample 3. 7. 0 / 3. 7. 0 libswscale 4. 8.100 / 4. 8.100 libswresample 2. 9.100 / 2. 9.100 libpostproc 54. 7.100 / 54. 7.100 ffprobe version 3.4.8-0ubuntu0.2 Copyright (c) 2007-2020 the FFmpeg developers built with gcc 7 (Ubuntu 7.5.0-3ubuntu1~18.04) configuration: --prefix=/usr --extra-version=0ubuntu0.2 --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --enable-gpl --disable-stripping --enable-avresample --enable-avisynth --enable-gnutls --enable-ladspa --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librubberband --enable-librsvg --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzmq --enable-libzvbi --enable-omx --enable-openal --enable-opengl --enable-sdl2 --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libopencv --enable-libx264 --enable-shared libavutil 55. 78.100 / 55. 78.100 libavcodec 57.107.100 / 57.107.100 libavformat 57. 83.100 / 57. 83.100 libavdevice 57. 10.100 / 57. 10.100 libavfilter 6.107.100 / 6.107.100 libavresample 3. 7. 0 / 3. 7. 0 libswscale 4. 8.100 / 4. 8.100 libswresample 2. 9.100 / 2. 9.100 libpostproc 54. 7.100 / 54. 7.100 [INFO]: 2021-12-30 20:41:54 - Download One Started... [INFO]: 2021-12-30 20:41:54 - Download Movie Sub Started... [INFO]: 2021-12-30 20:41:58 - Queue 0 DlSub Start /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 [INFO]: 2021-12-30 20:41:58 - Queue 0 shooter Start... [DEBUG]: 2021-12-30 20:41:58 - shooter /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 Start... [INFO]: 2021-12-30 20:41:58 - Queue 0 xunlei Start... [DEBUG]: 2021-12-30 20:41:58 - xunlei /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 Start... [INFO]: 2021-12-30 20:41:58 - Queue 0 zimuku Start... [DEBUG]: 2021-12-30 20:41:58 - zimuku /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 Start... [DEBUG]: 2021-12-30 20:41:58 - zimuku /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 GetVideoInfoFromFileFullPath -> Title: Red Notice [DEBUG]: 2021-12-30 20:41:58 - zimuku /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 GetImdbInfo4Movie -> Title: 红色通缉令 [DEBUG]: 2021-12-30 20:41:58 - zimuku /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 GetImdbInfo4Movie -> OriginalTitle: [DEBUG]: 2021-12-30 20:41:58 - zimuku /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 GetImdbInfo4Movie -> Year: 2021 [DEBUG]: 2021-12-30 20:41:58 - zimuku /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 GetImdbInfo4Movie -> ImdbId: tt7991608 [DEBUG]: 2021-12-30 20:41:58 - zimuku /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 getSubListFromKeyword -> Search By IMDB ID: tt7991608 [DEBUG]: 2021-12-30 20:41:59 - shooter /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 End... [INFO]: 2021-12-30 20:41:59 - Queue 0 shooter End... [DEBUG]: 2021-12-30 20:41:59 - shooter /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 End... [INFO]: 2021-12-30 20:41:59 - Queue 0 shooter End... [DEBUG]: 2021-12-30 20:41:59 - zimuku getSubListFromKeyword -> step0 -> filmDetailPageUrl: /subs/59565.html [DEBUG]: 2021-12-30 20:42:00 - zimuku getSubListFromKeyword -> step1 -> subResult.Title: 红色通缉令.Red.Notice.2021.1080p.WEB.H264-PECULATE.zip [DEBUG]: 2021-12-30 20:42:00 - zimuku getSubListFromKeyword -> step1 -> subResult.OtherName: [DEBUG]: 2021-12-30 20:42:00 - zimuku getSubListFromKeyword -> step1 -> info.Name 0 红色通缉令.Red.Notice【V2】.[WEB.1080P]中英文字幕【官方译本】Red.Notice.2021.1080p.WEB.H264-PECULATE [DEBUG]: 2021-12-30 20:42:00 - zimuku getSubListFromKeyword -> step1 -> info.DownloadUrl: 0 [DEBUG]: 2021-12-30 20:42:00 - zimuku getSubListFromKeyword -> step1 -> info.DetailUrl: 0 /detail/162150.html [DEBUG]: 2021-12-30 20:42:00 - zimuku getSubListFromKeyword -> step1 -> info.DownloadTimes: 0 100000 [DEBUG]: 2021-12-30 20:42:00 - zimuku getSubListFromKeyword -> step1 -> info.Name 1 红色通缉令.Red.Notice.2021.2160p.NF.WEB-DL.HDR.DDP5.1.Atmos.H.265-ABBiE.碟机外挂简体中字 [DEBUG]: 2021-12-30 20:42:00 - zimuku getSubListFromKeyword -> step1 -> info.DownloadUrl: 1 [DEBUG]: 2021-12-30 20:42:00 - zimuku getSubListFromKeyword -> step1 -> info.DetailUrl: 1 /detail/162204.html [DEBUG]: 2021-12-30 20:42:00 - zimuku getSubListFromKeyword -> step1 -> info.DownloadTimes: 1 73000 [DEBUG]: 2021-12-30 20:42:00 - zimuku getSubListFromKeyword -> step1 -> info.Name 2 【官方字幕】红色通缉令.Red.Notice.2021.1080p.NF.WEBRip.x265.10bit.SDR.DDP5.1.Atmos-AGLET.rar [DEBUG]: 2021-12-30 20:42:00 - zimuku getSubListFromKeyword -> step1 -> info.DownloadUrl: 2 [DEBUG]: 2021-12-30 20:42:00 - zimuku getSubListFromKeyword -> step1 -> info.DetailUrl: 2 /detail/162149.html [DEBUG]: 2021-12-30 20:42:00 - zimuku getSubListFromKeyword -> step1 -> info.DownloadTimes: 2 69000 [DEBUG]: 2021-12-30 20:42:00 - zimuku getSubListFromKeyword -> step1 -> info.Name 3 Red.Notice.2021.Netflix.WEB-DL.1080p.HEVC.DV.DDP-Enichi.chteng.ass [DEBUG]: 2021-12-30 20:42:00 - zimuku getSubListFromKeyword -> step1 -> info.DownloadUrl: 3 [DEBUG]: 2021-12-30 20:42:00 - zimuku getSubListFromKeyword -> step1 -> info.DetailUrl: 3 /detail/162197.html [DEBUG]: 2021-12-30 20:42:00 - zimuku getSubListFromKeyword -> step1 -> info.DownloadTimes: 3 62000 [DEBUG]: 2021-12-30 20:42:00 - zimuku getSubListFromKeyword -> step1 -> info.Name 4 Red.Notice.2021.1080p.WEBRip.x265-RARBG.ass [DEBUG]: 2021-12-30 20:42:00 - zimuku getSubListFromKeyword -> step1 -> info.DownloadUrl: 4 [DEBUG]: 2021-12-30 20:42:00 - zimuku getSubListFromKeyword -> step1 -> info.DetailUrl: 4 /detail/162493.html [DEBUG]: 2021-12-30 20:42:00 - zimuku getSubListFromKeyword -> step1 -> info.DownloadTimes: 4 56000 [DEBUG]: 2021-12-30 20:42:00 - zimuku getSubListFromKeyword -> step1 -> info.Name 5 红色通缉令.Red.Notice.2021.1080p.WEBRip.x264-RARBG.简体&英文.ass [DEBUG]: 2021-12-30 20:42:00 - zimuku getSubListFromKeyword -> step1 -> info.DownloadUrl: 5 [DEBUG]: 2021-12-30 20:42:00 - zimuku getSubListFromKeyword -> step1 -> info.DetailUrl: 5 /detail/162408.html [DEBUG]: 2021-12-30 20:42:00 - zimuku getSubListFromKeyword -> step1 -> info.DownloadTimes: 5 59000 [DEBUG]: 2021-12-30 20:42:00 - zimuku getSubListFromKeyword -> step1 -> info.Name 6 红色通缉令.Red.Notice.2021.1080p.WEB.H264-PECULATE.zip [DEBUG]: 2021-12-30 20:42:00 - zimuku getSubListFromKeyword -> step1 -> info.DownloadUrl: 6 [DEBUG]: 2021-12-30 20:42:00 - zimuku getSubListFromKeyword -> step1 -> info.DetailUrl: 6 /detail/162148.html [DEBUG]: 2021-12-30 20:42:00 - zimuku getSubListFromKeyword -> step1 -> info.DownloadTimes: 6 515 [DEBUG]: 2021-12-30 20:42:01 - zimuku whichSubInfoNeedDownload -> step2 -> info.SubDownloadPageUrl: 0 https://zmk.pw/dld/162150.html [DEBUG]: 2021-12-30 20:42:01 - zimuku whichSubInfoNeedDownload -> step2 -> info.SubDownloadPageUrl: 1 https://zmk.pw/dld/162204.html [DEBUG]: 2021-12-30 20:42:02 - zimuku whichSubInfoNeedDownload -> step2 -> info.SubDownloadPageUrl: 2 https://zmk.pw/dld/162149.html [DEBUG]: 2021-12-30 20:42:02 - zimuku whichSubInfoNeedDownload -> step2 -> info.SubDownloadPageUrl: 2 https://zmk.pw/dld/162149.html [DEBUG]: 2021-12-30 20:42:03 - zimuku whichSubInfoNeedDownload -> step2 -> info.SubDownloadPageUrl: 3 https://zmk.pw/dld/162197.html [DEBUG]: 2021-12-30 20:42:03 - zimuku whichSubInfoNeedDownload -> step2 -> info.SubDownloadPageUrl: 4 https://zmk.pw/dld/162493.html [DEBUG]: 2021-12-30 20:42:04 - zimuku whichSubInfoNeedDownload -> step2 -> info.SubDownloadPageUrl: 5 https://zmk.pw/dld/162408.html [DEBUG]: 2021-12-30 20:42:05 - zimuku whichSubInfoNeedDownload -> step2 -> info.SubDownloadPageUrl: 6 https://zmk.pw/dld/162148.html [DEBUG]: 2021-12-30 20:42:05 - zimuku step2 -> tmpSubInfo.Count 6 [DEBUG]: 2021-12-30 20:42:05 - zimuku ChineseSubs -> tmpSubInfo.Name: 0 红色通缉令.Red.Notice【V2】.[WEB.1080P]中英文字幕【官方译本】Red.Notice.2021.1080p.WEB.H264-PECULATE [DEBUG]: 2021-12-30 20:42:05 - zimuku ChineseSubs -> tmpSubInfo.DownloadUrl: 0 [DEBUG]: 2021-12-30 20:42:05 - zimuku ChineseSubs -> tmpSubInfo.DetailUrl: 0 /detail/162150.html [DEBUG]: 2021-12-30 20:42:05 - zimuku ChineseSubs -> tmpSubInfo.DownloadTimes: 0 100000 [DEBUG]: 2021-12-30 20:42:05 - zimuku ChineseSubs -> tmpSubInfo.SubDownloadPageUrl: 0 https://zmk.pw/dld/162150.html [DEBUG]: 2021-12-30 20:42:05 - zimuku ChineseSubs -> tmpSubInfo.Name: 1 红色通缉令.Red.Notice.2021.2160p.NF.WEB-DL.HDR.DDP5.1.Atmos.H.265-ABBiE.碟机外挂简体中字 [DEBUG]: 2021-12-30 20:42:05 - zimuku ChineseSubs -> tmpSubInfo.DownloadUrl: 1 [DEBUG]: 2021-12-30 20:42:05 - zimuku ChineseSubs -> tmpSubInfo.DetailUrl: 1 /detail/162204.html [DEBUG]: 2021-12-30 20:42:05 - zimuku ChineseSubs -> tmpSubInfo.DownloadTimes: 1 73000 [DEBUG]: 2021-12-30 20:42:05 - zimuku ChineseSubs -> tmpSubInfo.SubDownloadPageUrl: 1 https://zmk.pw/dld/162204.html [DEBUG]: 2021-12-30 20:42:05 - zimuku ChineseSubs -> tmpSubInfo.Name: 2 【官方字幕】红色通缉令.Red.Notice.2021.1080p.NF.WEBRip.x265.10bit.SDR.DDP5.1.Atmos-AGLET.rar [DEBUG]: 2021-12-30 20:42:05 - zimuku ChineseSubs -> tmpSubInfo.DownloadUrl: 2 [DEBUG]: 2021-12-30 20:42:05 - zimuku ChineseSubs -> tmpSubInfo.DetailUrl: 2 /detail/162149.html [DEBUG]: 2021-12-30 20:42:05 - zimuku ChineseSubs -> tmpSubInfo.DownloadTimes: 2 69000 [DEBUG]: 2021-12-30 20:42:05 - zimuku ChineseSubs -> tmpSubInfo.SubDownloadPageUrl: 2 https://zmk.pw/dld/162149.html [DEBUG]: 2021-12-30 20:42:05 - zimuku ChineseSubs -> tmpSubInfo.Name: 3 Red.Notice.2021.Netflix.WEB-DL.1080p.HEVC.DV.DDP-Enichi.chteng.ass [DEBUG]: 2021-12-30 20:42:05 - zimuku ChineseSubs -> tmpSubInfo.DownloadUrl: 3 [DEBUG]: 2021-12-30 20:42:05 - zimuku ChineseSubs -> tmpSubInfo.DetailUrl: 3 /detail/162197.html [DEBUG]: 2021-12-30 20:42:05 - zimuku ChineseSubs -> tmpSubInfo.DownloadTimes: 3 62000 [DEBUG]: 2021-12-30 20:42:05 - zimuku ChineseSubs -> tmpSubInfo.SubDownloadPageUrl: 3 https://zmk.pw/dld/162197.html [DEBUG]: 2021-12-30 20:42:05 - zimuku ChineseSubs -> tmpSubInfo.Name: 4 Red.Notice.2021.1080p.WEBRip.x265-RARBG.ass [DEBUG]: 2021-12-30 20:42:05 - zimuku ChineseSubs -> tmpSubInfo.DownloadUrl: 4 [DEBUG]: 2021-12-30 20:42:05 - zimuku ChineseSubs -> tmpSubInfo.DetailUrl: 4 /detail/162493.html [DEBUG]: 2021-12-30 20:42:05 - zimuku ChineseSubs -> tmpSubInfo.DownloadTimes: 4 56000 [DEBUG]: 2021-12-30 20:42:05 - zimuku ChineseSubs -> tmpSubInfo.SubDownloadPageUrl: 4 https://zmk.pw/dld/162493.html [DEBUG]: 2021-12-30 20:42:05 - zimuku ChineseSubs -> tmpSubInfo.Name: 5 红色通缉令.Red.Notice.2021.1080p.WEBRip.x264-RARBG.简体&英文.ass [DEBUG]: 2021-12-30 20:42:05 - zimuku ChineseSubs -> tmpSubInfo.DownloadUrl: 5 [DEBUG]: 2021-12-30 20:42:05 - zimuku ChineseSubs -> tmpSubInfo.DetailUrl: 5 /detail/162408.html [DEBUG]: 2021-12-30 20:42:05 - zimuku ChineseSubs -> tmpSubInfo.DownloadTimes: 5 59000 [DEBUG]: 2021-12-30 20:42:05 - zimuku ChineseSubs -> tmpSubInfo.SubDownloadPageUrl: 5 https://zmk.pw/dld/162408.html [DEBUG]: 2021-12-30 20:42:05 - zimuku step3 -> subInfo.SubDownloadPageUrl: 0 https://zmk.pw/dld/162150.html [ERROR]: 2021-12-30 20:42:07 - DownFile.GetFileName is string.empty https://zmk.pw/download/MTYyMTUwfGNiNTUwZDFmMzljOTczMzY5ZjZmMzM4N3wxNjQwODY4MTI1fGFjY2E5OTcxfHJlbW90ZQ%3D%3D/svr/dx1 [DEBUG]: 2021-12-30 20:42:07 - Step3,DownFile, FileName: DataLen: 1759 [DEBUG]: 2021-12-30 20:42:07 - zimuku step3 -> subInfo.SubDownloadPageUrl: 1 https://zmk.pw/dld/162204.html [ERROR]: 2021-12-30 20:42:09 - DownFile.GetFileName is string.empty https://zmk.pw/download/MTYyMjA0fDE4NWQ1ZDM1ZmZkNTEzMGQxYjU0NDZiOXwxNjQwODY4MTI4fDgyMzhhODU1fHJlbW90ZQ%3D%3D/svr/dx1 [DEBUG]: 2021-12-30 20:42:09 - Step3,DownFile, FileName: DataLen: 1759 [DEBUG]: 2021-12-30 20:42:09 - zimuku step3 -> subInfo.SubDownloadPageUrl: 2 https://zmk.pw/dld/162149.html [ERROR]: 2021-12-30 20:42:09 - DownFile.GetFileName is string.empty https://zmk.pw/download/MTYyMjA0fDE4NWQ1ZDM1ZmZkNTEzMGQxYjU0NDZiOXwxNjQwODY4MTI4fDgyMzhhODU1fHJlbW90ZQ%3D%3D/svr/dx1 [DEBUG]: 2021-12-30 20:42:09 - Step3,DownFile, FileName: DataLen: 1759 [DEBUG]: 2021-12-30 20:42:09 - zimuku step3 -> subInfo.SubDownloadPageUrl: 2 https://zmk.pw/dld/162149.html [ERROR]: 2021-12-30 20:42:10 - DownFile.GetFileName is string.empty https://zmk.pw/download/MTYyMTQ5fDI1MDk3ODA4MDk2ZGFjZDQ3NTM0NjIzMXwxNjQwODY4MTI5fDJhZTU4MTA1fHJlbW90ZQ%3D%3D/svr/dx1 [DEBUG]: 2021-12-30 20:42:10 - Step3,DownFile, FileName: DataLen: 1759 [DEBUG]: 2021-12-30 20:42:10 - zimuku step3 -> subInfo.SubDownloadPageUrl: 3 https://zmk.pw/dld/162197.html [ERROR]: 2021-12-30 20:42:11 - DownFile.GetFileName is string.empty https://zmk.pw/download/MTYyMTk3fDY3ZjRmYmJiNDFiNTQ2NzJkY2M3ZjkxMXwxNjQwODY4MTMxfDFhZWZiM2ZlfHJlbW90ZQ%3D%3D/svr/dx1 [DEBUG]: 2021-12-30 20:42:11 - Step3,DownFile, FileName: DataLen: 1759 [DEBUG]: 2021-12-30 20:42:11 - zimuku step3 -> subInfo.SubDownloadPageUrl: 4 https://zmk.pw/dld/162493.html [ERROR]: 2021-12-30 20:42:13 - DownFile.GetFileName is string.empty https://zmk.pw/download/MTYyNDkzfGYzZGI0ZDM0ZWE4NDkwYmY5MzYwM2JhMnwxNjQwODY4MTMyfDNiMTg0M2E3fHJlbW90ZQ%3D%3D/svr/dx1 [DEBUG]: 2021-12-30 20:42:13 - Step3,DownFile, FileName: DataLen: 1759 [DEBUG]: 2021-12-30 20:42:13 - zimuku step3 -> subInfo.SubDownloadPageUrl: 5 https://zmk.pw/dld/162408.html [ERROR]: 2021-12-30 20:42:14 - DownFile.GetFileName is string.empty https://zmk.pw/download/MTYyNDA4fDk2MzFiY2RkYmQ4OTk4ZDkwMmY0OTA5YXwxNjQwODY4MTMzfDQwNDFmMjI0fHJlbW90ZQ%3D%3D/svr/dx1 [DEBUG]: 2021-12-30 20:42:14 - Step3,DownFile, FileName: DataLen: 1759 [DEBUG]: 2021-12-30 20:42:14 - zimuku step3 -> Downloaded File Info 0 FileName: FileUrl: https://zmk.pw/dld/162150.html [DEBUG]: 2021-12-30 20:42:14 - zimuku step3 -> Downloaded File Info 1 FileName: FileUrl: https://zmk.pw/dld/162204.html [DEBUG]: 2021-12-30 20:42:14 - zimuku step3 -> Downloaded File Info 2 FileName: FileUrl: https://zmk.pw/dld/162149.html [DEBUG]: 2021-12-30 20:42:14 - zimuku step3 -> Downloaded File Info 3 FileName: FileUrl: https://zmk.pw/dld/162197.html [DEBUG]: 2021-12-30 20:42:14 - zimuku step3 -> Downloaded File Info 4 FileName: FileUrl: https://zmk.pw/dld/162493.html [DEBUG]: 2021-12-30 20:42:14 - zimuku step3 -> Downloaded File Info 5 FileName: FileUrl: https://zmk.pw/dld/162408.html [DEBUG]: 2021-12-30 20:42:14 - zimuku /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 getSubListFromKeyword -> Search By IMDB ID, subInfoList Count: 6 [DEBUG]: 2021-12-30 20:42:14 - zimuku /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 End... [INFO]: 2021-12-30 20:42:14 - Queue 0 zimuku End... [DEBUG]: 2021-12-30 20:42:34 - xunlei /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 End... [INFO]: 2021-12-30 20:42:34 - Queue 0 xunlei End... [DEBUG]: 2021-12-30 20:42:34 - Queue 0 OneMovieDlSubInAllSite get sub 0 Name: FileUrl: https://zmk.pw/dld/162150.html [DEBUG]: 2021-12-30 20:42:34 - Queue 0 OneMovieDlSubInAllSite get sub 1 Name: FileUrl: https://zmk.pw/dld/162204.html [DEBUG]: 2021-12-30 20:42:34 - Queue 0 OneMovieDlSubInAllSite get sub 2 Name: FileUrl: https://zmk.pw/dld/162149.html [DEBUG]: 2021-12-30 20:42:34 - Queue 0 OneMovieDlSubInAllSite get sub 3 Name: FileUrl: https://zmk.pw/dld/162197.html [DEBUG]: 2021-12-30 20:42:34 - Queue 0 OneMovieDlSubInAllSite get sub 4 Name: FileUrl: https://zmk.pw/dld/162493.html [DEBUG]: 2021-12-30 20:42:34 - Queue 0 OneMovieDlSubInAllSite get sub 5 Name: FileUrl: https://zmk.pw/dld/162408.html [INFO]: 2021-12-30 20:42:34 - Queue 0 DlSub End /media/离线电影/Red Notice (2021) 红色通缉令/Red Notice (2021) 红色通缉令.mp4 [DEBUG]: 2021-12-30 20:42:34 - OrganizeDlSubFiles -> IsSubExtWanted == false Name: _S0E0 FileUrl: https://zmk.pw/dld/162150.html [DEBUG]: 2021-12-30 20:42:34 - OrganizeDlSubFiles -> IsSubExtWanted == false Name: _S0E0 FileUrl: https://zmk.pw/dld/162204.html [DEBUG]: 2021-12-30 20:42:34 - OrganizeDlSubFiles -> IsSubExtWanted == false Name: _S0E0 FileUrl: https://zmk.pw/dld/162149.html [DEBUG]: 2021-12-30 20:42:34 - OrganizeDlSubFiles -> IsSubExtWanted == false Name: _S0E0 FileUrl: https://zmk.pw/dld/162197.html [DEBUG]: 2021-12-30 20:42:34 - OrganizeDlSubFiles -> IsSubExtWanted == false Name: _S0E0 FileUrl: https://zmk.pw/dld/162493.html [DEBUG]: 2021-12-30 20:42:34 - OrganizeDlSubFiles -> IsSubExtWanted == false Name: _S0E0 FileUrl: https://zmk.pw/dld/162408.html [INFO]: 2021-12-30 20:42:34 - no sub found Red Notice (2021) 红色通缉令.mp4 [INFO]: 2021-12-30 20:42:34 - Download Movie Sub End... [INFO]: 2021-12-30 20:42:34 - Download Series Sub Started... [INFO]: 2021-12-30 20:42:34 - Download Series Sub End... [INFO]: 2021-12-30 20:42:34 - Download One End... [INFO]: 2021-12-30 20:42:34 - First Time Download End https://zmk.pw/download/MTYyMTUwfGNiNTUwZDFmMzljOTczMzY5ZjZmMzM4N3wxNjQwODY4MTI1fGFjY2E5OTcxfHJlbW90ZQ%3D%3D/svr/dx1 返回空的响应,貌似确实是网络问题。。。 能确认问题就好。
gharchive/issue
2021-12-30T04:02:39
2025-04-01T06:37:47.976417
{ "authors": [ "allanpk716", "ptbsare" ], "repo": "allanpk716/ChineseSubFinder", "url": "https://github.com/allanpk716/ChineseSubFinder/issues/136", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
274401214
Added basic HTTP server implementation. Features: Basic HTTP server. Basic middleware implementation. I wanted to provide some thoughts on this implementation. API Surface: GET /api/v1/cache/{key} PUT /api/v1/cache/{key} The API path denotes it's an API which is versioned, so making changes/implementing new features allows it to be versioned easily. I felt PUT was more relevant than POST because bigcache.BigCache.Set() will overwrite an existing key of the same name. PUT more closely aligns with the semantic aspect of the feature as opposed to the spirit. When looking at the /cache/ heirarchy of the path, there was a PR I saw recently which looked to implement stats about the cache. If it gets approved, you can add /api/v1/stats to the API surface as an extra API. Overall, this API surface seemed easily sustainable to me. HTTP Implementation: What I love about this package is the focus is on performance and the standard library. My proposal suggested using the standard library, so I felt that was important. When looking at implementation options, I wanted something that could be easily extensible without pulling in dependencies. This post gave me a great idea, and I liked the adapter idea because it's highly extensible using only the standard library. If you want to implement request tracing, it's easy to do by adding a quick service adapter; if you want to implement some form of authentication or geo-limitation, just add another service adapter. The requestMetrics() feature, to me, is both a way to log basic metrics about the HTTP server, as well as an example for a basic service adapter. Overall, my goal with this implementation was a focus on the standard library with no external dependencies in a highly extensible way. Coverage remained the same at 98.029% when pulling bccac43493b12432229198c7e4cc62ccf175f472 on mxplusb:server into 53bd79e3bbd98574dc1ac498abaf48fa5196e32b on allegro:master. I can add tests and a README. Gimme a few days. Here's what I get when I try and check if the error message: --- FAIL: TestGetWithMissingKey (0.01s) panic: runtime error: invalid memory address or nil pointer dereference [recovered] panic: runtime error: invalid memory address or nil pointer dereference [signal 0xc0000005 code=0x0 addr=0x30 pc=0x627abd] goroutine 11 [running]: testing.tRunner.func1(0xc0420fc1e0) C:/Go/src/testing/testing.go:711 +0x2d9 panic(0x66e260, 0x819200) C:/Go/src/runtime/panic.go:491 +0x291 github.com/allegro/bigcache.(*BigCache).Get(0x0, 0xc0420123a5, 0xc, 0x8240e0, 0x3130d50, 0x0, 0x6a47a0, 0xc06716ab70) C:/Users/MikeLloyd/Development/go/src/github.com/allegro/bigcache/bigcache.go:74 +0x2d _/C_/Users/MikeLloyd/Development/go/src/github.com/mxplusb/bigcache/server.getCacheHandler(0x7ef5a0, 0xc04204ea00, 0xc0682fe 000) C:/Users/MikeLloyd/Development/go/src/github.com/mxplusb/bigcache/server/server.go:132 +0x8d _/C_/Users/MikeLloyd/Development/go/src/github.com/mxplusb/bigcache/server.TestGetWithMissingKey(0xc0420fc1e0) C:/Users/MikeLloyd/Development/go/src/github.com/mxplusb/bigcache/server/server_test.go:47 +0x186 testing.tRunner(0xc0420fc1e0, 0x6cf768) C:/Go/src/testing/testing.go:746 +0xd7 created by testing.(*T).Run C:/Go/src/testing/testing.go:789 +0x2e5 exit status 2 For a reason I haven't figured out yet, if I dereference the error, like this: entry, err := cache.Get(target) if err != nil { errMsg := (err).Error() if strings.Contains(errMsg, "not found") { log.Print(err) w.WriteHeader(http.StatusNotFound) return } log.Print(err) w.WriteHeader(http.StatusInternalServerError) return } It works. If anyone can explain why, I'd be interesting in learning. I know it's because cache is a pointer, but I don't understand the need to dereference the error. Coverage remained the same at 98.029% when pulling fa2c6166e83fa78995e7fc8701bb6b0f0d78de67 on mxplusb:server into 53bd79e3bbd98574dc1ac498abaf48fa5196e32b on allegro:master. Coverage remained the same at 98.029% when pulling 78abea5f28b7fa0d02a56e35cda646a6b29c3357 on mxplusb:server into 53bd79e3bbd98574dc1ac498abaf48fa5196e32b on allegro:master. Alright, it's been updated with tests and a basic README. Coverage remained the same at 98.029% when pulling fa335e30fdb5e2d0c9bad2d3fb39db9246543168 on mxplusb:server into 53bd79e3bbd98574dc1ac498abaf48fa5196e32b on allegro:master. Coverage remained the same at 98.029% when pulling c30bfc6530796481051a5469e567e7cef04462b4 on mxplusb:server into 53bd79e3bbd98574dc1ac498abaf48fa5196e32b on allegro:master. Fixed requested changes minus the global cache via amendment. @janisz can you provide some thoughts on how to share a non-global cache between handlers? I'm not sure what you're looking for. @mxplusb I added one comment. I think we can leave global cache. I was thinking about creating the cache in main and then pass it as an argument to the function but this will only complicate code without any improvement in testability. Fixed last configuration review request with amendment. Coverage remained the same at 98.029% when pulling 5db0c1de0f3b24d19e9c70a410f319d144a50f8d on mxplusb:server into 53bd79e3bbd98574dc1ac498abaf48fa5196e32b on allegro:master. @mxplusb Would you like to fix small issues reported by @cristaloleg ? They aren't so important 😉 Sorry, last week was a holiday week in the US (Thanksgiving), so I was focused on that. I will take a look at the tasks this week and get them addressed. Coverage remained the same at 98.029% when pulling ecab1868cede9a6fcaad11c73c22c37a4e799a8e on mxplusb:server into 53bd79e3bbd98574dc1ac498abaf48fa5196e32b on allegro:master. Fixed requested changes. //cc @janisz @cristaloleg @mxplusb Thanks for your contribution. @cristaloleg Thank you for your time.
gharchive/pull-request
2017-11-16T05:43:53
2025-04-01T06:37:48.031929
{ "authors": [ "coveralls", "cristaloleg", "janisz", "mxplusb" ], "repo": "allegro/bigcache", "url": "https://github.com/allegro/bigcache/pull/58", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
338571345
How to setup custom user for embedded-elasticsearch? I want to use embedded-elasticsearch in my integration tests and when running them from IDE everything is Okay. But, when I'm trying to build my project on Teamcity the exception is thrown: org.elasticsearch.bootstrap.StartupException: java.lang.RuntimeException: can not run elasticsearch as root at org.elasticsearch.bootstrap.Elasticsearch.init(Elasticsearch.java:134) ~[elasticsearch-6.0.1.jar:6.0.1] at org.elasticsearch.bootstrap.Elasticsearch.execute(Elasticsearch.java:121) ~[elasticsearch-6.0.1.jar:6.0.1] at org.elasticsearch.cli.EnvironmentAwareCommand.execute(EnvironmentAwareCommand.java:69) ~[elasticsearch-6.0.1.jar:6.0.1] at org.elasticsearch.cli.Command.mainWithoutErrorHandling(Command.java:134) ~[elasticsearch-6.0.1.jar:6.0.1] at org.elasticsearch.cli.Command.main(Command.java:90) ~[elasticsearch-6.0.1.jar:6.0.1] at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:92) ~[elasticsearch-6.0.1.jar:6.0.1] at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:85) ~[elasticsearch-6.0.1.jar:6.0.1] Caused by: java.lang.RuntimeException: can not run elasticsearch as root at org.elasticsearch.bootstrap.Bootstrap.initializeNatives(Bootstrap.java:104) ~[elasticsearch-6.0.1.jar:6.0.1] at org.elasticsearch.bootstrap.Bootstrap.setup(Bootstrap.java:171) ~[elasticsearch-6.0.1.jar:6.0.1] at org.elasticsearch.bootstrap.Bootstrap.init(Bootstrap.java:322) ~[elasticsearch-6.0.1.jar:6.0.1] at org.elasticsearch.bootstrap.Elasticsearch.init(Elasticsearch.java:130) ~[elasticsearch-6.0.1.jar:6.0.1] What is correct way to configure custom user? @gaczm thanks for quick answer
gharchive/issue
2018-07-05T13:19:04
2025-04-01T06:37:48.039433
{ "authors": [ "MolineroUA" ], "repo": "allegro/embedded-elasticsearch", "url": "https://github.com/allegro/embedded-elasticsearch/issues/60", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
354250166
train in gpu error 这个代码在训练的时候使用CUDA_VISIBLE_DEVICES=2 python train.py这种方式指定为什么一直在gpu0上运行 这个代码在gpu上跑一直报 Fail to find the dnn implementation. 这个错误
gharchive/issue
2018-08-27T09:39:51
2025-04-01T06:37:48.062329
{ "authors": [ "hitxiaowandou" ], "repo": "allenai/document-qa", "url": "https://github.com/allenai/document-qa/issues/50", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
2391822907
Inference on Single Image Hi Piper, It's great to see such an amazing work is publicly available. However, When I run inference on test_set provded it worked perfectly. However, when I downloaded a single sentinel 2 L1C image, and running the inference on it using the weights provided for single image. I am getting. Running inference on 0 images. infer_example.yml.txt Hello! Thanks for your interest in our work. If the code is not finding any images, that likely means your filepath structure is not the same as the provided test set. Could you add some print statements to your code so we can see what your filepath is versus what the code expects? Hi, Kindly find the screenshot of the output. Is there are any other pre-prcoessing steps involved which i may have missed which can cause this issue. My input File after passing it through, https://github.com/allenai/satlas-super-resolution#how-to-process-raw-sentinel-2-data However, as it was pesudocode, i modified it, here i am also attaching that for the reference `import rasterio import numpy as np from rasterio.warp import reproject, Resampling Path to the Sentinel-2 JP2 file tci_jp2_path = './delhi_test.jp2' Open the Sentinel-2 image with rasterio.open(tci_jp2_path) as src: # Read the entire image as numpy array img = src.read() meta = src.meta.copy() # Define target CRS and resolution dst_crs = rasterio.crs.CRS.from_epsg(3857) dst_resolution = (9.555, 9.555) # Reproject the image img_rep = np.zeros((src.count, int(meta['height']), int(meta['width'])), dtype=img.dtype) for band_idx in range(src.count): reproject( source=rasterio.band(src, band_idx + 1), destination=img_rep[band_idx], src_transform=src.transform, src_crs=src.crs, dst_transform=src.transform, dst_crs=dst_crs, resampling=Resampling.bilinear ) Update metadata with new CRS and resolution meta.update({ 'crs': dst_crs, 'transform': rasterio.transform.from_origin(src.bounds.left, src.bounds.top, dst_resolution[0], dst_resolution[1]) }) Write the reprojected image to a new JP2 file output_path = tci_jp2_path.replace('.jp2', '_rep.jp2') with rasterio.open(output_path, 'w', **meta) as dst: dst.write(img_rep) print(f"Reprojected image saved: {output_path}") ` Ah, I see. That section of code is just meant to document how to project raw Sentinel-2 images to Web-Mercator projection. Then you need to format the imagery as described here. So the imagery should be saved as [num_s2_images * 32, 32, 3] shaped pngs. I will make the documentation clearer. Hi, This is my code to format the image as you mentioned: import skimage.io import numpy as np import glob import os # Path to the directory containing images image_dir = '/home/rd/Documents/projects/SATLAS/testing/' # Replace with your folder path # Get a list of all image files in the directory image_paths = glob.glob(os.path.join(image_dir, '*.png')) # You can adjust the file extension if needed # Read each image and convert it to a NumPy array images = [] for image_path in image_paths: image = skimage.io.imread(image_path) image_np = np.array(image) images.append(image_np) # Stack all images along a new axis to create a single 4D array images_array = np.stack(images, axis=0) # Print the shape of the combined array print(f"Combined images array shape: {images_array.shape[0]}") reshape_arr = np.reshape(images_array, (images_array.shape[0]*32, 32, 3)) # reshape this array so we can save it as a png skimage.io.imsave('testing.png', reshape_arr) I have tried with 2 images as well, and the stacked output generated by the code is as follows: I also played around i.e. tested all permutations of N_LR, N_CH, and model weights in Infer_Example.yml, such as: N_LR: 1 or 2, N_CH, 3 or 6, Model_Weights: esrgan_1S2.pth or esrgan_2S2.pth . However, When I run the inference I am still getting: Running inference on 0 images The reason the code would print out "Running inference on 0 images" is the glob statement here. This means that your directory structure is not as this glob statement expects and/or your image filepaths do not match the expected ".png". You want to edit the code or edit your data directory structure so that pngs is a list of filepaths of your Sentinel-2 images. Does that make sense? Hi, Yeah I figured it out, Sorry I forgot to update over here. The code is working now. Thanks for your quick responses. :) . However, when i run inference on URBAN Areas, the model is unable to generate satisfactory results. However, the linear features are getting worked out. Lodz where model worked great. However, when I tried another area of lodz it again kind of hallucinated. Could you shed some light on it. And what all the steps will be required to re-train the model on Sentinel Vs SKYSAT. How many Sentinel-2 images did you use as input for these outputs? I have seen plenty of hallucinations in places that look far different from the USA and/or when I only us 1-4 images as input. There is certainly room for improvement in locations that the model has never seen before. To re-train the model on SKYSAT, you will want to structure a dataset in the same way as our S2NAIP, write a dataset file to replace s2-naip_dataset.py that will load in your intended inputs and outputs ideally in the same format as S2NAIP, write a config file with updated paths to your data and any other variables that need to be changed, and finally start training with python -m ssr.train -config your_config. I found that using the pretrained satlas-super-res weights transferred to other datasets improved performance, so might be worth trying to start your training from there. Hi @piperwolters and @lokeshsk Could you check my issue https://github.com/allenai/satlas-super-resolution/issues/45? Thanks
gharchive/issue
2024-07-05T05:12:04
2025-04-01T06:37:48.078891
{ "authors": [ "lokeshsk", "piperwolters", "rose-jinyang" ], "repo": "allenai/satlas-super-resolution", "url": "https://github.com/allenai/satlas-super-resolution/issues/36", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1847311859
🛑 Indian Creek is down In 672cef9, Indian Creek (https://indiancreekcommunity.org) was down: HTTP code: 0 Response time: 0 ms Resolved: Indian Creek is back up in 0be32cc.
gharchive/issue
2023-08-11T19:19:51
2025-04-01T06:37:48.083607
{ "authors": [ "alliancewebteam" ], "repo": "alliancewebteam/Uptime", "url": "https://github.com/alliancewebteam/Uptime/issues/89", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
265519790
nginx log_format for NCSA w/ Virtual Host I'm using the default nginx log_format currently: log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; What needs to be added to this (I tried adding $host at the start before $remote_addr but it still didn't like it) in order to use the NCSA /w Virtual Host option? Thanks! :) Please post a few lines from your access log in order to determine goaccess log format. You can also try this script to find this out. 00.000.000.00 - - [14/Oct/2017:18:53:16 -0400] "GET REDACTED HTTP/2.0" 200 905 "REMOVED REFERRER" "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36" This is my current format. :) Ah, I've resolved the issue just now myself, was missing the expected : after the VHOST. :)
gharchive/issue
2017-10-14T20:04:09
2025-04-01T06:37:48.109822
{ "authors": [ "allinurl", "kawaii" ], "repo": "allinurl/goaccess", "url": "https://github.com/allinurl/goaccess/issues/916", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
375436346
Support for 3d party middleware It looks like Starlette's middleware that is designed to be framework agnostic. It would be interesting to see if we can fit that in Asgish somehow. Perhaps @tomchristie has some remarks/tips? See https://www.starlette.io/middleware/#using-asgi-middleware-without-starlette Example: import asgish from starlette.middleware.trustedhost import TrustedHostMiddleware @asgish.to_asgi async def main(request): return f"<html>You requested <b>{request.path}</b></html>" main = TrustedHostMiddleware(main, allowed_hosts=['example.com']) if __name__ == '__main__': asgish.run(main, 'uvicorn', 'localhost:8080') In starlette we also add some syntactic sugar if you're adding middleware to an Starlette application instance, so we have... app = Starlette() app.add_middleware(TrustedHostMiddleware, allowed_hosts=['example.com']) You could do something similar in asgish if you wanted, eg... import asgish from starlette.middleware.trustedhost import TrustedHostMiddleware @asgish.middleware(TrustedHostMiddleware, allowed_hosts=['example.com']) @asgish.to_asgi async def main(request): return f"You requested {request.path}" if name == 'main': asgish.run(main, 'uvicorn', 'localhost:8080') Thanks for that! I will have a stab at this soon :) This was easy: https://github.com/almarklein/asgish/blob/master/examples/example_middleware.py 👍
gharchive/issue
2018-10-30T11:15:06
2025-04-01T06:37:48.121549
{ "authors": [ "almarklein", "tomchristie" ], "repo": "almarklein/asgish", "url": "https://github.com/almarklein/asgish/issues/20", "license": "BSD-2-Clause", "license_type": "permissive", "license_source": "github-api" }
2656897173
Update containers.go Added a new label tsdproxy.container_host. This should be the same as the container name, and Docker DNS will resolve it. If this label is present then it overrides the value of container.TargetHostname. Doing this way makes sure that the dashboard works when this label is not present. Both containers must be under the same network. Tested and works. Solves https://github.com/almeidapaulopt/tsdproxy/issues/18 and implements https://github.com/almeidapaulopt/tsdproxy/pull/32#pullrequestreview-2433318049 This looks like the cleanest solution for me, thanks! Tested and working for me too! I've made a different approach with in next branch. If you want you can try using: image: almeidapaulopt/tsdproxy:next . I've made a different approach with in next branch. If you want you can try using: image: almeidapaulopt/tsdproxy:next . Do you have instructions on how this could be tested?
gharchive/pull-request
2024-11-13T21:41:33
2025-04-01T06:37:48.131039
{ "authors": [ "Hujgo", "Korveck14", "Red5d", "Toomblr", "almeidapaulopt" ], "repo": "almeidapaulopt/tsdproxy", "url": "https://github.com/almeidapaulopt/tsdproxy/pull/38", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
216935561
Add Company to user profile RHD profiles have an optional field Company, could we add that to the User profile we store please? /cc @VineetReynolds could you shepard this through the various stages please? We currently don't receive this field from RHD. So, it will require RHD to start mapping this field to a claim in the access token, so we can re-use it. I will ask RHD team if this is something they can do for us. Thanks, @alexeykazakov - we will need this in or around May. We now have "company" claim in our KC tokens + in userinfo payload. It Initially comes from RHD. It's not critical right now but @sbose78 please add this to our user profile when you done with critical issues/tasks. We also need to make sure it's updated well on our side and not overridden by RHD when re-login. Thanks @alexeykazakov , We also need to make sure it's updated well on our side and not overridden by RHD when re-login. I think this is where fullName,email gets updated from the claims info. https://github.com/almighty/almighty-core/blob/master/login/service.go#L640 In that case, should we not let the same to happen for company as well? @sbose78 yes. Just make sure we sync company attributes in our DB and KC properly as we do for others.
gharchive/issue
2017-03-25T00:35:00
2025-04-01T06:37:48.151569
{ "authors": [ "alexeykazakov", "pmuir", "sbose78" ], "repo": "almighty/almighty-core", "url": "https://github.com/almighty/almighty-core/issues/1052", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
539032970
Add support for High Power Support high power variant Support power level settings by user I've been working on the high power stuff for a couple days, I'll eventually send out a pull request. I also managed to get my rfm69 fork to to communicate with a Feather M0 (the Feather is using RadioHead). If you wanna take a look it's over here, I'm sure it'll need to be cleaned up a little. Just tell me what you want done and I'll correct it. Hello, thank you for working on this. I will definitely take a look. What is required in addition to have it communicate with Feather M0? If it is just matter of settings I was planning to have RadioHead defaults the same way as there is already low_power_labs_defaults. The spacing is off, but here's what I'm using. I believe the only difference is RadioHead sets the FIFO level to 15. So it's basically the sync words, node and broadcast addresses. Looks pretty good, if you don't mind would you open PR for that as well? Sure, it'll be a few days. I also saw a couple warnings that I need to fix. I haven't forgotten about this, just need a bit more time. Also what do you think about merging in the packet thing you wrote in one of the examples?, maybe we could add it as a feature? I haven't forgotten about this, just need a bit more time. No worries we don't have to rush it. Also what do you think about merging in the packet thing you wrote in one of the examples?, maybe we could add it as a feature? I haven't really thought about that, but if someone finds it useful why not. Once again I'm still gonna finish that pull request. Off-topic: I just ordered an RC airplane. I'm gonna see if I can use the RFM69HCW to control it. From what I've read I should be able to get ~500m or so which would be great. Once again I'm still gonna finish that pull request. Off-topic: I just ordered an RC airplane. I'm gonna see if I can use the RFM69HCW to control it. From what I've read I should be able to get ~500m or so which would be great. Ok I accidentally closed the pull request, but I am done minus actually testing the physical devices. I'll do another pull request once I confirm everything works. Did this ever get merged? I'd be interested in leveraging the high power mode if it's already been implemented, or I could also help to finish the implementation, if it still needs some work. Did this ever get merged? I'd be interested in leveraging the high power mode if it's already been implemented, or I could also help to finish the implementation, if it still needs some work. Hi, there is no PR to merge. And the high power is not currently implemented. I would be interested in adding this, if you're open to a contribution for this. I think it could work the same way the API for the radiohead library works. Like this ... fn set_tx_power(power_level: u8, is_high_power: bool) { // Validate if this is a high power model? // Set the power level } ... I don't have a hw to test it out, however I'm open to any contribution.
gharchive/issue
2019-12-17T12:22:12
2025-04-01T06:37:48.173097
{ "authors": [ "Cightline", "almusil", "whatisbyandby" ], "repo": "almusil/rfm69", "url": "https://github.com/almusil/rfm69/issues/4", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1515555885
🛑 my portfolio is down In eb4754c, my portfolio (https://design.beloglazkin.online) was down: HTTP code: 0 Response time: 0 ms Resolved: my portfolio is back up in 4ad33f7.
gharchive/issue
2023-01-01T13:13:01
2025-04-01T06:37:48.175754
{ "authors": [ "alnat2" ], "repo": "alnat2/uptimer", "url": "https://github.com/alnat2/uptimer/issues/14", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
373493927
Refactor on_page_search_rate As suggested in this comment Use metric values to stop us from needing to format the human readable version of them before using for calculations. (1) Page data - fix % of users searched the page in the at a glance metrics
gharchive/pull-request
2018-10-24T13:50:57
2025-04-01T06:37:48.337006
{ "authors": [ "KyleMacPherson" ], "repo": "alphagov/content-data-admin", "url": "https://github.com/alphagov/content-data-admin/pull/152", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
567074773
Make modals less verbose for screen readers In #1300 we enabled aria-label on modal dialogue component to make it less verbose. Because in Content Publisher we generate the modal dialogue content dynamically we'll need to set this property via JavaScript as part of the modalWorkflow logic. Trello card @ChrisBAshton I tried to address all your comments – good for a second review whenever you have time. Only thing that strikes me is we're guarding against one DOM query failing (if (this.$multiSectionViewer.querySelector('h1')), but not the other (this.$modal.querySelector('dialog')). Do we expect h1 to sometimes be missing, but dialog to always be present? If not I'd stick to one approach (though I'm not sure which I'd prefer!). The difference between them is that the <dialog> element is part of the component, so we have control over it, whereas the <h1> is retrieved via fetch from a view. In theory all of our templates should provide an <h1> but if for some reason it doesn't have one I'd like to avoid failing with a hard error.
gharchive/pull-request
2020-02-18T18:23:20
2025-04-01T06:37:48.340091
{ "authors": [ "alex-ju" ], "repo": "alphagov/content-publisher", "url": "https://github.com/alphagov/content-publisher/pull/1788", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
826527790
Convoluted approach to changing local transaction error message copy Trello: https://trello.com/c/BgI9a1t3/205-local-lookup-says-no-create-better-were-not-sure-if-this-council-offers-this-service-copy ⚠️ This repo is Continuously Deployed: make sure you follow the guidance ⚠️ This PR changes the renderings of errors when a local authority doesn't have a service, while also cleaning up some things to make this simple change possible. Before: After: The other things this PR does is: It removes the usage of LocationError to handle cases where a local authority is missing a service. This made making changes harder and already seemed a rather uneasy fit as the conditionals were somewhat bent around it Removes an ActiveSuport::Notifier event for logging postcode errors, it hadn't worked since 201 More details in the commits Thanks for the review @Rosa-Fox, I've addressed the comments.
gharchive/pull-request
2021-03-09T19:39:49
2025-04-01T06:37:48.343897
{ "authors": [ "kevindew" ], "repo": "alphagov/frontend", "url": "https://github.com/alphagov/frontend/pull/2659", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
267673361
Add an RDS replica to Transition PostgreSQL database Bouncer uses the database secondary (here, standby) to read its data, so we set one up. This seems to plan correctly. This seems to create a full new RDS instance rather than a secondary. See here for setting up a standby. I did the thing in the link first, following your PR to add replicas to app-postgresql, and then wondered why there were so many more options and thought I'd done it wrong so started again. I'll do it again again. 😪 @surminus I just re-did this. :-)
gharchive/pull-request
2017-10-23T13:43:49
2025-04-01T06:37:48.346242
{ "authors": [ "issyl0", "surminus" ], "repo": "alphagov/govuk-aws", "url": "https://github.com/alphagov/govuk-aws/pull/330", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2453821177
Arrange accommodation for non gov speakers What Accommodation for 1 day for speakers if required Why To keep our costs down and within budget, we will organise accommodation for non-gov speakers Who needs to work on this Ciandelle, Nora Who needs to review this Done when [ ] Contact non-gov speakers for accommodation requirements [ ] Book accommodation via Nora [ ] notify individuals of booking Ciandelle will send emails to non-gov speakers if accommodation required Alexandra & 3rd panel member Booked for Chikako Masuda Emails sent to Alessandra Ballina and Chris Lightfoot, asking if they want accommodation for one night 1 night booked Chika Masuda £88 1 night booked Chris Lightfoot £88 1 night booked Alessandra Balliana £132 @NoraGDS to change Chris Lightfoot's accommodation for Zainab Daodu all non-gov speakers are now booked
gharchive/issue
2024-08-07T15:53:53
2025-04-01T06:37:48.350371
{ "authors": [ "Ciandelle", "Kam-Nijjar" ], "repo": "alphagov/govuk-design-system", "url": "https://github.com/alphagov/govuk-design-system/issues/3988", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
437074922
Add ability to override or remove Open Graph meta tag in Template At the moment meta property="og:image" in Template has a hardcoded image path, user should be able to override the image path in the meta tag. User need explained here: https://github.com/alphagov/govuk_template/issues/137 Split from: https://github.com/alphagov/govuk-frontend/issues/971 Part of https://github.com/alphagov/govuk-design-system/issues/777 Who needs to know about this Developer, Mark to review Needed as part of https://github.com/alphagov/govuk-design-system-backlog/issues/185 Needed as part of https://github.com/alphagov/govuk-design-system-backlog/issues/185 Proposed solution I think we should solve this with a breaking change: {% if openGraphImageUrl %} <meta property="og:image" content="{{ openGraphImageUrl }}"> {% endif %} We would only set the Open Graph image meta tag if user passes through their own absolute URL - we obviously can't know if the URL is absolute but the requirement should be made clear in the guidance. Whilst the current code allows assetUrl to fall back to using assetPath, this will only work if the assetPath happens to be an absolute URL. It's not clear this happens and going by the discussion in https://github.com/alphagov/govuk-frontend/pull/847, this was mostly implemented so that we could avoid making a breaking change. This would also allow for the removal of the meta tag entirely if openGraphImageUrl is not set. This would also be a good chance to make assetUrl a bit more descriptive and call it something like openGraphImageUrl. Alternative non-breaking solution <meta property="og:image" content="{{ assetUrl | default('/assets') }}/{{ opengraphImagePath | default('images/govuk-opengraph-image.png') }}"> This would add a new option opengraphImagePath whilst retaining assetUrl allow the user to do one of the following options: Set the entire absolute url eg. https://domain.com/my-images/article-image-2019.png Set only the domain url https://domain.com, which gets combined with 'images/govuk-opengraph-image.png' Setting assetPath to an absolute URL which cascades to assetUrl and is combined with ‘'images/govuk-opengraph-image.png’ But it feels confusing to have to use two variables to set one thing, making it harder to explain in the guidance. The naming is also a bit weird since assetUrl is not very descriptive so it wouldn't be clear how it works with something like opengraphImagePath. This approach also wouldn't allow the removal of the meta tag entirely so we'd have to consider another boolean option that would remove the meta tag which wouldn't be ideal. I really like your investigation and the options are super clear thanks for doing that Hanna. I believe that GOV.UK does override this meta tag by making use of the head block since the first instance of the metatag is what is used. You can see this change in the original GOV.UK Template project: https://github.com/alphagov/govuk_template/commit/204ee88e2c87e7e6db2aa61bf10659c8fdee2c69 With this in mind I would suggest we close this for now and see if anyone runs into any problems with using this approach: {% block head %} {{ super() }} <meta property="og:image" content="path/to/my/custom/image.png"> {% endblock %} Thanks @nickcolley 👍 It's possible to include the meta tag in the head block but I think this is now slightly hacky for the current Design System since we already have a documented option assetUrl which is used to "Specify an absolute URL for the <meta property="og:image"> tag image asset." We haven't documented having to use the head block to override the meta tag there and there isn't a clear way for users to discover this option. I think the cleanest and from the user's point of view clearest thing to do would be to do a breaking change. It would also allow for the removal of the meta tag by the user which is a requirement of this card and which can't be achieved cleanly by using the head block (unless you include the meta tag in head but leave the URL empty which feels messy and could have its own problems). Okay I’ve tried to document this in https://github.com/alphagov/govuk-design-system/pull/1072. I still think that having two different ways of dealing with the tag (use assetUrl or set in head) depending on what you need to do could be confusing but will ask Mark to have a look at helping us to write this for the docs. We still won’t be a able to remove the Open Graph tag but let’s address that if it comes up.
gharchive/issue
2019-04-25T08:37:54
2025-04-01T06:37:48.363714
{ "authors": [ "aliuk2012", "hannalaakso", "nickcolley" ], "repo": "alphagov/govuk-frontend", "url": "https://github.com/alphagov/govuk-frontend/issues/1289", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2219813492
[WIP] [SPIKE] Replace header with GOV.UK One Login header This provides a base to work off. Still to be done Get the JS working Make everything fit in with govuk-frontend standards a bit more? I have started to look at the accessibility of the kitchen sink header. I haven't done any testing yet but have looked through the code. (I will do the testing either later today or on Wednesday and then add the results here.) As this is not production code yet, none of the below needs to necessarily be fixed before the working group review. But it would be good to make them aware of them. Language switcher The language switcher should be a button (or have a role=button with the corresponding JavaScript). The language switcher doesn't say what it is and what it does. It's label is currently just "English" (or "Current language: English" for screen reader users, plus that it's expandable). I'd say that doesn't describe "topic or purpose" well enough. We should think about adding something that says it's about the language (icon and/or words), especially for users with cognitive impairments. The fact that it's expandable is probably conveyed well enough with the chevron and aria-expanded. It would be good to confirm with user research. I wonder if it might be worth calling the language switcher area out as its own landmark. But I'm not sure about that. Main navigation The active item in the main navigation should have an aria-current attribute. If it should be set to 'page' or just 'true' depends on if the active item is active because we're on that exact page or if we're on a child page that is under that parent page. (Do we know that already? I suspect we'll give guidance for both cases?) Although that could also be solved by adding a visually hidden "Current page: " or similar before the item. Something not necessary as I seem to be the only person on this planet doing this, but I like to add strong around an active item (just in the code, not visually) just so that people who use userstyles (or don't use styles at all, like Lynx users) also get the benefit of visually understanding that it's an active item. The label of the landmark is currently just "Menu". From what I understand this will pretty much always be the main menu? I would make the label more specific then, so "Main menu" or "Service menu". One Login navigation In the mobile view or when zoomed in, the trigger is very far away from the dropdown. This is likely to get missed by some magnification users. The mobile One Login trigger doesn't make it very clear what it is either. The label adds the word "menu" for screen reader users. But for visual users it looks nearly the same as the desktop version. The visual chevron might make it clear enough. That's maybe something to explore in user research as well. My thoughts. Notwithstanding any further changes, just rather how it ended up as it is. Language switcher The language switcher should be a button (or have a role=button with the corresponding JavaScript). Agreed. This was just a corner that was cut for the purposes of the spike. My thinking is that this will probably have to fallback to being a link for no-JS scenarios anyway, as the dropdown menu just won't work in that situation, similar to how GOV.UK's mega-menu works; but doing that also requires the service to provide a dedicated page to fall back to, which I feel very iffy about generally. The language switcher doesn't say what it is and what it does. Its label is currently just "English" (or "Current language: English" for screen reader users, plus that it's expandable). I'd say that doesn't describe "topic or purpose" well enough. We should think about adding something that says it's about the language (icon and/or words), especially for users with cognitive impairments. The fact that it's expandable is probably conveyed well enough with the chevron and aria-expanded. It would be good to confirm with user research. Also agree. It seems commonplace for language switcher interfaces (including virtually all of them on GOV.UK and other public service websites) to display the currently in-use language (or alternate language, in the case of toggles) rather than using explicit labelling like "Select language", so I tried to stay within that kind of wheelhouse. I considered making the screen reader text be something like "Change language. Current language: English" but was worried about that being too verbose. I also considered using iconography to make it more visually distinct, but Frontend's general 'phobia' of using icons, plus there being (in my experience) no universally accepted icon representing languages or translations meant I didn't pursue it. I wonder if it might be worth calling the language switcher area out as its own landmark. But I'm not sure about that. Can do! I assume this is a use case for role="region" (probably needing an aria-label too, as we have no distinct heading to reference?) Main navigation The active item in the main navigation should have an aria-current attribute. If it should be set to 'page' or just 'true' depends on if the active item is active because we're on that exact page or if we're on a child page that is under that parent page. (Do we know that already? I suspect we'll give guidance for both cases?) Although that could also be solved by adding a visually hidden "Current page: " or similar before the item. I omitted adding aria-current as I was unsure whether it could be used for child pages of the navigation item. If using true is allowed for that situation, I can default to that, though I'm not sure how easy it will be to know whether it should be true or page. It will probably have to be up to authors to decide which one is the correct one to use for the current situation. Something not necessary as I seem to be the only person on this planet doing this, but I like to add strong around an active item (just in the code, not visually) just so that people who use userstyles (or don't use styles at all, like Lynx users) also get the benefit of visually understanding that it's an active item. We can probably do that without too much faff, sure. The label of the landmark is currently just "Menu". From what I understand this will pretty much always be the main menu? I would make the label more specific then, so "Main menu" or "Service menu". This is carried over from the existing header component, which just uses "Menu". I guess if we also have the One Login menu we'd want to differentiate it from that? One Login navigation In the mobile view or when zoomed in, the dropdown is very far away from the trigger. This is likely to get missed by some magnification users. This is carried over from the One Login header, though this is also true of the present Design System header component. Having the toggle on the right and menu items on the left seems a common enough pattern across responsive websites that I'm curious if it actually does present an issue to magnification users or is at worst an annoyance. I'm a little hesitant to change anything with that, if just that I'm not sure what 'better' would look like in this case (Move the menu dropdown to below the logo? Make the navigation items right-aligned? Use visuals to connect them together somehow?) The mobile One Login trigger doesn't make it very clear what it is either. The label adds the word "menu" for screen reader users. But for visual users it looks nearly the same as the desktop version. The visual chevron might make it clear enough. That's maybe something to explore in user research as well. Also carried over from the One Login header, and also not sure what might be an improvement here. There is unfortunately not a lot of free space here on mobile screens, so any visible label longer than "One Login" isn't guaranteed to fit on those narrow viewports. Unrelatedly, I find it very weird that One Login opted to place the chevron to the left of the label here, when these are pretty much universally on the right otherwise. I'd like to know what the reasoning behind that was. Header kitchen sink made me burst out laughing, bravo 👏👏👏 Closing this spike as it's now served its purpose. We'll be iterating upon this concept in a new branch. Sorry, I know this is over 3 weeks old. I just wanted to comment on one particular thing. And doing it here (even though the PR is closed) seems to fit better than doing it elsewhere without the context. I omitted adding aria-current as I was unsure whether it could be used for child pages of the navigation item. If using true is allowed for that situation, I can default to that, though I'm not sure how easy it will be to know whether it should be true or page. It will probably have to be up to authors to decide which one is the correct one to use for the current situation. I'm actually not too sure about the use of aria-current myself. The ARIA spec definitely doesn't make any distinction between being on the current page or within sub pages of the current page. I assume when aria-current was created that this was not thought about. That means the main question is what users expect when they encounter it. I tried to search for an answer to that (3 weeks ago) and couldn't find anything. I will try to dig a bit deeper. But my assumption is that having something that is sort of the ARIA equivalent of that visual highlighting is better than having no equivalent, even if that might not be 100% correct because the actual equivalent is missing from the ARIA spec.
gharchive/pull-request
2024-04-02T07:50:34
2025-04-01T06:37:48.382637
{ "authors": [ "domoscargin", "querkmachine", "selfthinker", "stevenjmesser" ], "repo": "alphagov/govuk-frontend", "url": "https://github.com/alphagov/govuk-frontend/pull/4915", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
337494626
Update date input component This PR: Extends the input width classes to cover 2 to 5 characters so it can be reused for the date-input component defines a relationship between the number of characters and maximum ex width of an input keeps the extra space for safari prefill icon on large inputs (10, 20, 30) Updates the date-input component to: decouple item name from style (fixes #836) decouple the component name from the item name and item id (covers the work proposed by @lhokktyn in #826) Adds default date-input items if no items are being specified (fixes #468) awesome work! 🎆 I wonder if input changes and date input changes could be separate PR's (dependency)? @igloosi: I didn't want to introduce dependencies between the PRs, but if that makes more sense I can split them up true, if we we're going breaking at some point should be fine, as this PR has both new features and breaking changes
gharchive/pull-request
2018-07-02T12:19:09
2025-04-01T06:37:48.387160
{ "authors": [ "alex-ju", "igloosi" ], "repo": "alphagov/govuk-frontend", "url": "https://github.com/alphagov/govuk-frontend/pull/857", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1007806806
Rename check-your-answers.html to check-answers.html Fixes #804. This PR changes the file title of our check-your-answers.html template to check-answers.html. This is to mirror the name of the pattern in the Design System. Closing this as it dupes #1088.
gharchive/pull-request
2021-09-27T07:38:58
2025-04-01T06:37:48.389326
{ "authors": [ "EoinShaughnessy" ], "repo": "alphagov/govuk-prototype-kit", "url": "https://github.com/alphagov/govuk-prototype-kit/pull/1094", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
461459486
Update deprecation_message.html Updating the deprecation notice to include information about accessibility updates. can we also update the message in the README file?
gharchive/pull-request
2019-06-27T10:52:16
2025-04-01T06:37:48.390194
{ "authors": [ "amyhupe", "kr8n3r" ], "repo": "alphagov/govuk_elements", "url": "https://github.com/alphagov/govuk_elements/pull/621", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
490326831
Version 20.2.1 20.2.1 Improve chevron banner component (PR #1098) Add input style override override (PR #1099) Snap! No worries, I'll close mine
gharchive/pull-request
2019-09-06T13:26:09
2025-04-01T06:37:48.391808
{ "authors": [ "andysellick", "vanitabarrett" ], "repo": "alphagov/govuk_publishing_components", "url": "https://github.com/alphagov/govuk_publishing_components/pull/1101", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
346185211
Changes required when there are only one "part of" step by step navs Adds styling for singular related step by step navs Changes Increase size of font to be the same size as the step by step headings Increase the margin-top for the "part of" text to $gutter-two-third Decrease the margin-bottom for the "part of" text to $gutter-one-quarter Decrease the margin-bottom of step by step title to $gutter-one-third + 3 Notes: Change number 4 is being done as there is a padding of 7px on the show all button which makes the margin-bottom seem much larger. This should not affect cases where there are multiple step by steps. Ticket: https://trello.com/c/zlQ0Go3P/700-fix-the-step-by-step-title-sizing-and-spacing-on-mobile-when-it-appears-as-a-footer-s Screenshot Component guide for this PR: https://govuk-publishing-compon-pr-458.herokuapp.com/component-guide/step_by_step_nav_related @andysellick - updated
gharchive/pull-request
2018-07-31T13:22:29
2025-04-01T06:37:48.395844
{ "authors": [ "DilwoarH" ], "repo": "alphagov/govuk_publishing_components", "url": "https://github.com/alphagov/govuk_publishing_components/pull/458", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
155759112
Clear environment before running PR specs. What Without this the tests will fail if you have GITHUB_API_TOKEN set in your environment as the test expectations won't match the requests that are actually made. How to review Ensure that the Travis build passes. Set GITHUB_API_TOKEN to something in your local environment, and verify that the tests still pass. Who can review Anyone but myself. works...
gharchive/pull-request
2016-05-19T15:01:47
2025-04-01T06:37:48.397775
{ "authors": [ "alext", "mtekel" ], "repo": "alphagov/paas-cf", "url": "https://github.com/alphagov/paas-cf/pull/276", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
147037633
[CLOSED] Add script to rename content design manual Issue by kalleth Friday 03 October 2014 at 11:04 GMT Originally opened as https://github.com/alphagov/specialist-publisher/pull/267 This migration depends on the old content design manual having been removed first. Once it has been and the slug is available, the migration can be run to rename the content-design-manual's slug. TODO before merge [x] Deploy https://github.com/alphagov/specialist-publisher/pull/265 [x] Run script to remove current guidance/content-design manual. kalleth included the following code: https://github.com/alphagov/specialist-publisher/pull/267/commits Comment by evilstreak Friday 03 October 2014 at 12:06 GMT Since this is a one shot thing, why not do it as a migration? Comment by kalleth Friday 03 October 2014 at 12:07 GMT Could do, I guess. I figured the same reasoning applied -- didn't want to do it as part of a deploy then it get rolled back and re-run if the deploy had to be rolled back for any reason. Comment by kalleth Friday 03 October 2014 at 13:40 GMT @evilstreak I've converted it to a migration in 12ac2c2 -- I'll rebase the commits together if you think this is a better approach. I have no strong feelings either way. Comment by evilstreak Friday 03 October 2014 at 15:30 GMT :+1: Good to merge once the checklist is done
gharchive/issue
2016-04-08T20:55:25
2025-04-01T06:37:48.407912
{ "authors": [ "benilovj" ], "repo": "alphagov/specialist-publisher-rebuild", "url": "https://github.com/alphagov/specialist-publisher-rebuild/issues/267", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
221020539
Change how the Emergency Banner is deployed Trello cards: https://trello.com/c/2D0KFQZP https://trello.com/c/EPTEOgHJ https://trello.com/c/EPTEOgHJ https://trello.com/c/3eq0AeHA Related PRs: https://github.com/alphagov/govuk-puppet/pull/5734 https://github.com/alphagov/govuk-puppet/pull/5760 https://github.com/alphagov/frontend/pull/1208 Context The emergency banner implementation has been re-written so that instead of using a fabric script to add content to some partials in Frontend and Static, we will instead populate a hash in Redis with the values needed for the emergency banner. This will mean that should we need to deploy an emergency banner, Static and Frontend deploys are no longer blocked. We have chosen to store the values in Redis rather than another datastore because all applications can access the same Redis environment, so Frontend and Static don't need to keep separate stores for the Emergency Banner values, they can share the same ones. The Implementation Add the Redis gem to both Frontend and Static Static retrieves a emergency_banner hash from Redis and uses it to determine whether to display the emergency banner Create two emergency banner partial templates, one for the homepage and the other for all other pages. Populate them with the contents of the emergency_banner hash from Redis. Create two tasks, one to set values in the emergency_banner hash in Redis and the other to delete the hash Future work Future work will remove the current implementation of the emergency banner code which relies on empty partials that are populated by a fabric task. Can i ask what alternative approaches to this where thought of for this? We looked at using ESI in Fastly but it doesn't support including from outside our infrastructure, which would have been the main benefit. There will be a writeup after the blitz of the other options we discussed.
gharchive/pull-request
2017-04-11T17:12:56
2025-04-01T06:37:48.413445
{ "authors": [ "boffbowsh", "leenagupte", "mcgoooo" ], "repo": "alphagov/static", "url": "https://github.com/alphagov/static/pull/1000", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
186916036
No dataset found for examples Hey Maruan, when I call gp_lstm_actuator.py from the examples directory, I get: "Cannot find DATA_PATH variable in the environment. " Exception: Cannot find DATA_PATH variable in the environment. DATA_PATH should be the folder that contains `sysid/` directory with the data. Please export DATA_PATH before loading the data. which I take to mean either 1. I didn't download the actuator data and need to, or 2. The setup script downloaded the data but didn't set the DATA_PATH In any case, can you comment on where this data might reside, and what the folder structure should look like to run the examples? Thanks! Hi the following worked for me get actuator.mat from http://www.iau.dtu.dk/nnbook/systems.html make sysid directory in kgp/kgp/datasets/ ( i.e. kgp/kgp/datasets/sysid/) load the mat file in python and save it as actuator.pkl (I have to save 'u' as 'X' and 'p' as 'Y') in this directory kgp/datasets/sysid/ set your environment variable DATA_PATH to point to kgp/kgp/datasets (full path) Thanks! I wrote a little script to transform the mat file, but it is trivial: import scipy.io as sio import cPickle data = sio.loadmat('actuator.mat') X = data['u'] Y = data['p'] newdata = {} newdata['X'] = X newdata['Y'] = Y f = file('actuator.pkl', 'wb') cPickle.dump(newdata, f, protocol=cPickle.HIGHEST_PROTOCOL) f.close() but that (of course) just dumps to the local directory (so you have to mkdir the sysid folder structure first and use it there). Better yet would be to use something like the above and also get the data automatically: import urllib urllib.urlretrieve("http://www.iau.dtu.dk/nnbook/Files/actuator.mat","actuator.mat") and run this in the setup file (with constructing the directory folder structure). Let me know if you'd think this would be helpful (I could write a PR for it). Also, I am currently running the example on my mac (10.11.6 El Capitan), so if you'd like setup instructions for doing so, I could provide them in the PR. Dan Dan, Alexis, thanks for bringing this up. Sorry for the DATA_PATH-related issue -- on my machines, I usually keep all the data in a dedicated folder to which DATA_PATH is pointing. I agree that for the examples such a set up is an overkill and shouldn't be a requirement. Dan, thanks for the code snippets. Similarly to what you suggested, I will update the data utils to allow automatic data retrieving in case it is not found. It's a little bit trickier when you want to support both Python 2 and 3, since pickle formats differ. I will push the updates during the coming week. You are more than welcome to open a PR with the setup instructions for mac. Hey Maruan, I run the programs in example directory, the same error occurs in each program "Cannot find DATA_PATH variable in the environment. DATA_PATH should be the folder that contains kin40k/ directory with the data. Please export DATA_PATH before loading the data " i cannot download any data from the example, could you tell where and how can i get those needed data? @XYLee01, examples that use sysid data should run (they automatically retrieve and preprocess the data). If you want to run examples on kin40k, the data loader assumes that you already have that dataset (and DATA_PATH should correctly point to it). You can download kin40k data from Andrew Wilson's page (also, follow the instructions there on how to preprocess the dataset). Of course, it would be nice to have an automatic data loader for kin40k that takes care of all preprocessing. I very much welcome contributions!
gharchive/issue
2016-11-02T20:48:54
2025-04-01T06:37:48.518254
{ "authors": [ "XYLee01", "alexisylchan", "alshedivat", "mathDR" ], "repo": "alshedivat/keras-gp", "url": "https://github.com/alshedivat/keras-gp/issues/1", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1174104300
🛑 roothouse-2 is down In 1f9fe3e, roothouse-2 (https://rhstatus-proxy.alterine0101.id/?deviceId=roothouse-2) was down: HTTP code: 404 Response time: 183 ms Resolved: roothouse-2 is back up in 17c4086.
gharchive/issue
2022-03-18T23:21:43
2025-04-01T06:37:48.533764
{ "authors": [ "reinhart1010" ], "repo": "alterine0101/roothouse-status", "url": "https://github.com/alterine0101/roothouse-status/issues/1112", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1674487708
🛑 GMS MSJ Admin Bot (@caps_gms_msj_bot) is down In 6ce8d0f, GMS MSJ Admin Bot (@caps_gms_msj_bot) (https://rhstatus-proxy.alterine0101.id/?deviceId=gms-msj-telegram-bot) was down: HTTP code: 0 Response time: 0 ms Resolved: GMS MSJ Admin Bot (@caps_gms_msj_bot) is back up in 89c8eb8.
gharchive/issue
2023-04-19T09:02:30
2025-04-01T06:37:48.536550
{ "authors": [ "1010bots" ], "repo": "alterine0101/roothouse-status", "url": "https://github.com/alterine0101/roothouse-status/issues/1527", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1127636637
Add validation to Age and AgeNullable Closes #877 I think we can also include AgeFractional in this PR
gharchive/pull-request
2022-02-08T18:53:26
2025-04-01T06:37:48.537395
{ "authors": [ "jeff-hernandez" ], "repo": "alteryx/woodwork", "url": "https://github.com/alteryx/woodwork/pull/1289", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
60274713
Если добавить фото в описание Блога Спасибо. Проверю чуть позже.
gharchive/issue
2015-03-08T20:32:33
2025-04-01T06:37:48.541774
{ "authors": [ "lsnull" ], "repo": "altocms/altocms", "url": "https://github.com/altocms/altocms/issues/374", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
829749180
Отвал BLE Андрей, поставил от 8.03. с IDF v4.4-dev-4-g73db14240, стабильный отвал BLE раз в сутки. Одновременно улучшил качество wifi. не помогло. Ребут досочки помогает. Может сделать "ночные ребуты" по расписанию ? У меня пока все нормально. Wifi правил в 9.03.2020. Если отвалы остались, придется поставить птичку в "BLE monitoring". Понял тебя. Я сегодня 9.03 поставил. Пока сутки не прошли. Отпишусь. А сколько устройств определено и подключено? У меня 3 и 2 на одном, 2 и 2 на другом. То есть скан постоянно не бегает, все соединилось и скан остановился. Может в этом дело. 1 устройство. 201 чайник, есть еще мультиварка но она кардинально не совпадает с твоей :) Только что залипла предыдущая версия с галкой BLE monitoring сейчас поставлю 2021.03.14. скажи как лог снять, сделаю. Если уарт слушать, то на таком удалении у меня не получится. чайник далеко от компа. Пока ничего не нужео. Нашли один баг в новой в4рсии. Может поможет. И добавил строку состояния скана, видна до соединения. По кинетикам, второй шлюз стоить в паре метров по за стеной. Знаю о том что можно указывать точку в меше, установил принудительно ближнего. Мультиварка SkyCooker M223S Андрей, последняя версия похуже будет в стабильности, 2 суток подряд отвалы. Версия от 25.03? В чем проблема, зависание бле, перезагрузка? Что показывает ble activity, scanning, idle? Пока жалоб на отвал бле не было. У меня 9 суток аптайм без отвалов, причем ble monitoring выключен. Код в последних версиях я не менял, только опции сборки. значит так совпало. Но галка стоит, чайник на базе, чайника не видит. Самая последняя, которая выложена сейчас. сейчас сутки вроде норм
gharchive/issue
2021-03-12T04:35:26
2025-04-01T06:37:48.551700
{ "authors": [ "alutov", "exotsk" ], "repo": "alutov/ESP32-R4sGate-for-Redmond", "url": "https://github.com/alutov/ESP32-R4sGate-for-Redmond/issues/37", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2413760059
ALVR Dashboard fails to start: Segmentation fault (core dumped) Description When trying to launch the alvr_dashboard binary it shows up for a second and then crashes returning in the console "Segmentation fault (core dumped)" the alvr dashboard used to do this all the time but i just had to start it multiple times back to back and then it worked but since I last updated ALVR it has stopped working for me. I've tested it with the latest nightly build and stable build both showing the same error. I have also tried building the packages from the AUR both stable and nightly and the same issue occurs General Troubleshooting [x] I carefully followed the instructions in the README and successfully completed the setup wizard [x] I read the ALVR GitHub Wiki Environment This is a Arch Linux system running the latest as of writting KDE desktop environment on Wayland Hardware Hardware the NVIDIA GPU with no driver is for my Windows virtual machine Installation ALVR Version:v20.9.1 and v21.0.0-dev01+nightly.2024.07.16 ALVR Settings File: I was unable to find my setting file SteamVR Version: 2.6.2 Install Type: I have tried compiling from source(from the AUR) i have tried to use the binaries on the github and I have tried the ALVR launcher. all with nightly and stable OS Name and Version (winver on Windows or grep PRETTY_NAME /etc/os-release on most Linux distributions): Arch Linux Backtraces I got these with the RUST_BACKTRACE=1 variable using the ALVR launcher Stable stable.log Nightly nightly.log Feel free to ask me if there is any more information you require Edit: I have been able to build both packages from the AUR (because I forgot to remove the debug version of alvr) but the same error still occurs and the main text has been updated to reflect that I have now been able to build the alvr-git package from the AUR without any problems occuring but it still fails to launch with the same "Segmentation fault (core dumped)" error (resolved in discord) Issue was related to some vulkan-radeon-git package, which forced alvr dashboard to launch through llvmpipe and fail to do so, dumping core.
gharchive/issue
2024-07-17T14:23:28
2025-04-01T06:37:48.594342
{ "authors": [ "FlorisTheBeast", "Meister1593" ], "repo": "alvr-org/ALVR", "url": "https://github.com/alvr-org/ALVR/issues/2262", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
770344333
README supports dynamic documentation Context jsii has a really cool feature where the example Typescript code in README is transformed into the target language at package/publish time. This mean NPM and PyPi will respectively show working TS and Python code examples. We need to play around that to ensure coherent installation steps and code samples are shown in the packages homepages. Tasks [x] Remove Typescript header [x] Have both npm and pip install [ ] GitHub README will still show default README, so we need to include a statement for specific python example Alternatives Have both TS and Python install/code samples. Will clutter README. Notes N/A re-opening because I missed the last step.
gharchive/issue
2020-12-17T20:26:04
2025-04-01T06:37:48.597538
{ "authors": [ "alvyn279" ], "repo": "alvyn279/aws-cdk-billing-alarm", "url": "https://github.com/alvyn279/aws-cdk-billing-alarm/issues/8", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
120636565
Возможность проброса дополнительных настроек курла Вот здесь, где устанавливаются настройки курла, нет возможности передать что-то своё. А это не гуд, мне например потребовалось установить CURLOPT_FOLLOWLOCATION. Предлагаю сделать проброс дополнительных настроек, код уже есть, ты как на это смотришь? Положительно, но решение из #3 считаю не правильным, потому что curl - это транспорт, и привязывать параметры транспорта к классу запроса кажется мне некрасивым Согласен, было бы более правильно, если бы в объект запроса передавался бы объект транспорта (с проставленными опциями). Но сейчас передается лишь константа для фабричного метода выбора используемого транспорта. Да и в целом, кроме курла ничего на данный момент не поддерживается. Так что как быстрый вариант - выбрал именно такой. Если все же когда-то появится второй транспорт - можно будет отрефакторить как я описал выше. Хотя, я так подумал, можно сделать лучше, без сильного рефакторинга. Давай я в класс запроса добавлю геттер для транспорта, тогда можно будет вызывать метод у самого транспорта. Да, так будет попизже Ребейзить? Я не против Готово v1.1.1
gharchive/issue
2015-12-06T14:07:20
2025-04-01T06:37:48.601226
{ "authors": [ "Aliance", "alxmsl" ], "repo": "alxmsl/Network", "url": "https://github.com/alxmsl/Network/issues/1", "license": "WTFPL", "license_type": "permissive", "license_source": "github-api" }
1685183368
🛑 fxkyss.com is down In e06f885, fxkyss.com (https://fxkyss.com) was down: HTTP code: 0 Response time: 0 ms Resolved: fxkyss.com is back up in 6ba5b9b.
gharchive/issue
2023-04-26T14:48:38
2025-04-01T06:37:48.633193
{ "authors": [ "alzee" ], "repo": "alzee/up", "url": "https://github.com/alzee/up/issues/1516", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1477474299
🛑 m.syzszz.cn is down In 8be4f61, m.syzszz.cn (https://m.syzszz.cn) was down: HTTP code: 0 Response time: 0 ms Resolved: m.syzszz.cn is back up in 04a8814.
gharchive/issue
2022-12-05T21:30:25
2025-04-01T06:37:48.636585
{ "authors": [ "alzee" ], "repo": "alzee/up", "url": "https://github.com/alzee/up/issues/674", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1489113351
🛑 m.syzszz.cn is down In 09531e6, m.syzszz.cn (https://m.syzszz.cn) was down: HTTP code: 0 Response time: 0 ms Resolved: m.syzszz.cn is back up in aee3c69.
gharchive/issue
2022-12-10T23:25:28
2025-04-01T06:37:48.639514
{ "authors": [ "alzee" ], "repo": "alzee/up", "url": "https://github.com/alzee/up/issues/834", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
349488541
git-checkout-pull-merge.sh does not run git submodules Describe the bug git-checkout-pull-merge.sh does not run submodule installations Opposed to - git-checkout-pull.sh To Reproduce Use Pullrequest environments for projects that have submodules Expected behavior Submodules are installed after the merge of the source branch @Schnitzel is the git submodule --init not in there by accident or is this by design? Fix: https://github.com/amazeeio/lagoon/pull/558 Looked at changing it and moving the git submodule operation outside the two git files but that makes the whole thing a bit harder to understand. whereas now we have all the git operations in the files that run trough.
gharchive/issue
2018-08-10T11:59:12
2025-04-01T06:37:48.702640
{ "authors": [ "dasrecht" ], "repo": "amazeeio/lagoon", "url": "https://github.com/amazeeio/lagoon/issues/554", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
654949150
made Console protected in menus Not really sure what to do with empty .ctors TBF making Layout protected in this PR is kinda pointless since it's only used in ModInputCombinationMenu
gharchive/pull-request
2020-07-10T18:10:05
2025-04-01T06:37:48.703502
{ "authors": [ "TAImatem" ], "repo": "amazingalek/owml", "url": "https://github.com/amazingalek/owml/pull/170", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
350733339
Outbound call! Hi, I have an embedded CCP inside my app and I want to make an outbound call by clicking a number in the page. I was able to do this by calling Amazon Connect API. I also tried to do this with amazon-connect-streams but it didn't work. here is my code `connect.agent(function (agent){ const endpoint = "+81XXXXXXXX"; agent.connect(endpoint , { queueARN : "arn:aws:connect:ap-southeast-2:XX:instance/XXX/queue/XXXX", success : function(){console.log("Success call!!!!!!")}, failure : function(){console.log("Call failed!!!!!!!")} }); });` Output: Call failed!!!!!!! [ERROR]: 'createOutboundContact' API request failed: [object Object] Can anyone help me with this issue? Thank-you Hi. endpoint is object, not phone number string. So you have to make endpoint by utility function before you call agent.connect() example) var endpoint = connect.Endpoint.byPhoneNumber('+81********'); hope this would be help. 2018年8月15日(水) 17:50 aliatry1 notifications@github.com: Hi, I have an embedded CCP inside my app and I want to make an outbound call by clicking a number in the page. I was able to do this by calling Amazon Connect API. I also tried to do this with amazon-connect-streams but it didn't work. here is my code `connect.agent(function (agent){ const endpoint = "+81XXXXXXXX"; agent.connect(endpoint , { queueARN : "arn:aws:connect:ap-southeast-2:XX:instance/XXX/queue/XXXX", success : function(){console.log("Success call!!!!!!")}, failure : function(){console.log("Call failed!!!!!!!")} }); });` Output: Call failed!!!!!!! [ERROR]: 'createOutboundContact' API request failed: [object Object] Can anyone help me with this issue? Thank-you — You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/aws/amazon-connect-streams/issues/77, or mute the thread https://github.com/notifications/unsubscribe-auth/ANHMELkuBgBSUyHlKk2VFbQF3FyOdVKeks5uQ-DRgaJpZM4V9xaJ . Awesome! Thank-you!! Hi I'm also having the same issue. It worked for a while but then all of a sudden it stopped. Below is our code. const endpoint = this.connect.Endpoint.byPhoneNumber(phoneNumber); agent.connect(endpoint, { success: () => {console.log('success')}, failure: () => {console.log('failures')} }) Hi, I'm trying to make an outbound call (Agent to Agent) using quick connect. In my amazon connect dial panel, I am not able to see any quick connect agent but it is available when transferring existing contact. Can anyone help on this. window.myCPP.agent.connect(data.endpoints[qcAgentID], { success: function(data) { console.log("dial to quick connect - success "+data); }, failure: function(data) { console.log("dial to quick connect - failed"); } }); And below is the error log. connect-streams-min.85524545.js:1 [2020-11-26T10:51:49.585Z] [ERROR]: 'createOutboundContact' API request failed connect-streams-min.85524545.js:1 [2020-11-26T10:51:49.586Z] [ERROR]: Failed to handle AWS API request for method createOutboundContact amazon-connect-1.5.1-2-g1037b86.js:21229 [2020-11-26T10:51:49.585Z] [ERROR]: 'createOutboundContact' API request failed connect-streams-min.85524545.js:1 [2020-11-26T10:51:49.586Z] [ERROR]: Failed to handle AWS API request for method createOutboundContact amazon-connect-1.5.1-2-g1037b86.js:21229 [2020-11-26T10:51:49.586Z] [ERROR]: Failed to handle AWS API request for method createOutboundContact @Selva-Guru - if you console.log(data) in your failure handler it will give you a bit more information about why the failure is happening.
gharchive/issue
2018-08-15T08:50:23
2025-04-01T06:37:48.714354
{ "authors": [ "Selva-Guru", "aliatry1", "nmiddleweek", "rddbank4", "rpaulojade" ], "repo": "amazon-connect/amazon-connect-streams", "url": "https://github.com/amazon-connect/amazon-connect-streams/issues/77", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
255445317
Channel generators need to respect new handle_message method signature Description Generated channels need to respect the new form of handle_message Steps to Reproduce Generate a channel Notice that handle_message should include socket now and doesn't Expected behavior: A properly generated channel with respect to the new form of handle_message callback. Actual behavior: Old style channel with old style handle_message gets generated Reproduces how often: 100% Versions Amber CMD (ambercr.io) - v0.2.2 Additional Information None, just generate a web socket channel. @mixflame I believe #228 fixed this issue. Can you confirm you are still having issues? That pull request is correct, feel free to close. Thanks. On Wed, Sep 6, 2017 at 7:22 AM, Dru Jensen notifications@github.com wrote: @mixflame https://github.com/mixflame I believe #228 https://github.com/amber-crystal/amber/pull/228 fixed this issue. Can you confirm you are still having issues? — You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/amber-crystal/amber/issues/236#issuecomment-327481394, or mute the thread https://github.com/notifications/unsubscribe-auth/ABo96zwqrwpiUKNdZjWSi67PdotkbitTks5sfpyagaJpZM4PNr0a . -- Jonathan Silverman tel: 720.935.6645
gharchive/issue
2017-09-06T00:21:15
2025-04-01T06:37:48.721467
{ "authors": [ "drujensen", "mixflame" ], "repo": "amber-crystal/amber", "url": "https://github.com/amber-crystal/amber/issues/236", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
162366567
boris.toml / master.toml /cc @nhibberd @thumphries /cc @tranma viva la boris revolucion 💂
gharchive/pull-request
2016-06-27T03:10:20
2025-04-01T06:37:48.725706
{ "authors": [ "jystic", "tranma" ], "repo": "ambiata/mafia", "url": "https://github.com/ambiata/mafia/pull/117", "license": "bsd-3-clause", "license_type": "permissive", "license_source": "bigquery" }