- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我在我的工作站/本地机器上运行“chef verify”并得到这个错误结果。
mike@mike-pc:/opt/chefdk$ chef verify
Running verification for component 'berkshelf'
Running verification for component 'test-kitchen'
Running verification for component 'tk-policyfile-provisioner'
Running verification for component 'chef-client'
Running verification for component 'chef-dk'
Running verification for component 'chef-provisioning'
Running verification for component 'chefspec'
Running verification for component 'generated-cookbooks-pass-chefspec'
Running verification for component 'rubocop'
Running verification for component 'fauxhai'
Running verification for component 'knife-spork'
Running verification for component 'kitchen-vagrant'
Running verification for component 'package installation'
Running verification for component 'openssl'
Running verification for component 'inspec'
Running verification for component 'delivery-cli'
Running verification for component 'git'
Running verification for component 'opscode-pushy-client'
Running verification for component 'chef-sugar'
...
An error occurred in a `before(:suite)` hook.
Failure/Error: raise InvalidURIError, "Invalid scheme format: #{new_scheme}"
Addressable::URI::InvalidURIError:
Invalid scheme format: 127.0.0.1
# /home/mike-pc/.chefdk/gem/ruby/2.3.0/gems/berkshelf-5.6.4/lib/berkshelf/source.rb:58:in `build_universe'
# /home/mike-pc/.chefdk/gem/ruby/2.3.0/gems/berkshelf-5.6.4/lib/berkshelf/installer.rb:21:in `block (2 levels) in build_universe'
Finished in 0.25155 seconds (files took 1.57 seconds to load)
0 examples, 0 failures
我执行了“kitchen diagnose -all”,发现我有无效的 URI:
instances:
default-centos-72:
platform:
os_type: unix
shell_type: bourne
state_file:
hostname: 127.0.0.1
last_action: create
last_error: Addressable::URI::InvalidURIError
port: '2222'
我该如何解决这个问题?
最佳答案
错误很明显:
Addressable::URI::InvalidURIError:
Invalid scheme format: 127.0.0.1
我认为您在“127.0.0.1”之前缺少“http://”。
关于ubuntu - Chef :可寻址::URI::InvalidURIError,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43780864/
我在我的工作站/本地机器上运行“chef verify”并得到这个错误结果。 mike@mike-pc:/opt/chefdk$ chef verify Running verification f
Rails、Devise 和 Doorkeeper... 尝试测试密码授予并收到错误:URI::InvalidURIError: query conflicts with opaque有任何想法吗?
在我的 routes.rb 我有以下路线: get '/merchandises/:cat/:id' => redirect('/products/%{id}') 这个重定向工作,但如果参数 id 包
我有一个用于测试目的的程序,我正在做的是抓取网络上的开放代理,并记录它们的信息,但是这是一种非常不同类型的代理抓取器,因为它创建了一堆在执行之前在文件内部之前的随机代理的数量例如: def creat
我遵循了 HTTParty github page 中的示例并想出了这个: class MatchHistory include HTTParty base_uri = "api.st
我目前正在尝试下载此链接的图片: http://z.mfcdn.net/store/manga/9/14-116.0/compressed/Bleach-14-116[manga-rain]._man
require 'uri' uri = URI.parse 'http://dxczjjuegupb.cloudfront.net/wp-content/uploads/2017/10/Оуэн-Мэ
我正在尝试验证一个 URL,但我的 URI.parse 正在接受任何字符串而不会引发 URI::InvalidURIError 错误。我做错了什么吗? require 'uri' URI.parse(
我有一个遗留的 Rails 3.2 应用程序,当我尝试使用非 ascii 字符时,例如; example.com/city/bergstraße 然后我收到以下错误: /Users/user/.rvm
我从delayed_job那里得到了以下信息: [Worker(XXXXXX pid:3720)] Class#XXXXXXX failed with URI::InvalidURIError: ba
在本地计算机上安装 Gitlab (10.6.2) 和 Jenkins,并尝试通过 gitlab 的 webhook 自动构建,根据 https://github.com/jenkinsci/gitl
使用 ruby 1.9.2-p290。我在尝试解析如下 URI 时遇到问题: require 'uri' my_uri = "http://www.anyserver.com/getdata?anyp
我的一些网址上有一些特殊字符。例如: http://blabla.com/title/?t=burası 当我从其他页面提供指向该页面的链接时,我使用: URI.encode(s) 产生这个链接: /
我们的 Rails 应用程序有时会收到一个完全乱码的 URL,导致 Rack 引发 URI::InvalidURIError。我们的异常通知系统 (HoneyBadger) 然后会收到此错误的通知。
我的Gemfile中有gem 'rspec-rails', '~> 2.14.2'。 从Rails 4.1升级到Rails 4.2之后,运行rspec时出现以下错误: Failure/Error: g
我正在尝试在 Rails 3 中实现 OAuth 提供程序。当我尝试授权客户端应用程序时,出现此错误。我正在使用 RESTful auth 插件和 pelles OAuth 插件。当我通过 Rails
我刚刚在一个长期存在的域上启动了一个生产 Rails 应用程序(在 Heroku 上),当然,现在它面向广泛开放的网络,我正在收集所有尝试脚本小子的碎片。 我有任何异常通过电子邮件发送给我,我已经设法
我知道这是一个常见的错误,我正在使用一个已知的解决方案,但它仍然给我同样的错误: require 'open-uri' url = "http://website.com/dirs/filex[a]"
配置信息 rails version 6.0 ruby version 2.7.0 gem 'image_processing', '~> 1.2' storage.yml local: serv
我正在使用 Koala gem:https://github.com/arsduo/koala从 facebook 图形 API 检索结果页面。 [编辑] 我按如下方式构造@graph 对象: @fa
我是一名优秀的程序员,十分优秀!