text1
stringlengths 0
536k
| text2
stringlengths 0
536k
| label
int64 0
1
|
---|---|---|
<h4 dir="auto">Challenge Name</h4>
<h4 dir="auto">Issue Description</h4>
<p dir="auto">Open Map and go to the Basic Algorithm Scripting.<br>
Api and Microservices Project first challenge is also missing</p>
<h4 dir="auto">Browser Information</h4>
<ul dir="auto">
<li>Browser Name, Version: 55.0.2883.87 m</li>
<li>Operating System: Windows 10</li>
<li>Mobile, Desktop, or Tablet: Desktop</li>
</ul>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/17409035/22398545/b841e3ce-e558-11e6-837c-bf25ac7bc816.jpg"><img src="https://cloud.githubusercontent.com/assets/17409035/22398545/b841e3ce-e558-11e6-837c-bf25ac7bc816.jpg" alt="one" style="max-width: 100%;"></a><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/17409035/22398546/b84587a4-e558-11e6-8d25-95f9f1114df5.jpg"><img src="https://cloud.githubusercontent.com/assets/17409035/22398546/b84587a4-e558-11e6-8d25-95f9f1114df5.jpg" alt="two" style="max-width: 100%;"></a></p>
<h4 dir="auto">Screenshot</h4> | <p dir="auto">For an example, see Challenge <a href="https://www.freecodecamp.com/challenges/record-collection" rel="nofollow">Record Collection</a>.</p>
<p dir="auto">You first describe a primary key for a particular collection of album data but and call it "its key"—which linguistically applies that key to the item and all its children.</p>
<p dir="auto">Then you call something else a key altogether, without making the transition to refer to to the key for a specific child. That's equivocating on what you've already defined as "key" in context.</p>
<p dir="auto">The vagueness and dropped transitions are linguistically sloppy and sabotage your stated target audience of newbies. As things stand, a person has to already know/understand at least some of the jargon and concepts in order to even understand what some of your lessons are trying to convey—and even then, what you're even asking for isn't always clear unless someone already knows what you're looking for, because you could mean multiple things.</p>
<p dir="auto">For the record, this is not an uncommon problem, when experts are building something for beginners. Identifying and fixing this sort of linguistic issue = part of my day job.</p> | 0 |
<p dir="auto">On a histogram with a single value repeated for 100 times I get an extra tiny box.<br>
The code to reproduce the issue:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from matplotlib import pylab as plt
plt.hist([33]*100)
plt.show()"><pre class="notranslate"><span class="pl-k">from</span> <span class="pl-s1">matplotlib</span> <span class="pl-k">import</span> <span class="pl-s1">pylab</span> <span class="pl-k">as</span> <span class="pl-s1">plt</span>
<span class="pl-s1">plt</span>.<span class="pl-en">hist</span>([<span class="pl-c1">33</span>]<span class="pl-c1">*</span><span class="pl-c1">100</span>)
<span class="pl-s1">plt</span>.<span class="pl-en">show</span>()</pre></div>
<p dir="auto">Here you can see a black line next to 32.6.<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/671660/17805532/3ed8d7e0-6600-11e6-97ea-893a87e77ef6.png"><img src="https://cloud.githubusercontent.com/assets/671660/17805532/3ed8d7e0-6600-11e6-97ea-893a87e77ef6.png" alt="figure_1" style="max-width: 100%;"></a></p>
<ul dir="auto">
<li>Matplolib: 1.5.1-1ubuntu1 (from repository), Python 2.7.12, Ubuntu 16.04.1</li>
<li>The same problem can be reproduced in python 3.5.2.</li>
</ul> | <p dir="auto">There is a visualization glitch with matplotlib <code class="notranslate">hist</code> function.</p>
<p dir="auto">Running this code on an ipython notebook:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="from __future__ import print_function
import numpy as np
import scipy.stats as stats
import matplotlib.pyplot as plt
%matplotlib inline
tau = 10
N = 1000
exp_fraction = 0.1
N_exp = int(N*exp_fraction)
sample = stats.expon.rvs(0, tau, size=N_exp)
print(sample.shape, sample.mean(), sample.std())
plt.hist(sample, bins=np.arange(-10, 50, 4))
sample[sample < 0]"><pre class="notranslate"><code class="notranslate">from __future__ import print_function
import numpy as np
import scipy.stats as stats
import matplotlib.pyplot as plt
%matplotlib inline
tau = 10
N = 1000
exp_fraction = 0.1
N_exp = int(N*exp_fraction)
sample = stats.expon.rvs(0, tau, size=N_exp)
print(sample.shape, sample.mean(), sample.std())
plt.hist(sample, bins=np.arange(-10, 50, 4))
sample[sample < 0]
</code></pre></div>
<p dir="auto">results in the following histogram:</p>
<p dir="auto"><a href="http://i.imgur.com/vonMF5a.png" rel="nofollow">figure</a></p>
<p dir="auto">You can see the first bin (close to -10) is not exactly 0 even if <code class="notranslate">sample</code> has no negative values.</p> | 1 |
<h5 dir="auto">ISSUE TYPE</h5>
<ul dir="auto">
<li>Bug Report</li>
</ul>
<h5 dir="auto">COMPONENT NAME</h5>
<p dir="auto">selinux</p>
<h5 dir="auto">ANSIBLE VERSION</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible-playbook 2.4.0.0
config file = /home/henrys/.ansible.cfg
configured module search path = [u'/home/henrys/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules']
ansible python module location = /tmp/ans24/lib/python2.7/site-packages/ansible
executable location = /tmp/ans24/bin/ansible-playbook
python version = 2.7.14 (default, Sep 20 2017, 01:25:59) [GCC 7.2.0]
"><pre class="notranslate"><code class="notranslate">ansible-playbook 2.4.0.0
config file = /home/henrys/.ansible.cfg
configured module search path = [u'/home/henrys/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules']
ansible python module location = /tmp/ans24/lib/python2.7/site-packages/ansible
executable location = /tmp/ans24/bin/ansible-playbook
python version = 2.7.14 (default, Sep 20 2017, 01:25:59) [GCC 7.2.0]
</code></pre></div>
<h5 dir="auto">CONFIGURATION</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ANSIBLE_SSH_CONTROL_PATH(/home/henrys/.ansible.cfg) = ~/.ssh/ansible-%%r@%%h:%%p
CACHE_PLUGIN(/home/henrys/.ansible.cfg) = jsonfile
CACHE_PLUGIN_CONNECTION(/home/henrys/.ansible.cfg) = /tmp/ansiblecache
CACHE_PLUGIN_TIMEOUT(/home/henrys/.ansible.cfg) = 7200
DEFAULT_FORKS(/home/henrys/.ansible.cfg) = 30
DEFAULT_GATHERING(/home/henrys/.ansible.cfg) = smart
DEFAULT_HOST_LIST(env: ANSIBLE_INVENTORY) = [u'/home/henrys/git/infrastructure/hosts']
DEFAULT_VAULT_PASSWORD_FILE(env: ANSIBLE_VAULT_PASSWORD_FILE) = /home/henrys/.ansible/.vaultfile
HOST_KEY_CHECKING(env: ANSIBLE_HOST_KEY_CHECKING) = False
RETRY_FILES_SAVE_PATH(env: ANSIBLE_RETRY_FILES_SAVE_PATH) = /tmp"><pre lang="ANSIBLE_SSH_ARGS(/home/henrys/.ansible.cfg)" class="notranslate"><code class="notranslate">ANSIBLE_SSH_CONTROL_PATH(/home/henrys/.ansible.cfg) = ~/.ssh/ansible-%%r@%%h:%%p
CACHE_PLUGIN(/home/henrys/.ansible.cfg) = jsonfile
CACHE_PLUGIN_CONNECTION(/home/henrys/.ansible.cfg) = /tmp/ansiblecache
CACHE_PLUGIN_TIMEOUT(/home/henrys/.ansible.cfg) = 7200
DEFAULT_FORKS(/home/henrys/.ansible.cfg) = 30
DEFAULT_GATHERING(/home/henrys/.ansible.cfg) = smart
DEFAULT_HOST_LIST(env: ANSIBLE_INVENTORY) = [u'/home/henrys/git/infrastructure/hosts']
DEFAULT_VAULT_PASSWORD_FILE(env: ANSIBLE_VAULT_PASSWORD_FILE) = /home/henrys/.ansible/.vaultfile
HOST_KEY_CHECKING(env: ANSIBLE_HOST_KEY_CHECKING) = False
RETRY_FILES_SAVE_PATH(env: ANSIBLE_RETRY_FILES_SAVE_PATH) = /tmp
</code></pre></div>
<h5 dir="auto">OS / ENVIRONMENT</h5>
<p dir="auto">Source: Linux/OSX (python2.7 & 3.6)<br>
Dest: CentOS 7.4</p>
<h5 dir="auto">SUMMARY</h5>
<p dir="auto">The selinux module updates the file /etc/selinux/config without proper line breaks . This causes the entire file to be read by selinux as a comment, thus reverting selinux to its defaults.</p>
<h5 dir="auto">STEPS TO REPRODUCE</h5>
<p dir="auto">$> ansible -m selinux -a "state=disabled" -Kb</p>
<h5 dir="auto">EXPECTED RESULTS</h5>
<p dir="auto">Ansible 2.3.2.0:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[henrys@nyjexp001 ~]$ cat /etc/selinux/config
# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
# enforcing - SELinux security policy is enforced.
# permissive - SELinux prints warnings instead of enforcing.
# disabled - No SELinux policy is loaded.
SELINUX=enforcing
# SELINUXTYPE= can take one of three two values:
# targeted - Targeted processes are protected,
# minimum - Modification of targeted policy. Only selected processes are protected.
# mls - Multi Level Security protection.
SELINUXTYPE=targeted"><pre class="notranslate"><code class="notranslate">[henrys@nyjexp001 ~]$ cat /etc/selinux/config
# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
# enforcing - SELinux security policy is enforced.
# permissive - SELinux prints warnings instead of enforcing.
# disabled - No SELinux policy is loaded.
SELINUX=enforcing
# SELINUXTYPE= can take one of three two values:
# targeted - Targeted processes are protected,
# minimum - Modification of targeted policy. Only selected processes are protected.
# mls - Multi Level Security protection.
SELINUXTYPE=targeted
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$> ansible -m selinux -a "state=disabled" nyjexp001 -Kb
SUDO password:
nyjexp001 | SUCCESS => {
"changed": true,
"configfile": "/etc/selinux/config",
"msg": "config state changed from 'enforcing' to 'disabled'",
"policy": "targeted",
"state": "disabled"
}
"><pre class="notranslate"><code class="notranslate">$> ansible -m selinux -a "state=disabled" nyjexp001 -Kb
SUDO password:
nyjexp001 | SUCCESS => {
"changed": true,
"configfile": "/etc/selinux/config",
"msg": "config state changed from 'enforcing' to 'disabled'",
"policy": "targeted",
"state": "disabled"
}
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[henrys@nyjexp001 ~]$ cat /etc/selinux/config
# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
# enforcing - SELinux security policy is enforced.
# permissive - SELinux prints warnings instead of enforcing.
# disabled - No SELinux policy is loaded.
SELINUX=disabled
# SELINUXTYPE= can take one of three two values:
# targeted - Targeted processes are protected,
# minimum - Modification of targeted policy. Only selected processes are protected.
# mls - Multi Level Security protection.
SELINUXTYPE=targeted"><pre class="notranslate"><code class="notranslate">[henrys@nyjexp001 ~]$ cat /etc/selinux/config
# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
# enforcing - SELinux security policy is enforced.
# permissive - SELinux prints warnings instead of enforcing.
# disabled - No SELinux policy is loaded.
SELINUX=disabled
# SELINUXTYPE= can take one of three two values:
# targeted - Targeted processes are protected,
# minimum - Modification of targeted policy. Only selected processes are protected.
# mls - Multi Level Security protection.
SELINUXTYPE=targeted
</code></pre></div>
<h5 dir="auto">ACTUAL RESULTS</h5>
<p dir="auto">Ansible 2.4.0.0:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[henrys@nyjexp001 ~]$ cat /etc/selinux/config
# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
# enforcing - SELinux security policy is enforced.
# permissive - SELinux prints warnings instead of enforcing.
# disabled - No SELinux policy is loaded.
SELINUX=enforcing
# SELINUXTYPE= can take one of three two values:
# targeted - Targeted processes are protected,
# minimum - Modification of targeted policy. Only selected processes are protected.
# mls - Multi Level Security protection.
SELINUXTYPE=targeted"><pre class="notranslate"><code class="notranslate">[henrys@nyjexp001 ~]$ cat /etc/selinux/config
# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
# enforcing - SELinux security policy is enforced.
# permissive - SELinux prints warnings instead of enforcing.
# disabled - No SELinux policy is loaded.
SELINUX=enforcing
# SELINUXTYPE= can take one of three two values:
# targeted - Targeted processes are protected,
# minimum - Modification of targeted policy. Only selected processes are protected.
# mls - Multi Level Security protection.
SELINUXTYPE=targeted
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$> ansible -m selinux -a "state=disabled" nyjexp001 -Kb
SUDO password:
nyjexp001.exelator.com | SUCCESS => {
"changed": true,
"configfile": "/etc/selinux/config",
"failed": false,
"msg": "config state changed from 'enforcing' to 'disabled'",
"policy": "targeted",
"state": "disabled"
}"><pre class="notranslate"><code class="notranslate">$> ansible -m selinux -a "state=disabled" nyjexp001 -Kb
SUDO password:
nyjexp001.exelator.com | SUCCESS => {
"changed": true,
"configfile": "/etc/selinux/config",
"failed": false,
"msg": "config state changed from 'enforcing' to 'disabled'",
"policy": "targeted",
"state": "disabled"
}
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[henrys@nyjexp001 ~]$ cat /etc/selinux/config
# This file controls the state of SELinux on the system.# SELINUX= can take one of these three values:# enforcing - SELinux security policy is enforced.# permissive - SELinux prints warnings instead of enforcing.# disabled - No SELinux policy is loaded.SELINUX=disabled# SELINUXTYPE= can take one of three two values:# targeted - Targeted processes are protected,# minimum - Modification of targeted policy. Only selected processes are protected. #[henrys@nyjexp001 ~]$"><pre class="notranslate"><code class="notranslate">[henrys@nyjexp001 ~]$ cat /etc/selinux/config
# This file controls the state of SELinux on the system.# SELINUX= can take one of these three values:# enforcing - SELinux security policy is enforced.# permissive - SELinux prints warnings instead of enforcing.# disabled - No SELinux policy is loaded.SELINUX=disabled# SELINUXTYPE= can take one of three two values:# targeted - Targeted processes are protected,# minimum - Modification of targeted policy. Only selected processes are protected. #[henrys@nyjexp001 ~]$
</code></pre></div> | <h5 dir="auto">ISSUE TYPE</h5>
<ul dir="auto">
<li>Bug Report</li>
</ul>
<h5 dir="auto">COMPONENT NAME</h5>
<p dir="auto">delegate_to</p>
<h5 dir="auto">ANSIBLE VERSION</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible 2.2.1.0
config file = /home/muller/git/devops/ansible/dev/ansible.cfg
configured module search path = ['../../lib/ansible/modules']"><pre class="notranslate"><code class="notranslate">ansible 2.2.1.0
config file = /home/muller/git/devops/ansible/dev/ansible.cfg
configured module search path = ['../../lib/ansible/modules']
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible 2.4.0
config file = /home/muller/git/devops/ansible/dev/ansible.cfg
configured module search path = [u'/home/muller/git/devops/lib/ansible/modules']
ansible python module location = /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible
executable location = /home/muller/ansible-devel/bin/ansible
python version = 2.7.12 (default, Nov 19 2016, 06:48:10) [GCC 5.4.0 20160609]"><pre class="notranslate"><code class="notranslate">ansible 2.4.0
config file = /home/muller/git/devops/ansible/dev/ansible.cfg
configured module search path = [u'/home/muller/git/devops/lib/ansible/modules']
ansible python module location = /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible
executable location = /home/muller/ansible-devel/bin/ansible
python version = 2.7.12 (default, Nov 19 2016, 06:48:10) [GCC 5.4.0 20160609]
</code></pre></div>
<h5 dir="auto">CONFIGURATION</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[defaults]
action_plugins = ../../lib/ansible/plugins/action
ansible_managed = Ansible managed file {file} modified on %Y-%m-%d %H:%M:%S by {uid} on {host}
callback_plugins = ../../lib/ansible/plugins/callback
command_warnings = True
connection_plugins = ../../lib/ansible/plugins/connection
deprecation_warnings = True
display_skipped_hosts = True
filter_plugins = ../../lib/ansible/plugins/filter
forks = 5
gathering = smart
gather_subset = "!ohai"
inventory = ./inventory
library = ../../lib/ansible/modules
log_path = ./ansible.log
lookup_plugins = ../../lib/ansible/plugins/lookup
module_name = command
nocolor = 0
nocows = 1
hosts = DISABLED_TO_PREVENT_SURPRISES
poll_interval = 15
roles_path = ../../roles
squash_actions = apk,apt,dnf,package,pacman,pkgng,yum,zypper
strategy_plugins = ../../lib/ansible/plugins/strategy
sudo_user = root
timeout = 10
vars_plugins = ../../lib/ansible/plugins/vars
test_plugins = ../../lib/ansible/plugins/test
cache_plugins = ../../lib/ansible/plugins/cache
[privilege_escalation]
[paramiko_connection]
record_host_keys = False
[ssh_connection]
ssh_args = -o PasswordAuthentication=no -o ControlMaster=auto -o ControlPersist=600s
scp_if_ssh = True
pipelining = True
"><pre class="notranslate"><code class="notranslate">[defaults]
action_plugins = ../../lib/ansible/plugins/action
ansible_managed = Ansible managed file {file} modified on %Y-%m-%d %H:%M:%S by {uid} on {host}
callback_plugins = ../../lib/ansible/plugins/callback
command_warnings = True
connection_plugins = ../../lib/ansible/plugins/connection
deprecation_warnings = True
display_skipped_hosts = True
filter_plugins = ../../lib/ansible/plugins/filter
forks = 5
gathering = smart
gather_subset = "!ohai"
inventory = ./inventory
library = ../../lib/ansible/modules
log_path = ./ansible.log
lookup_plugins = ../../lib/ansible/plugins/lookup
module_name = command
nocolor = 0
nocows = 1
hosts = DISABLED_TO_PREVENT_SURPRISES
poll_interval = 15
roles_path = ../../roles
squash_actions = apk,apt,dnf,package,pacman,pkgng,yum,zypper
strategy_plugins = ../../lib/ansible/plugins/strategy
sudo_user = root
timeout = 10
vars_plugins = ../../lib/ansible/plugins/vars
test_plugins = ../../lib/ansible/plugins/test
cache_plugins = ../../lib/ansible/plugins/cache
[privilege_escalation]
[paramiko_connection]
record_host_keys = False
[ssh_connection]
ssh_args = -o PasswordAuthentication=no -o ControlMaster=auto -o ControlPersist=600s
scp_if_ssh = True
pipelining = True
</code></pre></div>
<h5 dir="auto">OS / ENVIRONMENT</h5>
<p dir="auto">Distributor ID: LinuxMint<br>
Description: Linux Mint 18.1 Serena<br>
Release: 18.1<br>
Codename: serena</p>
<h5 dir="auto">SUMMARY</h5>
<p dir="auto">delegate_to: omit connects to the right host, but forgets to use ansible_user from the inventory<br>
from the output:<br>
<10.204.90.72> ESTABLISH SSH CONNECTION FOR USER: devops<br>
vs<br>
<test-db1.dev> ESTABLISH SSH CONNECTION FOR USER: None</p>
<h5 dir="auto">STEPS TO REPRODUCE</h5>
<p dir="auto">inventory:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="test-db1.dev ansible_host=10.204.90.72 ansible_user=devops
test-db2.dev ansible_host=10.204.90.113 ansible_user=devops"><pre class="notranslate"><code class="notranslate">test-db1.dev ansible_host=10.204.90.72 ansible_user=devops
test-db2.dev ansible_host=10.204.90.113 ansible_user=devops
</code></pre></div>
<p dir="auto">playbook:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="---
- name: test
hosts: all
gather_facts: yes
tasks:
- command: 'hostname'
run_once: true
- command: 'hostname'
delegate_to: "{{ delegatehost | default(inventory_hostname) }}"
run_once: true
- command: 'hostname'
delegate_to: "{{ delegatehost | default(omit) }}"
run_once: true"><pre class="notranslate"><code class="notranslate">---
- name: test
hosts: all
gather_facts: yes
tasks:
- command: 'hostname'
run_once: true
- command: 'hostname'
delegate_to: "{{ delegatehost | default(inventory_hostname) }}"
run_once: true
- command: 'hostname'
delegate_to: "{{ delegatehost | default(omit) }}"
run_once: true
</code></pre></div>
<h5 dir="auto">EXPECTED RESULTS</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="TASK [command] *******************************************************************************************************************************************************************************************************************************
changed: [test-db1.dev -> 10.204.90.72]
cmd: hostname
stdout:
test-db1
TASK [command] *******************************************************************************************************************************************************************************************************************************
changed: [test-db1.dev -> 10.204.90.72]
cmd: hostname
stdout:
test-db1"><pre class="notranslate"><code class="notranslate">TASK [command] *******************************************************************************************************************************************************************************************************************************
changed: [test-db1.dev -> 10.204.90.72]
cmd: hostname
stdout:
test-db1
TASK [command] *******************************************************************************************************************************************************************************************************************************
changed: [test-db1.dev -> 10.204.90.72]
cmd: hostname
stdout:
test-db1
</code></pre></div>
<h5 dir="auto">ACTUAL RESULTS</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible-playbook 2.4.0
config file = /home/muller/git/devops/ansible/dev/ansible.cfg
configured module search path = [u'/home/muller/git/devops/lib/ansible/modules']
ansible python module location = /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible
executable location = /home/muller/ansible-devel/bin/ansible-playbook
python version = 2.7.12 (default, Nov 19 2016, 06:48:10) [GCC 5.4.0 20160609]
Using /home/muller/git/devops/ansible/dev/ansible.cfg as config file
Parsed /home/muller/git/devops/ansible/dev/inventory inventory source with ini plugin
PLAYBOOK: test.yml ***************************************************************************************************************************************************************************************************************************
1 plays in test.yml
PLAY [test] **********************************************************************************************************************************************************************************************************************************
TASK [Gathering Facts] ***********************************************************************************************************************************************************************************************************************
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/basic.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/__init__.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/collector.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/namespace.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/default_collectors.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/_text.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/pycompat24.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/six/__init__.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/six/_six.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/timeout.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/network/freebsd.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/virtual/openbsd.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/network/base.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/hardware/dragonfly.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/network/dragonfly.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/hardware/aix.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/network/aix.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/hardware/linux.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/system/platform.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/hardware/hpux.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/system/user.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/hardware/hurd.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/other/facter.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/virtual/sunos.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/network/hpux.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/system/distribution.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/virtual/freebsd.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/system/__init__.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/network/openbsd.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/network/darwin.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/network/linux.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/hardware/sunos.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/network/sunos.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/system/apparmor.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/hardware/openbsd.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/system/local.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/other/ohai.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/other/__init__.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/system/service_mgr.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/network/hurd.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/virtual/hpux.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/system/fips.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/system/selinux.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/virtual/__init__.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/system/pkg_mgr.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/system/dns.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/virtual/base.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/hardware/darwin.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/virtual/dragonfly.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/system/ssh_pub_keys.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/network/__init__.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/hardware/__init__.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/system/lsb.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/system/date_time.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/virtual/netbsd.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/hardware/base.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/system/cmdline.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/hardware/freebsd.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/network/netbsd.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/hardware/netbsd.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/system/caps.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/system/env.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/virtual/linux.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/system/python.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/network/generic_bsd.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/virtual/sysctl.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/utils.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/sysctl.py
Using module file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/modules/system/setup.py
<10.204.90.72> ESTABLISH SSH CONNECTION FOR USER: devops
Using module file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/modules/system/setup.py
<10.204.90.72> SSH: EXEC ssh -o PasswordAuthentication=no -o ControlMaster=auto -o ControlPersist=600s -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o User=devops -o ConnectTimeout=10 -o ControlPath=/home/muller/.ansible/cp/27127c052e 10.204.90.72 '/bin/sh -c '"'"'/usr/bin/python && sleep 0'"'"''
<10.204.90.113> ESTABLISH SSH CONNECTION FOR USER: devops
<10.204.90.113> SSH: EXEC ssh -o PasswordAuthentication=no -o ControlMaster=auto -o ControlPersist=600s -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o User=devops -o ConnectTimeout=10 -o ControlPath=/home/muller/.ansible/cp/237beb25f8 10.204.90.113 '/bin/sh -c '"'"'/usr/bin/python && sleep 0'"'"''
<10.204.90.72> (0, '\n{"invocation": {"module_args": {"filter": "*", "gather_subset": ["!ohai"], "fact_path": "/etc/ansible/facts.d", "gather_timeout": 10}}, "changed": false, "ansible_facts": {"ansible_product_serial": "NA", "ansible_form_factor": "Desktop", "ansible_distribution_file_parsed": true, "ansible_fips": false, "ansible_service_mgr": "systemd", "ansible_user_id": "devops", "ansible_selinux_python_present": false, "ansible_userspace_bits": "64", "ansible_ssh_host_key_rsa_public": "AAAAB3NzaC1yc2EAAAADAQABAAABAQCxINguKDMjaVD9UEY7wZJwJWhev6Sh2jcmJ8M8kEKjUGR0IwAF75/k94nuN+0J3a1Q+vMUSsGTo4SeHyrJkFemP04J2YrWs6HSgu6D9fXQpymwszFFjHcp8d/JbnJRjXTG5wzsvu7UcLqc74Ik29I8XlBfkY7lL1o4Ge/Hl7i/uqqe5O9BcwmrNaJ1tibFtX+WZu3Zngn5HLHZlAtyKlnkshrcYBVuovocPJxOcBUQzkCejELpIOsTDRzhVgL9hGPcLNxZOBOzMQLFbFJPIjHslIbXTPsyDSjamTQ4zH8TZ5FUAZxkBlS583/GY/qkg87U8yQxP7xeXZWOcpmxl/r9", "gather_subset": ["!ohai"], "ansible_ssh_host_key_ecdsa_public": "AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHJPf0k+hqeV9jVaFB+R0Z+OMhBXSlWMTRJwGnVquwUM64GaFFRhlKF1dthgXsvpD+kOy4El9/8s+gm04Ho+d70=", "ansible_local": {}, "ansible_distribution_version": "16.04", "ansible_domain": "", "ansible_distribution_file_path": "/etc/os-release", "ansible_device_links": {"masters": {"sdb1": ["dm-1", "dm-2"], "sda3": ["dm-0"], "dm-0": ["dm-3"]}, "labels": {}, "ids": {}, "uuids": {}}, "ansible_virtualization_type": "lxc", "ansible_ssh_host_key_ed25519_public": "AAAAC3NzaC1lZDI1NTE5AAAAILYk/1/uYbEGWJUAKEHU5kD2P60YfWZp1zDGC3+EsreZ", "ansible_processor_cores": 4, "ansible_virtualization_role": "guest", "ansible_distribution_file_variety": "Debian", "ansible_dns": {"nameservers": ["10.204.90.1"], "search": ["lxd"]}, "ansible_processor_vcpus": 8, "ansible_bios_version": "1801", "ansible_processor": ["GenuineIntel", "Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz", "GenuineIntel", "Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz", "GenuineIntel", "Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz", "GenuineIntel", "Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz", "GenuineIntel", "Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz", "GenuineIntel", "Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz", "GenuineIntel", "Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz", "GenuineIntel", "Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz"], "ansible_date_time": {"weekday_number": "4", "iso8601_basic_short": "20170622T150703", "tz": "CEST", "weeknumber": "25", "hour": "15", "year": "2017", "minute": "07", "tz_offset": "+0200", "month": "06", "epoch": "1498136823", "iso8601_micro": "2017-06-22T13:07:03.214783Z", "weekday": "Thursday", "time": "15:07:03", "date": "2017-06-22", "iso8601": "2017-06-22T13:07:03Z", "day": "22", "iso8601_basic": "20170622T150703214733", "second": "03"}, "ansible_lo": {"features": {"tx_checksum_ipv4": "off [fixed]", "generic_receive_offload": "on", "tx_checksum_ipv6": "off [fixed]", "tx_scatter_gather_fraglist": "on [fixed]", "rx_all": "off [fixed]", "highdma": "on [fixed]", "rx_fcs": "off [fixed]", "tx_lockless": "on [fixed]", "tx_tcp_ecn_segmentation": "on", "tx_gso_robust": "off [fixed]", "tx_tcp_mangleid_segmentation": "on", "tx_ipxip4_segmentation": "off [fixed]", "tx_checksumming": "on", "vlan_challenged": "on [fixed]", "loopback": "on [fixed]", "tx_ipxip6_segmentation": "off [fixed]", "fcoe_mtu": "off [fixed]", "scatter_gather": "on", "tx_checksum_sctp": "on [fixed]", "tx_vlan_stag_hw_insert": "off [fixed]", "rx_vlan_stag_hw_parse": "off [fixed]", "tx_gso_partial": "off [fixed]", "rx_vlan_stag_filter": "off [fixed]", "large_receive_offload": "off [fixed]", "tx_scatter_gather": "on [fixed]", "rx_checksumming": "on [fixed]", "tx_tcp_segmentation": "on", "netns_local": "on [fixed]", "busy_poll": "off [fixed]", "generic_segmentation_offload": "on", "tx_udp_tnl_segmentation": "off [fixed]", "tcp_segmentation_offload": "on", "l2_fwd_offload": "off [fixed]", "rx_vlan_offload": "off [fixed]", "ntuple_filters": "off [fixed]", "tx_gre_csum_segmentation": "off [fixed]", "tx_tcp6_segmentation": "on", "tx_udp_tnl_csum_segmentation": "off [fixed]", "udp_fragmentation_offload": "on", "tx_sctp_segmentation": "on", "tx_checksum_fcoe_crc": "off [fixed]", "hw_tc_offload": "off [fixed]", "tx_checksum_ip_generic": "on [fixed]", "tx_fcoe_segmentation": "off [fixed]", "tx_nocache_copy": "off [fixed]", "rx_vlan_filter": "off [fixed]", "tx_vlan_offload": "off [fixed]", "receive_hashing": "off [fixed]", "tx_gre_segmentation": "off [fixed]"}, "hw_timestamp_filters": [], "mtu": 65536, "device": "lo", "promisc": false, "timestamping": ["rx_software", "software"], "ipv4": {"broadcast": "host", "netmask": "255.0.0.0", "network": "127.0.0.0", "address": "127.0.0.1"}, "ipv6": [{"scope": "host", "prefix": "128", "address": "::1"}], "active": true, "type": "loopback"}, "ansible_memtotal_mb": 32055, "ansible_architecture": "x86_64", "ansible_real_user_id": 1000, "ansible_default_ipv4": {"macaddress": "00:16:3e:9a:5c:5e", "network": "10.204.90.0", "mtu": 1500, "broadcast": "10.204.90.255", "alias": "eth0", "netmask": "255.255.255.0", "address": "10.204.90.72", "interface": "eth0", "type": "ether", "gateway": "10.204.90.1"}, "ansible_swapfree_mb": 0, "ansible_default_ipv6": {}, "ansible_distribution_release": "xenial", "ansible_system_vendor": "System manufacturer", "ansible_os_family": "Debian", "ansible_cmdline": {"intel_idle.max_cstate": "1", "BOOT_IMAGE": "/vmlinuz-4.10.0-20-generic", "quiet": true, "splash": true, "vt.handoff": "7", "ro": true, "root": "/dev/mapper/mint--vg-root"}, "ansible_effective_user_id": 1000, "ansible_mounts": [{"block_used": 43078280, "uuid": "N/A", "size_total": 244960526336, "block_total": 59804816, "mount": "/", "block_available": 16726536, "size_available": 68511891456, "fstype": "ext4", "inode_total": 15204352, "options": "rw,relatime,errors=remount-ro,data=ordered,bind", "device": "/dev/mapper/mint--vg-root", "inode_used": 1805349, "block_size": 4096, "inode_available": 13399003}], "ansible_selinux": false, "ansible_product_version": "System Version", "ansible_apparmor": {"status": "enabled"}, "ansible_userspace_architecture": "x86_64", "ansible_product_uuid": "NA", "ansible_system": "Linux", "ansible_pkg_mgr": "apt", "ansible_memfree_mb": 31023, "ansible_devices": {"dm-2": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "904937472", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "431.51 GB"}, "loop6": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "0", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "0.00 Bytes"}, "loop4": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "0", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "0.00 Bytes"}, "dm-0": {"scheduler_mode": "", "rotational": "0", "vendor": null, "sectors": "486342656", "links": {"masters": ["dm-3"], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "512", "model": null, "partitions": {}, "holders": ["mint--vg-root"], "size": "231.91 GB"}, "sda": {"scheduler_mode": "cfq", "rotational": "0", "vendor": "ATA", "sectors": "488397168", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "SATA controller: Intel Corporation Sunrise Point-H SATA controller [AHCI mode] (rev 31)", "sectorsize": "512", "removable": "0", "support_discard": "512", "model": "Samsung SSD 850", "partitions": {"sda2": {"sectorsize": 512, "uuid": null, "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sectors": "999424", "start": "1050624", "holders": [], "size": "488.00 MB"}, "sda3": {"sectorsize": 512, "uuid": null, "links": {"masters": ["dm-0"], "labels": [], "ids": [], "uuids": []}, "sectors": "486346752", "start": "2050048", "holders": ["sda3_crypt"], "size": "231.91 GB"}, "sda1": {"sectorsize": 512, "uuid": null, "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sectors": "1048576", "start": "2048", "holders": [], "size": "512.00 MB"}}, "holders": [], "size": "232.89 GB"}, "sdb": {"scheduler_mode": "cfq", "rotational": "1", "vendor": "ATA", "sectors": "1953525168", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "SATA controller: Intel Corporation Sunrise Point-H SATA controller [AHCI mode] (rev 31)", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": "ST1000DM003-1SB1", "partitions": {"sdb1": {"sectorsize": 512, "uuid": null, "links": {"masters": ["dm-1", "dm-2"], "labels": [], "ids": [], "uuids": []}, "sectors": "1953521664", "start": "2048", "holders": ["backup-backup", "backup-big"], "size": "931.51 GB"}}, "holders": [], "size": "931.51 GB"}, "loop3": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "0", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "0.00 Bytes"}, "loop2": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "0", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "0.00 Bytes"}, "loop1": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "0", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "0.00 Bytes"}, "loop0": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "0", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "0.00 Bytes"}, "loop7": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "0", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "0.00 Bytes"}, "dm-3": {"scheduler_mode": "", "rotational": "0", "vendor": null, "sectors": "486334464", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "512", "model": null, "partitions": {}, "holders": [], "size": "231.90 GB"}, "loop5": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "0", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "0.00 Bytes"}, "dm-1": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "1048576000", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "500.00 GB"}}, "ansible_user_uid": 1000, "ansible_memory_mb": {"real": {"total": 32055, "used": 1032, "free": 31023}, "swap": {"cached": 0, "total": 0, "free": 0, "used": 0}, "nocache": {"used": 909, "free": 31146}}, "ansible_distribution": "Ubuntu", "ansible_user_dir": "/home/devops", "ansible_env": {"LC_NUMERIC": "nl_NL.UTF-8", "LC_CTYPE": "en_US.UTF-8", "SSH_CLIENT": "10.204.90.1 46434 22", "LOGNAME": "devops", "USER": "devops", "HOME": "/home/devops", "LC_PAPER": "nl_NL.UTF-8", "PATH": "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games", "LANG": "C", "SHELL": "/bin/bash", "SHLVL": "1", "LC_MONETARY": "nl_NL.UTF-8", "LC_ADDRESS": "nl_NL.UTF-8", "LC_ALL": "C", "_": "/bin/sh", "LC_IDENTIFICATION": "nl_NL.UTF-8", "LC_MESSAGES": "C", "LC_COLLATE": "en_US.UTF-8", "LC_TELEPHONE": "nl_NL.UTF-8", "LC_MEASUREMENT": "nl_NL.UTF-8", "PWD": "/home/devops", "LC_NAME": "nl_NL.UTF-8", "MAIL": "/var/mail/devops", "LC_TIME": "en_US.UTF-8", "SSH_CONNECTION": "10.204.90.1 46434 10.204.90.72 22"}, "ansible_distribution_major_version": "16", "module_setup": true, "ansible_processor_count": 1, "ansible_hostname": "test-db1", "ansible_effective_group_id": 1000, "ansible_swaptotal_mb": 0, "ansible_lsb": {"release": "16.04", "major_release": "16", "codename": "xenial", "id": "Ubuntu", "description": "Ubuntu 16.04.2 LTS"}, "ansible_real_group_id": 1000, "ansible_bios_date": "05/10/2016", "ansible_all_ipv6_addresses": ["fe80::216:3eff:fe9a:5c5e"], "ansible_interfaces": ["lo", "eth0"], "ansible_uptime_seconds": 3049626, "ansible_user_shell": "/bin/bash", "ansible_machine_id": "9b3896a004fe4b4f8a6b05c4f86095ee", "ansible_kernel": "4.10.0-20-generic", "ansible_user_gecos": "DevOps User", "ansible_system_capabilities_enforced": "True", "ansible_python": {"executable": "/usr/bin/python", "version": {"micro": 12, "major": 2, "releaselevel": "final", "serial": 0, "minor": 7}, "type": "CPython", "has_sslcontext": true, "version_info": [2, 7, 12, "final", 0]}, "ansible_processor_threads_per_core": 2, "ansible_fqdn": "test-db1", "ansible_user_gid": 1000, "ansible_eth0": {"macaddress": "00:16:3e:9a:5c:5e", "features": {"tx_checksum_ipv4": "off [fixed]", "generic_receive_offload": "on", "tx_checksum_ipv6": "off [fixed]", "tx_scatter_gather_fraglist": "on", "rx_all": "off [fixed]", "highdma": "on", "rx_fcs": "off [fixed]", "tx_lockless": "on [fixed]", "tx_tcp_ecn_segmentation": "on", "tx_gso_robust": "off [fixed]", "tx_tcp_mangleid_segmentation": "on", "tx_ipxip4_segmentation": "on", "tx_checksumming": "on", "vlan_challenged": "off [fixed]", "loopback": "off [fixed]", "tx_ipxip6_segmentation": "on", "fcoe_mtu": "off [fixed]", "scatter_gather": "on", "tx_checksum_sctp": "on", "tx_vlan_stag_hw_insert": "on", "rx_vlan_stag_hw_parse": "on", "tx_gso_partial": "off [fixed]", "rx_vlan_stag_filter": "off [fixed]", "large_receive_offload": "off [fixed]", "tx_scatter_gather": "on", "rx_checksumming": "on", "tx_tcp_segmentation": "on", "netns_local": "off [fixed]", "busy_poll": "off [fixed]", "generic_segmentation_offload": "on", "tx_udp_tnl_segmentation": "on", "tcp_segmentation_offload": "on", "l2_fwd_offload": "off [fixed]", "rx_vlan_offload": "on", "ntuple_filters": "off [fixed]", "tx_gre_csum_segmentation": "on", "tx_tcp6_segmentation": "on", "tx_udp_tnl_csum_segmentation": "on", "udp_fragmentation_offload": "on", "tx_sctp_segmentation": "on", "tx_checksum_fcoe_crc": "off [fixed]", "hw_tc_offload": "off [fixed]", "tx_checksum_ip_generic": "on", "tx_fcoe_segmentation": "off [fixed]", "tx_nocache_copy": "off", "rx_vlan_filter": "off [fixed]", "tx_vlan_offload": "on", "receive_hashing": "off [fixed]", "tx_gre_segmentation": "on"}, "type": "ether", "hw_timestamp_filters": [], "mtu": 1500, "device": "eth0", "promisc": false, "timestamping": ["rx_software", "software"], "ipv4": {"broadcast": "10.204.90.255", "netmask": "255.255.255.0", "network": "10.204.90.0", "address": "10.204.90.72"}, "ipv6": [{"scope": "link", "prefix": "64", "address": "fe80::216:3eff:fe9a:5c5e"}], "active": true, "speed": 10000}, "ansible_nodename": "test-db1", "ansible_product_name": "System Product Name", "ansible_machine": "x86_64", "ansible_system_capabilities": [""], "ansible_ssh_host_key_dsa_public": "AAAAB3NzaC1kc3MAAACBAJvwTGz897iXKZ/SjhNTe/qa8EOMaGSsRgZpaMKtpuo23LPoXDnjUFocMHmJKADQGnuBYm+TgbjuB8do4fLX/ljXec3LprJHfUdh93HLHof3xFC43nTIl9eNeVO4ka7jWnps621g0rd2Virq83h1osdIumbxcemlqn7ELQsOqe1LAAAAFQCIQtOfidX2CaQkijP1f+dzcRp29QAAAIAZR3OLuCo301a69OPcDtJOprxt9fTv3AmqBZflqPY7SewbuqmdG3ikQfphCB/zn3jgNQClm58vSHnLIQlPzdYZ8rtsAfkdUeRzuJhmyMxSO5tED0/dySK2aDCmyuVkN+D6IQrvgFGL98dPiUi5DYXQY1OxYGdg3a2iGPI0vJUnCQAAAIEAmQ9q2diAReW/NAacQy4YxWoTNhYAw82lnKPG1i0fnJTQrZgsLpasNIKq6qFNOmLRzO2uyFu/tmeOhQlQd+4Y9WX8jeyRJnElnAZE73WrRNyWrmaqPekWKHwUQlv233IT1WNebuABYp54MHbTQDUBWPz0qhcqxQ12BUq/LVcEQBQ=", "ansible_all_ipv4_addresses": ["10.204.90.72"], "ansible_python_version": "2.7.12"}}\n', '')
<10.204.90.113> (0, '\n{"invocation": {"module_args": {"filter": "*", "gather_subset": ["!ohai"], "fact_path": "/etc/ansible/facts.d", "gather_timeout": 10}}, "changed": false, "ansible_facts": {"ansible_product_serial": "NA", "ansible_form_factor": "Desktop", "ansible_distribution_file_parsed": true, "ansible_fips": false, "ansible_service_mgr": "systemd", "ansible_user_id": "devops", "ansible_selinux_python_present": false, "ansible_userspace_bits": "64", "ansible_ssh_host_key_rsa_public": "AAAAB3NzaC1yc2EAAAADAQABAAABAQCX/4zGK4DU/OEfyTDNPPDBQsNvOskyHBjI4estQcFjv9RqZa/dnQjgeCIL77xCdPfwAXEEOQd62UGQF50ZX0VmfdxSnGNnd1mKBQgzAvbxKhHSqP1Fo+FA2k8+xz6pWadQsWHE26KMIedkda71eepk3QaV5PsfDlo6n0fBQm4cNvbeADsghY6KcG4mBmudKVFwoNvljd8hmNYbuvZ6jf2pKEWdc0rYSJcfSJ/vZ8I26y1O6LQkRXD1lyezRnb3kk6aVjXwZHNblfK0BwBTfjlE1nQmLP0mNKpjYfhkutE1kdTDDIn+S7a8EZq9QWZGg14DdJa7rUcB8NBuohuWWds9", "gather_subset": ["!ohai"], "ansible_ssh_host_key_ecdsa_public": "AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFVHoFwVwTL7oG4LVqtXkonFCyQEM7Tm0jMrfZXw8x9vCvsuN9WAy34Ug8pn9mFloDhh3xCLZEBvHQZEvinz/00=", "ansible_local": {}, "ansible_distribution_version": "16.04", "ansible_domain": "", "ansible_distribution_file_path": "/etc/os-release", "ansible_device_links": {"masters": {"sdb1": ["dm-1", "dm-2"], "sda3": ["dm-0"], "dm-0": ["dm-3"]}, "labels": {}, "ids": {}, "uuids": {}}, "ansible_virtualization_type": "lxc", "ansible_ssh_host_key_ed25519_public": "AAAAC3NzaC1lZDI1NTE5AAAAIHkHOrJpIKI7016lp4Hl/DDEJsJRtW832NyYrFy/w4JN", "ansible_processor_cores": 4, "ansible_virtualization_role": "guest", "ansible_distribution_file_variety": "Debian", "ansible_env": {"LC_NUMERIC": "nl_NL.UTF-8", "LC_CTYPE": "en_US.UTF-8", "SSH_CLIENT": "10.204.90.1 41956 22", "LOGNAME": "devops", "USER": "devops", "HOME": "/home/devops", "LC_PAPER": "nl_NL.UTF-8", "PATH": "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games", "LANG": "C", "SHELL": "/bin/bash", "SHLVL": "1", "LC_MONETARY": "nl_NL.UTF-8", "LC_ADDRESS": "nl_NL.UTF-8", "LC_ALL": "C", "_": "/bin/sh", "LC_IDENTIFICATION": "nl_NL.UTF-8", "LC_MESSAGES": "C", "LC_COLLATE": "en_US.UTF-8", "LC_TELEPHONE": "nl_NL.UTF-8", "LC_MEASUREMENT": "nl_NL.UTF-8", "PWD": "/home/devops", "LC_NAME": "nl_NL.UTF-8", "MAIL": "/var/mail/devops", "LC_TIME": "en_US.UTF-8", "SSH_CONNECTION": "10.204.90.1 41956 10.204.90.113 22"}, "ansible_processor_vcpus": 8, "ansible_bios_version": "1801", "ansible_processor": ["GenuineIntel", "Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz", "GenuineIntel", "Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz", "GenuineIntel", "Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz", "GenuineIntel", "Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz", "GenuineIntel", "Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz", "GenuineIntel", "Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz", "GenuineIntel", "Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz", "GenuineIntel", "Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz"], "ansible_date_time": {"weekday_number": "4", "iso8601_basic_short": "20170622T150703", "tz": "CEST", "weeknumber": "25", "hour": "15", "year": "2017", "minute": "07", "tz_offset": "+0200", "month": "06", "epoch": "1498136823", "iso8601_micro": "2017-06-22T13:07:03.219388Z", "weekday": "Thursday", "time": "15:07:03", "date": "2017-06-22", "iso8601": "2017-06-22T13:07:03Z", "day": "22", "iso8601_basic": "20170622T150703219341", "second": "03"}, "ansible_lo": {"features": {"tx_checksum_ipv4": "off [fixed]", "generic_receive_offload": "on", "tx_checksum_ipv6": "off [fixed]", "tx_scatter_gather_fraglist": "on [fixed]", "rx_all": "off [fixed]", "highdma": "on [fixed]", "rx_fcs": "off [fixed]", "tx_lockless": "on [fixed]", "tx_tcp_ecn_segmentation": "on", "tx_gso_robust": "off [fixed]", "tx_tcp_mangleid_segmentation": "on", "tx_ipxip4_segmentation": "off [fixed]", "tx_checksumming": "on", "vlan_challenged": "on [fixed]", "loopback": "on [fixed]", "tx_ipxip6_segmentation": "off [fixed]", "fcoe_mtu": "off [fixed]", "scatter_gather": "on", "tx_checksum_sctp": "on [fixed]", "tx_vlan_stag_hw_insert": "off [fixed]", "rx_vlan_stag_hw_parse": "off [fixed]", "tx_gso_partial": "off [fixed]", "rx_vlan_stag_filter": "off [fixed]", "large_receive_offload": "off [fixed]", "tx_scatter_gather": "on [fixed]", "rx_checksumming": "on [fixed]", "tx_tcp_segmentation": "on", "netns_local": "on [fixed]", "busy_poll": "off [fixed]", "generic_segmentation_offload": "on", "tx_udp_tnl_segmentation": "off [fixed]", "tcp_segmentation_offload": "on", "l2_fwd_offload": "off [fixed]", "rx_vlan_offload": "off [fixed]", "ntuple_filters": "off [fixed]", "tx_gre_csum_segmentation": "off [fixed]", "tx_tcp6_segmentation": "on", "tx_udp_tnl_csum_segmentation": "off [fixed]", "udp_fragmentation_offload": "on", "tx_sctp_segmentation": "on", "tx_checksum_fcoe_crc": "off [fixed]", "hw_tc_offload": "off [fixed]", "tx_checksum_ip_generic": "on [fixed]", "tx_fcoe_segmentation": "off [fixed]", "tx_nocache_copy": "off [fixed]", "rx_vlan_filter": "off [fixed]", "tx_vlan_offload": "off [fixed]", "receive_hashing": "off [fixed]", "tx_gre_segmentation": "off [fixed]"}, "hw_timestamp_filters": [], "mtu": 65536, "device": "lo", "promisc": false, "timestamping": ["rx_software", "software"], "ipv4": {"broadcast": "host", "netmask": "255.0.0.0", "network": "127.0.0.0", "address": "127.0.0.1"}, "ipv6": [{"scope": "host", "prefix": "128", "address": "::1"}], "active": true, "type": "loopback"}, "ansible_memtotal_mb": 32055, "ansible_architecture": "x86_64", "ansible_real_user_id": 1000, "ansible_default_ipv4": {"macaddress": "00:16:3e:ed:12:35", "network": "10.204.90.0", "mtu": 1500, "broadcast": "10.204.90.255", "alias": "eth0", "netmask": "255.255.255.0", "address": "10.204.90.113", "interface": "eth0", "type": "ether", "gateway": "10.204.90.1"}, "ansible_swapfree_mb": 0, "ansible_default_ipv6": {}, "ansible_distribution_release": "xenial", "ansible_system_vendor": "System manufacturer", "ansible_os_family": "Debian", "ansible_cmdline": {"intel_idle.max_cstate": "1", "BOOT_IMAGE": "/vmlinuz-4.10.0-20-generic", "quiet": true, "splash": true, "vt.handoff": "7", "ro": true, "root": "/dev/mapper/mint--vg-root"}, "ansible_effective_user_id": 1000, "ansible_mounts": [{"block_used": 43078280, "uuid": "N/A", "size_total": 244960526336, "block_total": 59804816, "mount": "/", "block_available": 16726536, "size_available": 68511891456, "fstype": "ext4", "inode_total": 15204352, "options": "rw,relatime,errors=remount-ro,data=ordered,bind", "device": "/dev/mapper/mint--vg-root", "inode_used": 1805349, "block_size": 4096, "inode_available": 13399003}], "ansible_selinux": false, "ansible_product_version": "System Version", "ansible_apparmor": {"status": "enabled"}, "ansible_userspace_architecture": "x86_64", "ansible_product_uuid": "NA", "ansible_system": "Linux", "ansible_pkg_mgr": "apt", "ansible_memfree_mb": 31038, "ansible_devices": {"dm-2": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "904937472", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "431.51 GB"}, "loop6": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "0", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "0.00 Bytes"}, "loop4": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "0", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "0.00 Bytes"}, "dm-0": {"scheduler_mode": "", "rotational": "0", "vendor": null, "sectors": "486342656", "links": {"masters": ["dm-3"], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "512", "model": null, "partitions": {}, "holders": ["mint--vg-root"], "size": "231.91 GB"}, "sda": {"scheduler_mode": "cfq", "rotational": "0", "vendor": "ATA", "sectors": "488397168", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "SATA controller: Intel Corporation Sunrise Point-H SATA controller [AHCI mode] (rev 31)", "sectorsize": "512", "removable": "0", "support_discard": "512", "model": "Samsung SSD 850", "partitions": {"sda2": {"sectorsize": 512, "uuid": null, "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sectors": "999424", "start": "1050624", "holders": [], "size": "488.00 MB"}, "sda3": {"sectorsize": 512, "uuid": null, "links": {"masters": ["dm-0"], "labels": [], "ids": [], "uuids": []}, "sectors": "486346752", "start": "2050048", "holders": ["sda3_crypt"], "size": "231.91 GB"}, "sda1": {"sectorsize": 512, "uuid": null, "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sectors": "1048576", "start": "2048", "holders": [], "size": "512.00 MB"}}, "holders": [], "size": "232.89 GB"}, "sdb": {"scheduler_mode": "cfq", "rotational": "1", "vendor": "ATA", "sectors": "1953525168", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "SATA controller: Intel Corporation Sunrise Point-H SATA controller [AHCI mode] (rev 31)", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": "ST1000DM003-1SB1", "partitions": {"sdb1": {"sectorsize": 512, "uuid": null, "links": {"masters": ["dm-1", "dm-2"], "labels": [], "ids": [], "uuids": []}, "sectors": "1953521664", "start": "2048", "holders": ["backup-backup", "backup-big"], "size": "931.51 GB"}}, "holders": [], "size": "931.51 GB"}, "loop3": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "0", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "0.00 Bytes"}, "loop2": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "0", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "0.00 Bytes"}, "loop1": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "0", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "0.00 Bytes"}, "loop0": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "0", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "0.00 Bytes"}, "loop7": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "0", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "0.00 Bytes"}, "dm-3": {"scheduler_mode": "", "rotational": "0", "vendor": null, "sectors": "486334464", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "512", "model": null, "partitions": {}, "holders": [], "size": "231.90 GB"}, "loop5": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "0", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "0.00 Bytes"}, "dm-1": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "1048576000", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "500.00 GB"}}, "ansible_user_uid": 1000, "ansible_memory_mb": {"real": {"total": 32055, "used": 1017, "free": 31038}, "swap": {"cached": 0, "total": 0, "free": 0, "used": 0}, "nocache": {"used": 794, "free": 31261}}, "ansible_distribution": "Ubuntu", "ansible_user_dir": "/home/devops", "ansible_dns": {"nameservers": ["10.204.90.1"], "search": ["lxd"]}, "ansible_distribution_major_version": "16", "module_setup": true, "ansible_processor_count": 1, "ansible_hostname": "test-db2", "ansible_effective_group_id": 1000, "ansible_swaptotal_mb": 0, "ansible_lsb": {"release": "16.04", "major_release": "16", "codename": "xenial", "id": "Ubuntu", "description": "Ubuntu 16.04.2 LTS"}, "ansible_real_group_id": 1000, "ansible_bios_date": "05/10/2016", "ansible_all_ipv6_addresses": ["fe80::216:3eff:feed:1235"], "ansible_interfaces": ["lo", "eth0"], "ansible_uptime_seconds": 276878, "ansible_user_shell": "/bin/bash", "ansible_machine_id": "f989af7281f24f36ace09fd88404d258", "ansible_kernel": "4.10.0-20-generic", "ansible_user_gecos": "DevOps User", "ansible_system_capabilities_enforced": "True", "ansible_python": {"executable": "/usr/bin/python", "version": {"micro": 12, "major": 2, "releaselevel": "final", "serial": 0, "minor": 7}, "type": "CPython", "has_sslcontext": true, "version_info": [2, 7, 12, "final", 0]}, "ansible_processor_threads_per_core": 2, "ansible_fqdn": "test-db2", "ansible_user_gid": 1000, "ansible_eth0": {"macaddress": "00:16:3e:ed:12:35", "features": {"tx_checksum_ipv4": "off [fixed]", "generic_receive_offload": "on", "tx_checksum_ipv6": "off [fixed]", "tx_scatter_gather_fraglist": "on", "rx_all": "off [fixed]", "highdma": "on", "rx_fcs": "off [fixed]", "tx_lockless": "on [fixed]", "tx_tcp_ecn_segmentation": "on", "tx_gso_robust": "off [fixed]", "tx_tcp_mangleid_segmentation": "on", "tx_ipxip4_segmentation": "on", "tx_checksumming": "on", "vlan_challenged": "off [fixed]", "loopback": "off [fixed]", "tx_ipxip6_segmentation": "on", "fcoe_mtu": "off [fixed]", "scatter_gather": "on", "tx_checksum_sctp": "on", "tx_vlan_stag_hw_insert": "on", "rx_vlan_stag_hw_parse": "on", "tx_gso_partial": "off [fixed]", "rx_vlan_stag_filter": "off [fixed]", "large_receive_offload": "off [fixed]", "tx_scatter_gather": "on", "rx_checksumming": "on", "tx_tcp_segmentation": "on", "netns_local": "off [fixed]", "busy_poll": "off [fixed]", "generic_segmentation_offload": "on", "tx_udp_tnl_segmentation": "on", "tcp_segmentation_offload": "on", "l2_fwd_offload": "off [fixed]", "rx_vlan_offload": "on", "ntuple_filters": "off [fixed]", "tx_gre_csum_segmentation": "on", "tx_tcp6_segmentation": "on", "tx_udp_tnl_csum_segmentation": "on", "udp_fragmentation_offload": "on", "tx_sctp_segmentation": "on", "tx_checksum_fcoe_crc": "off [fixed]", "hw_tc_offload": "off [fixed]", "tx_checksum_ip_generic": "on", "tx_fcoe_segmentation": "off [fixed]", "tx_nocache_copy": "off", "rx_vlan_filter": "off [fixed]", "tx_vlan_offload": "on", "receive_hashing": "off [fixed]", "tx_gre_segmentation": "on"}, "type": "ether", "hw_timestamp_filters": [], "mtu": 1500, "device": "eth0", "promisc": false, "timestamping": ["rx_software", "software"], "ipv4": {"broadcast": "10.204.90.255", "netmask": "255.255.255.0", "network": "10.204.90.0", "address": "10.204.90.113"}, "ipv6": [{"scope": "link", "prefix": "64", "address": "fe80::216:3eff:feed:1235"}], "active": true, "speed": 10000}, "ansible_nodename": "test-db2", "ansible_product_name": "System Product Name", "ansible_machine": "x86_64", "ansible_system_capabilities": [""], "ansible_ssh_host_key_dsa_public": "AAAAB3NzaC1kc3MAAACBAPEO96eyydZiipZNChstYI7lInkQiASmqBUP6g0rr6sg22scSLo0hHg0yprpBBvoC15HX01HBecqE/U//57GuAr1rBXJUvYVINrKXaD3ifcCkAGIx1CpW0H8lwNTXNP3Wc2dzaipkXgasrWxczEE76CgC1wTA/U97w5Kb8N9ax89AAAAFQCe7XFBRUA5kV6SJdTnMPcDLgavQQAAAIABhmqmXaq1785/ZRWeePE5wk3n+jGQrIK16OmONUDxTt0rBrUzMPCq2Z6CwK5/u75NG/KxzZTltn8lYaIqpR/Krf/UzAJWiakxhj61KDpg5XcNRI0uEY1lhu33YCR/R+IzFG+b5kRs5Wtx7iE30w69gd9noSMe1lvGhWZf0nJ3HwAAAIEAm3YHt9D9IWT2dzgox0wozQhJ6q1mJ3JIXCtiDDm1DAj1+Ez+rsArx/O6YLfm4jD/CHEx5yVKl/VpzMmShrMsCEICBuhfQh1vIBQxCZgLTlp7SFzhE39ewoOQ9TFsuWMQ16VlvZ8ZRWckpM+uHPtY5TcLZcoCs/Anp8FIAxd5BaQ=", "ansible_all_ipv4_addresses": ["10.204.90.113"], "ansible_python_version": "2.7.12"}}\n', '')
ok: [test-db1.dev]
ok: [test-db2.dev]
META: ran handlers
TASK [command] *******************************************************************************************************************************************************************************************************************************
task path: /home/muller/git/devops/ansible/dev/test.yml:8
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/basic.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/six/__init__.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/_text.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/pycompat24.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/six/_six.py
Using module file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/modules/commands/command.py
<10.204.90.72> ESTABLISH SSH CONNECTION FOR USER: devops
<10.204.90.72> SSH: EXEC ssh -o PasswordAuthentication=no -o ControlMaster=auto -o ControlPersist=600s -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o User=devops -o ConnectTimeout=10 -o ControlPath=/home/muller/.ansible/cp/27127c052e 10.204.90.72 '/bin/sh -c '"'"'/usr/bin/python && sleep 0'"'"''
<10.204.90.72> (0, '\n{"changed": true, "end": "2017-06-22 15:07:03.391104", "stdout": "test-db1", "cmd": ["hostname"], "start": "2017-06-22 15:07:03.384551", "delta": "0:00:00.006553", "stderr": "", "rc": 0, "invocation": {"module_args": {"warn": true, "executable": null, "_uses_shell": false, "_raw_params": "hostname", "removes": null, "creates": null, "chdir": null}}, "warnings": []}\n', '')
changed: [test-db1.dev] => {
"changed": true,
"cmd": [
"hostname"
],
"delta": "0:00:00.006553",
"end": "2017-06-22 15:07:03.391104",
"failed": false,
"invocation": {
"module_args": {
"_raw_params": "hostname",
"_uses_shell": false,
"chdir": null,
"creates": null,
"executable": null,
"removes": null,
"warn": true
}
},
"rc": 0,
"start": "2017-06-22 15:07:03.384551",
"stderr": "",
"stderr_lines": [],
"stdout": "test-db1",
"stdout_lines": [
"test-db1"
]
}
cmd: hostname
stdout:
test-db1
TASK [command] *******************************************************************************************************************************************************************************************************************************
task path: /home/muller/git/devops/ansible/dev/test.yml:11
Using module file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/modules/commands/command.py
<10.204.90.72> ESTABLISH SSH CONNECTION FOR USER: devops
<10.204.90.72> SSH: EXEC ssh -o PasswordAuthentication=no -o ControlMaster=auto -o ControlPersist=600s -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o User=devops -o ConnectTimeout=10 -o ControlPath=/home/muller/.ansible/cp/27127c052e 10.204.90.72 '/bin/sh -c '"'"'/usr/bin/python && sleep 0'"'"''
<10.204.90.72> (0, '\n{"changed": true, "end": "2017-06-22 15:07:03.485291", "stdout": "test-db1", "cmd": ["hostname"], "start": "2017-06-22 15:07:03.478684", "delta": "0:00:00.006607", "stderr": "", "rc": 0, "invocation": {"module_args": {"warn": true, "executable": null, "_uses_shell": false, "_raw_params": "hostname", "removes": null, "creates": null, "chdir": null}}, "warnings": []}\n', '')
changed: [test-db1.dev -> 10.204.90.72] => {
"changed": true,
"cmd": [
"hostname"
],
"delta": "0:00:00.006607",
"end": "2017-06-22 15:07:03.485291",
"failed": false,
"invocation": {
"module_args": {
"_raw_params": "hostname",
"_uses_shell": false,
"chdir": null,
"creates": null,
"executable": null,
"removes": null,
"warn": true
}
},
"rc": 0,
"start": "2017-06-22 15:07:03.478684",
"stderr": "",
"stderr_lines": [],
"stdout": "test-db1",
"stdout_lines": [
"test-db1"
]
}
cmd: hostname
stdout:
test-db1
TASK [command] *******************************************************************************************************************************************************************************************************************************
task path: /home/muller/git/devops/ansible/dev/test.yml:15
Using module file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/modules/commands/command.py
<test-db1.dev> ESTABLISH SSH CONNECTION FOR USER: None
<test-db1.dev> SSH: EXEC ssh -o PasswordAuthentication=no -o ControlMaster=auto -o ControlPersist=600s -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=10 -o ControlPath=/home/muller/.ansible/cp/7aed99ec70 test-db1.dev '/bin/sh -c '"'"'/usr/bin/python && sleep 0'"'"''
fatal: [test-db1.dev]: UNREACHABLE! => {
"changed": false,
"msg": "SSH Error: data could not be sent to remote host \"test-db1.dev\". Make sure this host can be reached over ssh",
"unreachable": true
}
msg:
SSH Error: data could not be sent to remote host "test-db1.dev". Make sure this host can be reached over ssh
NO MORE HOSTS LEFT ***************************************************************************************************************************************************************************************************************************
to retry, use: --limit @/home/muller/git/devops/ansible/dev/test.retry
PLAY RECAP ***********************************************************************************************************************************************************************************************************************************
test-db1.dev : ok=3 changed=2 unreachable=1 failed=0
test-db2.dev : ok=1 changed=0 unreachable=0 failed=0
TOP 10: Worst performing tasks *************************************************
0.45s Gathering Facts
0.17s command
0.09s command
0.08s command
********************************************************************************
Playbook finished: Thu Jun 22 15:07:03 2017, 4 total tasks. 0:00:00 elapsed. "><pre class="notranslate"><code class="notranslate">ansible-playbook 2.4.0
config file = /home/muller/git/devops/ansible/dev/ansible.cfg
configured module search path = [u'/home/muller/git/devops/lib/ansible/modules']
ansible python module location = /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible
executable location = /home/muller/ansible-devel/bin/ansible-playbook
python version = 2.7.12 (default, Nov 19 2016, 06:48:10) [GCC 5.4.0 20160609]
Using /home/muller/git/devops/ansible/dev/ansible.cfg as config file
Parsed /home/muller/git/devops/ansible/dev/inventory inventory source with ini plugin
PLAYBOOK: test.yml ***************************************************************************************************************************************************************************************************************************
1 plays in test.yml
PLAY [test] **********************************************************************************************************************************************************************************************************************************
TASK [Gathering Facts] ***********************************************************************************************************************************************************************************************************************
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/basic.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/__init__.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/collector.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/namespace.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/default_collectors.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/_text.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/pycompat24.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/six/__init__.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/six/_six.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/timeout.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/network/freebsd.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/virtual/openbsd.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/network/base.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/hardware/dragonfly.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/network/dragonfly.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/hardware/aix.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/network/aix.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/hardware/linux.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/system/platform.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/hardware/hpux.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/system/user.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/hardware/hurd.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/other/facter.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/virtual/sunos.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/network/hpux.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/system/distribution.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/virtual/freebsd.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/system/__init__.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/network/openbsd.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/network/darwin.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/network/linux.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/hardware/sunos.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/network/sunos.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/system/apparmor.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/hardware/openbsd.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/system/local.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/other/ohai.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/other/__init__.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/system/service_mgr.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/network/hurd.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/virtual/hpux.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/system/fips.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/system/selinux.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/virtual/__init__.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/system/pkg_mgr.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/system/dns.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/virtual/base.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/hardware/darwin.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/virtual/dragonfly.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/system/ssh_pub_keys.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/network/__init__.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/hardware/__init__.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/system/lsb.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/system/date_time.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/virtual/netbsd.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/hardware/base.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/system/cmdline.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/hardware/freebsd.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/network/netbsd.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/hardware/netbsd.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/system/caps.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/system/env.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/virtual/linux.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/system/python.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/network/generic_bsd.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/virtual/sysctl.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/utils.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/facts/sysctl.py
Using module file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/modules/system/setup.py
<10.204.90.72> ESTABLISH SSH CONNECTION FOR USER: devops
Using module file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/modules/system/setup.py
<10.204.90.72> SSH: EXEC ssh -o PasswordAuthentication=no -o ControlMaster=auto -o ControlPersist=600s -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o User=devops -o ConnectTimeout=10 -o ControlPath=/home/muller/.ansible/cp/27127c052e 10.204.90.72 '/bin/sh -c '"'"'/usr/bin/python && sleep 0'"'"''
<10.204.90.113> ESTABLISH SSH CONNECTION FOR USER: devops
<10.204.90.113> SSH: EXEC ssh -o PasswordAuthentication=no -o ControlMaster=auto -o ControlPersist=600s -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o User=devops -o ConnectTimeout=10 -o ControlPath=/home/muller/.ansible/cp/237beb25f8 10.204.90.113 '/bin/sh -c '"'"'/usr/bin/python && sleep 0'"'"''
<10.204.90.72> (0, '\n{"invocation": {"module_args": {"filter": "*", "gather_subset": ["!ohai"], "fact_path": "/etc/ansible/facts.d", "gather_timeout": 10}}, "changed": false, "ansible_facts": {"ansible_product_serial": "NA", "ansible_form_factor": "Desktop", "ansible_distribution_file_parsed": true, "ansible_fips": false, "ansible_service_mgr": "systemd", "ansible_user_id": "devops", "ansible_selinux_python_present": false, "ansible_userspace_bits": "64", "ansible_ssh_host_key_rsa_public": "AAAAB3NzaC1yc2EAAAADAQABAAABAQCxINguKDMjaVD9UEY7wZJwJWhev6Sh2jcmJ8M8kEKjUGR0IwAF75/k94nuN+0J3a1Q+vMUSsGTo4SeHyrJkFemP04J2YrWs6HSgu6D9fXQpymwszFFjHcp8d/JbnJRjXTG5wzsvu7UcLqc74Ik29I8XlBfkY7lL1o4Ge/Hl7i/uqqe5O9BcwmrNaJ1tibFtX+WZu3Zngn5HLHZlAtyKlnkshrcYBVuovocPJxOcBUQzkCejELpIOsTDRzhVgL9hGPcLNxZOBOzMQLFbFJPIjHslIbXTPsyDSjamTQ4zH8TZ5FUAZxkBlS583/GY/qkg87U8yQxP7xeXZWOcpmxl/r9", "gather_subset": ["!ohai"], "ansible_ssh_host_key_ecdsa_public": "AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHJPf0k+hqeV9jVaFB+R0Z+OMhBXSlWMTRJwGnVquwUM64GaFFRhlKF1dthgXsvpD+kOy4El9/8s+gm04Ho+d70=", "ansible_local": {}, "ansible_distribution_version": "16.04", "ansible_domain": "", "ansible_distribution_file_path": "/etc/os-release", "ansible_device_links": {"masters": {"sdb1": ["dm-1", "dm-2"], "sda3": ["dm-0"], "dm-0": ["dm-3"]}, "labels": {}, "ids": {}, "uuids": {}}, "ansible_virtualization_type": "lxc", "ansible_ssh_host_key_ed25519_public": "AAAAC3NzaC1lZDI1NTE5AAAAILYk/1/uYbEGWJUAKEHU5kD2P60YfWZp1zDGC3+EsreZ", "ansible_processor_cores": 4, "ansible_virtualization_role": "guest", "ansible_distribution_file_variety": "Debian", "ansible_dns": {"nameservers": ["10.204.90.1"], "search": ["lxd"]}, "ansible_processor_vcpus": 8, "ansible_bios_version": "1801", "ansible_processor": ["GenuineIntel", "Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz", "GenuineIntel", "Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz", "GenuineIntel", "Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz", "GenuineIntel", "Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz", "GenuineIntel", "Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz", "GenuineIntel", "Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz", "GenuineIntel", "Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz", "GenuineIntel", "Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz"], "ansible_date_time": {"weekday_number": "4", "iso8601_basic_short": "20170622T150703", "tz": "CEST", "weeknumber": "25", "hour": "15", "year": "2017", "minute": "07", "tz_offset": "+0200", "month": "06", "epoch": "1498136823", "iso8601_micro": "2017-06-22T13:07:03.214783Z", "weekday": "Thursday", "time": "15:07:03", "date": "2017-06-22", "iso8601": "2017-06-22T13:07:03Z", "day": "22", "iso8601_basic": "20170622T150703214733", "second": "03"}, "ansible_lo": {"features": {"tx_checksum_ipv4": "off [fixed]", "generic_receive_offload": "on", "tx_checksum_ipv6": "off [fixed]", "tx_scatter_gather_fraglist": "on [fixed]", "rx_all": "off [fixed]", "highdma": "on [fixed]", "rx_fcs": "off [fixed]", "tx_lockless": "on [fixed]", "tx_tcp_ecn_segmentation": "on", "tx_gso_robust": "off [fixed]", "tx_tcp_mangleid_segmentation": "on", "tx_ipxip4_segmentation": "off [fixed]", "tx_checksumming": "on", "vlan_challenged": "on [fixed]", "loopback": "on [fixed]", "tx_ipxip6_segmentation": "off [fixed]", "fcoe_mtu": "off [fixed]", "scatter_gather": "on", "tx_checksum_sctp": "on [fixed]", "tx_vlan_stag_hw_insert": "off [fixed]", "rx_vlan_stag_hw_parse": "off [fixed]", "tx_gso_partial": "off [fixed]", "rx_vlan_stag_filter": "off [fixed]", "large_receive_offload": "off [fixed]", "tx_scatter_gather": "on [fixed]", "rx_checksumming": "on [fixed]", "tx_tcp_segmentation": "on", "netns_local": "on [fixed]", "busy_poll": "off [fixed]", "generic_segmentation_offload": "on", "tx_udp_tnl_segmentation": "off [fixed]", "tcp_segmentation_offload": "on", "l2_fwd_offload": "off [fixed]", "rx_vlan_offload": "off [fixed]", "ntuple_filters": "off [fixed]", "tx_gre_csum_segmentation": "off [fixed]", "tx_tcp6_segmentation": "on", "tx_udp_tnl_csum_segmentation": "off [fixed]", "udp_fragmentation_offload": "on", "tx_sctp_segmentation": "on", "tx_checksum_fcoe_crc": "off [fixed]", "hw_tc_offload": "off [fixed]", "tx_checksum_ip_generic": "on [fixed]", "tx_fcoe_segmentation": "off [fixed]", "tx_nocache_copy": "off [fixed]", "rx_vlan_filter": "off [fixed]", "tx_vlan_offload": "off [fixed]", "receive_hashing": "off [fixed]", "tx_gre_segmentation": "off [fixed]"}, "hw_timestamp_filters": [], "mtu": 65536, "device": "lo", "promisc": false, "timestamping": ["rx_software", "software"], "ipv4": {"broadcast": "host", "netmask": "255.0.0.0", "network": "127.0.0.0", "address": "127.0.0.1"}, "ipv6": [{"scope": "host", "prefix": "128", "address": "::1"}], "active": true, "type": "loopback"}, "ansible_memtotal_mb": 32055, "ansible_architecture": "x86_64", "ansible_real_user_id": 1000, "ansible_default_ipv4": {"macaddress": "00:16:3e:9a:5c:5e", "network": "10.204.90.0", "mtu": 1500, "broadcast": "10.204.90.255", "alias": "eth0", "netmask": "255.255.255.0", "address": "10.204.90.72", "interface": "eth0", "type": "ether", "gateway": "10.204.90.1"}, "ansible_swapfree_mb": 0, "ansible_default_ipv6": {}, "ansible_distribution_release": "xenial", "ansible_system_vendor": "System manufacturer", "ansible_os_family": "Debian", "ansible_cmdline": {"intel_idle.max_cstate": "1", "BOOT_IMAGE": "/vmlinuz-4.10.0-20-generic", "quiet": true, "splash": true, "vt.handoff": "7", "ro": true, "root": "/dev/mapper/mint--vg-root"}, "ansible_effective_user_id": 1000, "ansible_mounts": [{"block_used": 43078280, "uuid": "N/A", "size_total": 244960526336, "block_total": 59804816, "mount": "/", "block_available": 16726536, "size_available": 68511891456, "fstype": "ext4", "inode_total": 15204352, "options": "rw,relatime,errors=remount-ro,data=ordered,bind", "device": "/dev/mapper/mint--vg-root", "inode_used": 1805349, "block_size": 4096, "inode_available": 13399003}], "ansible_selinux": false, "ansible_product_version": "System Version", "ansible_apparmor": {"status": "enabled"}, "ansible_userspace_architecture": "x86_64", "ansible_product_uuid": "NA", "ansible_system": "Linux", "ansible_pkg_mgr": "apt", "ansible_memfree_mb": 31023, "ansible_devices": {"dm-2": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "904937472", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "431.51 GB"}, "loop6": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "0", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "0.00 Bytes"}, "loop4": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "0", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "0.00 Bytes"}, "dm-0": {"scheduler_mode": "", "rotational": "0", "vendor": null, "sectors": "486342656", "links": {"masters": ["dm-3"], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "512", "model": null, "partitions": {}, "holders": ["mint--vg-root"], "size": "231.91 GB"}, "sda": {"scheduler_mode": "cfq", "rotational": "0", "vendor": "ATA", "sectors": "488397168", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "SATA controller: Intel Corporation Sunrise Point-H SATA controller [AHCI mode] (rev 31)", "sectorsize": "512", "removable": "0", "support_discard": "512", "model": "Samsung SSD 850", "partitions": {"sda2": {"sectorsize": 512, "uuid": null, "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sectors": "999424", "start": "1050624", "holders": [], "size": "488.00 MB"}, "sda3": {"sectorsize": 512, "uuid": null, "links": {"masters": ["dm-0"], "labels": [], "ids": [], "uuids": []}, "sectors": "486346752", "start": "2050048", "holders": ["sda3_crypt"], "size": "231.91 GB"}, "sda1": {"sectorsize": 512, "uuid": null, "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sectors": "1048576", "start": "2048", "holders": [], "size": "512.00 MB"}}, "holders": [], "size": "232.89 GB"}, "sdb": {"scheduler_mode": "cfq", "rotational": "1", "vendor": "ATA", "sectors": "1953525168", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "SATA controller: Intel Corporation Sunrise Point-H SATA controller [AHCI mode] (rev 31)", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": "ST1000DM003-1SB1", "partitions": {"sdb1": {"sectorsize": 512, "uuid": null, "links": {"masters": ["dm-1", "dm-2"], "labels": [], "ids": [], "uuids": []}, "sectors": "1953521664", "start": "2048", "holders": ["backup-backup", "backup-big"], "size": "931.51 GB"}}, "holders": [], "size": "931.51 GB"}, "loop3": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "0", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "0.00 Bytes"}, "loop2": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "0", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "0.00 Bytes"}, "loop1": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "0", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "0.00 Bytes"}, "loop0": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "0", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "0.00 Bytes"}, "loop7": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "0", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "0.00 Bytes"}, "dm-3": {"scheduler_mode": "", "rotational": "0", "vendor": null, "sectors": "486334464", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "512", "model": null, "partitions": {}, "holders": [], "size": "231.90 GB"}, "loop5": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "0", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "0.00 Bytes"}, "dm-1": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "1048576000", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "500.00 GB"}}, "ansible_user_uid": 1000, "ansible_memory_mb": {"real": {"total": 32055, "used": 1032, "free": 31023}, "swap": {"cached": 0, "total": 0, "free": 0, "used": 0}, "nocache": {"used": 909, "free": 31146}}, "ansible_distribution": "Ubuntu", "ansible_user_dir": "/home/devops", "ansible_env": {"LC_NUMERIC": "nl_NL.UTF-8", "LC_CTYPE": "en_US.UTF-8", "SSH_CLIENT": "10.204.90.1 46434 22", "LOGNAME": "devops", "USER": "devops", "HOME": "/home/devops", "LC_PAPER": "nl_NL.UTF-8", "PATH": "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games", "LANG": "C", "SHELL": "/bin/bash", "SHLVL": "1", "LC_MONETARY": "nl_NL.UTF-8", "LC_ADDRESS": "nl_NL.UTF-8", "LC_ALL": "C", "_": "/bin/sh", "LC_IDENTIFICATION": "nl_NL.UTF-8", "LC_MESSAGES": "C", "LC_COLLATE": "en_US.UTF-8", "LC_TELEPHONE": "nl_NL.UTF-8", "LC_MEASUREMENT": "nl_NL.UTF-8", "PWD": "/home/devops", "LC_NAME": "nl_NL.UTF-8", "MAIL": "/var/mail/devops", "LC_TIME": "en_US.UTF-8", "SSH_CONNECTION": "10.204.90.1 46434 10.204.90.72 22"}, "ansible_distribution_major_version": "16", "module_setup": true, "ansible_processor_count": 1, "ansible_hostname": "test-db1", "ansible_effective_group_id": 1000, "ansible_swaptotal_mb": 0, "ansible_lsb": {"release": "16.04", "major_release": "16", "codename": "xenial", "id": "Ubuntu", "description": "Ubuntu 16.04.2 LTS"}, "ansible_real_group_id": 1000, "ansible_bios_date": "05/10/2016", "ansible_all_ipv6_addresses": ["fe80::216:3eff:fe9a:5c5e"], "ansible_interfaces": ["lo", "eth0"], "ansible_uptime_seconds": 3049626, "ansible_user_shell": "/bin/bash", "ansible_machine_id": "9b3896a004fe4b4f8a6b05c4f86095ee", "ansible_kernel": "4.10.0-20-generic", "ansible_user_gecos": "DevOps User", "ansible_system_capabilities_enforced": "True", "ansible_python": {"executable": "/usr/bin/python", "version": {"micro": 12, "major": 2, "releaselevel": "final", "serial": 0, "minor": 7}, "type": "CPython", "has_sslcontext": true, "version_info": [2, 7, 12, "final", 0]}, "ansible_processor_threads_per_core": 2, "ansible_fqdn": "test-db1", "ansible_user_gid": 1000, "ansible_eth0": {"macaddress": "00:16:3e:9a:5c:5e", "features": {"tx_checksum_ipv4": "off [fixed]", "generic_receive_offload": "on", "tx_checksum_ipv6": "off [fixed]", "tx_scatter_gather_fraglist": "on", "rx_all": "off [fixed]", "highdma": "on", "rx_fcs": "off [fixed]", "tx_lockless": "on [fixed]", "tx_tcp_ecn_segmentation": "on", "tx_gso_robust": "off [fixed]", "tx_tcp_mangleid_segmentation": "on", "tx_ipxip4_segmentation": "on", "tx_checksumming": "on", "vlan_challenged": "off [fixed]", "loopback": "off [fixed]", "tx_ipxip6_segmentation": "on", "fcoe_mtu": "off [fixed]", "scatter_gather": "on", "tx_checksum_sctp": "on", "tx_vlan_stag_hw_insert": "on", "rx_vlan_stag_hw_parse": "on", "tx_gso_partial": "off [fixed]", "rx_vlan_stag_filter": "off [fixed]", "large_receive_offload": "off [fixed]", "tx_scatter_gather": "on", "rx_checksumming": "on", "tx_tcp_segmentation": "on", "netns_local": "off [fixed]", "busy_poll": "off [fixed]", "generic_segmentation_offload": "on", "tx_udp_tnl_segmentation": "on", "tcp_segmentation_offload": "on", "l2_fwd_offload": "off [fixed]", "rx_vlan_offload": "on", "ntuple_filters": "off [fixed]", "tx_gre_csum_segmentation": "on", "tx_tcp6_segmentation": "on", "tx_udp_tnl_csum_segmentation": "on", "udp_fragmentation_offload": "on", "tx_sctp_segmentation": "on", "tx_checksum_fcoe_crc": "off [fixed]", "hw_tc_offload": "off [fixed]", "tx_checksum_ip_generic": "on", "tx_fcoe_segmentation": "off [fixed]", "tx_nocache_copy": "off", "rx_vlan_filter": "off [fixed]", "tx_vlan_offload": "on", "receive_hashing": "off [fixed]", "tx_gre_segmentation": "on"}, "type": "ether", "hw_timestamp_filters": [], "mtu": 1500, "device": "eth0", "promisc": false, "timestamping": ["rx_software", "software"], "ipv4": {"broadcast": "10.204.90.255", "netmask": "255.255.255.0", "network": "10.204.90.0", "address": "10.204.90.72"}, "ipv6": [{"scope": "link", "prefix": "64", "address": "fe80::216:3eff:fe9a:5c5e"}], "active": true, "speed": 10000}, "ansible_nodename": "test-db1", "ansible_product_name": "System Product Name", "ansible_machine": "x86_64", "ansible_system_capabilities": [""], "ansible_ssh_host_key_dsa_public": "AAAAB3NzaC1kc3MAAACBAJvwTGz897iXKZ/SjhNTe/qa8EOMaGSsRgZpaMKtpuo23LPoXDnjUFocMHmJKADQGnuBYm+TgbjuB8do4fLX/ljXec3LprJHfUdh93HLHof3xFC43nTIl9eNeVO4ka7jWnps621g0rd2Virq83h1osdIumbxcemlqn7ELQsOqe1LAAAAFQCIQtOfidX2CaQkijP1f+dzcRp29QAAAIAZR3OLuCo301a69OPcDtJOprxt9fTv3AmqBZflqPY7SewbuqmdG3ikQfphCB/zn3jgNQClm58vSHnLIQlPzdYZ8rtsAfkdUeRzuJhmyMxSO5tED0/dySK2aDCmyuVkN+D6IQrvgFGL98dPiUi5DYXQY1OxYGdg3a2iGPI0vJUnCQAAAIEAmQ9q2diAReW/NAacQy4YxWoTNhYAw82lnKPG1i0fnJTQrZgsLpasNIKq6qFNOmLRzO2uyFu/tmeOhQlQd+4Y9WX8jeyRJnElnAZE73WrRNyWrmaqPekWKHwUQlv233IT1WNebuABYp54MHbTQDUBWPz0qhcqxQ12BUq/LVcEQBQ=", "ansible_all_ipv4_addresses": ["10.204.90.72"], "ansible_python_version": "2.7.12"}}\n', '')
<10.204.90.113> (0, '\n{"invocation": {"module_args": {"filter": "*", "gather_subset": ["!ohai"], "fact_path": "/etc/ansible/facts.d", "gather_timeout": 10}}, "changed": false, "ansible_facts": {"ansible_product_serial": "NA", "ansible_form_factor": "Desktop", "ansible_distribution_file_parsed": true, "ansible_fips": false, "ansible_service_mgr": "systemd", "ansible_user_id": "devops", "ansible_selinux_python_present": false, "ansible_userspace_bits": "64", "ansible_ssh_host_key_rsa_public": "AAAAB3NzaC1yc2EAAAADAQABAAABAQCX/4zGK4DU/OEfyTDNPPDBQsNvOskyHBjI4estQcFjv9RqZa/dnQjgeCIL77xCdPfwAXEEOQd62UGQF50ZX0VmfdxSnGNnd1mKBQgzAvbxKhHSqP1Fo+FA2k8+xz6pWadQsWHE26KMIedkda71eepk3QaV5PsfDlo6n0fBQm4cNvbeADsghY6KcG4mBmudKVFwoNvljd8hmNYbuvZ6jf2pKEWdc0rYSJcfSJ/vZ8I26y1O6LQkRXD1lyezRnb3kk6aVjXwZHNblfK0BwBTfjlE1nQmLP0mNKpjYfhkutE1kdTDDIn+S7a8EZq9QWZGg14DdJa7rUcB8NBuohuWWds9", "gather_subset": ["!ohai"], "ansible_ssh_host_key_ecdsa_public": "AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFVHoFwVwTL7oG4LVqtXkonFCyQEM7Tm0jMrfZXw8x9vCvsuN9WAy34Ug8pn9mFloDhh3xCLZEBvHQZEvinz/00=", "ansible_local": {}, "ansible_distribution_version": "16.04", "ansible_domain": "", "ansible_distribution_file_path": "/etc/os-release", "ansible_device_links": {"masters": {"sdb1": ["dm-1", "dm-2"], "sda3": ["dm-0"], "dm-0": ["dm-3"]}, "labels": {}, "ids": {}, "uuids": {}}, "ansible_virtualization_type": "lxc", "ansible_ssh_host_key_ed25519_public": "AAAAC3NzaC1lZDI1NTE5AAAAIHkHOrJpIKI7016lp4Hl/DDEJsJRtW832NyYrFy/w4JN", "ansible_processor_cores": 4, "ansible_virtualization_role": "guest", "ansible_distribution_file_variety": "Debian", "ansible_env": {"LC_NUMERIC": "nl_NL.UTF-8", "LC_CTYPE": "en_US.UTF-8", "SSH_CLIENT": "10.204.90.1 41956 22", "LOGNAME": "devops", "USER": "devops", "HOME": "/home/devops", "LC_PAPER": "nl_NL.UTF-8", "PATH": "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games", "LANG": "C", "SHELL": "/bin/bash", "SHLVL": "1", "LC_MONETARY": "nl_NL.UTF-8", "LC_ADDRESS": "nl_NL.UTF-8", "LC_ALL": "C", "_": "/bin/sh", "LC_IDENTIFICATION": "nl_NL.UTF-8", "LC_MESSAGES": "C", "LC_COLLATE": "en_US.UTF-8", "LC_TELEPHONE": "nl_NL.UTF-8", "LC_MEASUREMENT": "nl_NL.UTF-8", "PWD": "/home/devops", "LC_NAME": "nl_NL.UTF-8", "MAIL": "/var/mail/devops", "LC_TIME": "en_US.UTF-8", "SSH_CONNECTION": "10.204.90.1 41956 10.204.90.113 22"}, "ansible_processor_vcpus": 8, "ansible_bios_version": "1801", "ansible_processor": ["GenuineIntel", "Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz", "GenuineIntel", "Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz", "GenuineIntel", "Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz", "GenuineIntel", "Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz", "GenuineIntel", "Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz", "GenuineIntel", "Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz", "GenuineIntel", "Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz", "GenuineIntel", "Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz"], "ansible_date_time": {"weekday_number": "4", "iso8601_basic_short": "20170622T150703", "tz": "CEST", "weeknumber": "25", "hour": "15", "year": "2017", "minute": "07", "tz_offset": "+0200", "month": "06", "epoch": "1498136823", "iso8601_micro": "2017-06-22T13:07:03.219388Z", "weekday": "Thursday", "time": "15:07:03", "date": "2017-06-22", "iso8601": "2017-06-22T13:07:03Z", "day": "22", "iso8601_basic": "20170622T150703219341", "second": "03"}, "ansible_lo": {"features": {"tx_checksum_ipv4": "off [fixed]", "generic_receive_offload": "on", "tx_checksum_ipv6": "off [fixed]", "tx_scatter_gather_fraglist": "on [fixed]", "rx_all": "off [fixed]", "highdma": "on [fixed]", "rx_fcs": "off [fixed]", "tx_lockless": "on [fixed]", "tx_tcp_ecn_segmentation": "on", "tx_gso_robust": "off [fixed]", "tx_tcp_mangleid_segmentation": "on", "tx_ipxip4_segmentation": "off [fixed]", "tx_checksumming": "on", "vlan_challenged": "on [fixed]", "loopback": "on [fixed]", "tx_ipxip6_segmentation": "off [fixed]", "fcoe_mtu": "off [fixed]", "scatter_gather": "on", "tx_checksum_sctp": "on [fixed]", "tx_vlan_stag_hw_insert": "off [fixed]", "rx_vlan_stag_hw_parse": "off [fixed]", "tx_gso_partial": "off [fixed]", "rx_vlan_stag_filter": "off [fixed]", "large_receive_offload": "off [fixed]", "tx_scatter_gather": "on [fixed]", "rx_checksumming": "on [fixed]", "tx_tcp_segmentation": "on", "netns_local": "on [fixed]", "busy_poll": "off [fixed]", "generic_segmentation_offload": "on", "tx_udp_tnl_segmentation": "off [fixed]", "tcp_segmentation_offload": "on", "l2_fwd_offload": "off [fixed]", "rx_vlan_offload": "off [fixed]", "ntuple_filters": "off [fixed]", "tx_gre_csum_segmentation": "off [fixed]", "tx_tcp6_segmentation": "on", "tx_udp_tnl_csum_segmentation": "off [fixed]", "udp_fragmentation_offload": "on", "tx_sctp_segmentation": "on", "tx_checksum_fcoe_crc": "off [fixed]", "hw_tc_offload": "off [fixed]", "tx_checksum_ip_generic": "on [fixed]", "tx_fcoe_segmentation": "off [fixed]", "tx_nocache_copy": "off [fixed]", "rx_vlan_filter": "off [fixed]", "tx_vlan_offload": "off [fixed]", "receive_hashing": "off [fixed]", "tx_gre_segmentation": "off [fixed]"}, "hw_timestamp_filters": [], "mtu": 65536, "device": "lo", "promisc": false, "timestamping": ["rx_software", "software"], "ipv4": {"broadcast": "host", "netmask": "255.0.0.0", "network": "127.0.0.0", "address": "127.0.0.1"}, "ipv6": [{"scope": "host", "prefix": "128", "address": "::1"}], "active": true, "type": "loopback"}, "ansible_memtotal_mb": 32055, "ansible_architecture": "x86_64", "ansible_real_user_id": 1000, "ansible_default_ipv4": {"macaddress": "00:16:3e:ed:12:35", "network": "10.204.90.0", "mtu": 1500, "broadcast": "10.204.90.255", "alias": "eth0", "netmask": "255.255.255.0", "address": "10.204.90.113", "interface": "eth0", "type": "ether", "gateway": "10.204.90.1"}, "ansible_swapfree_mb": 0, "ansible_default_ipv6": {}, "ansible_distribution_release": "xenial", "ansible_system_vendor": "System manufacturer", "ansible_os_family": "Debian", "ansible_cmdline": {"intel_idle.max_cstate": "1", "BOOT_IMAGE": "/vmlinuz-4.10.0-20-generic", "quiet": true, "splash": true, "vt.handoff": "7", "ro": true, "root": "/dev/mapper/mint--vg-root"}, "ansible_effective_user_id": 1000, "ansible_mounts": [{"block_used": 43078280, "uuid": "N/A", "size_total": 244960526336, "block_total": 59804816, "mount": "/", "block_available": 16726536, "size_available": 68511891456, "fstype": "ext4", "inode_total": 15204352, "options": "rw,relatime,errors=remount-ro,data=ordered,bind", "device": "/dev/mapper/mint--vg-root", "inode_used": 1805349, "block_size": 4096, "inode_available": 13399003}], "ansible_selinux": false, "ansible_product_version": "System Version", "ansible_apparmor": {"status": "enabled"}, "ansible_userspace_architecture": "x86_64", "ansible_product_uuid": "NA", "ansible_system": "Linux", "ansible_pkg_mgr": "apt", "ansible_memfree_mb": 31038, "ansible_devices": {"dm-2": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "904937472", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "431.51 GB"}, "loop6": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "0", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "0.00 Bytes"}, "loop4": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "0", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "0.00 Bytes"}, "dm-0": {"scheduler_mode": "", "rotational": "0", "vendor": null, "sectors": "486342656", "links": {"masters": ["dm-3"], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "512", "model": null, "partitions": {}, "holders": ["mint--vg-root"], "size": "231.91 GB"}, "sda": {"scheduler_mode": "cfq", "rotational": "0", "vendor": "ATA", "sectors": "488397168", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "SATA controller: Intel Corporation Sunrise Point-H SATA controller [AHCI mode] (rev 31)", "sectorsize": "512", "removable": "0", "support_discard": "512", "model": "Samsung SSD 850", "partitions": {"sda2": {"sectorsize": 512, "uuid": null, "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sectors": "999424", "start": "1050624", "holders": [], "size": "488.00 MB"}, "sda3": {"sectorsize": 512, "uuid": null, "links": {"masters": ["dm-0"], "labels": [], "ids": [], "uuids": []}, "sectors": "486346752", "start": "2050048", "holders": ["sda3_crypt"], "size": "231.91 GB"}, "sda1": {"sectorsize": 512, "uuid": null, "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sectors": "1048576", "start": "2048", "holders": [], "size": "512.00 MB"}}, "holders": [], "size": "232.89 GB"}, "sdb": {"scheduler_mode": "cfq", "rotational": "1", "vendor": "ATA", "sectors": "1953525168", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "SATA controller: Intel Corporation Sunrise Point-H SATA controller [AHCI mode] (rev 31)", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": "ST1000DM003-1SB1", "partitions": {"sdb1": {"sectorsize": 512, "uuid": null, "links": {"masters": ["dm-1", "dm-2"], "labels": [], "ids": [], "uuids": []}, "sectors": "1953521664", "start": "2048", "holders": ["backup-backup", "backup-big"], "size": "931.51 GB"}}, "holders": [], "size": "931.51 GB"}, "loop3": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "0", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "0.00 Bytes"}, "loop2": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "0", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "0.00 Bytes"}, "loop1": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "0", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "0.00 Bytes"}, "loop0": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "0", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "0.00 Bytes"}, "loop7": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "0", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "0.00 Bytes"}, "dm-3": {"scheduler_mode": "", "rotational": "0", "vendor": null, "sectors": "486334464", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "512", "model": null, "partitions": {}, "holders": [], "size": "231.90 GB"}, "loop5": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "0", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "0.00 Bytes"}, "dm-1": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "1048576000", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "500.00 GB"}}, "ansible_user_uid": 1000, "ansible_memory_mb": {"real": {"total": 32055, "used": 1017, "free": 31038}, "swap": {"cached": 0, "total": 0, "free": 0, "used": 0}, "nocache": {"used": 794, "free": 31261}}, "ansible_distribution": "Ubuntu", "ansible_user_dir": "/home/devops", "ansible_dns": {"nameservers": ["10.204.90.1"], "search": ["lxd"]}, "ansible_distribution_major_version": "16", "module_setup": true, "ansible_processor_count": 1, "ansible_hostname": "test-db2", "ansible_effective_group_id": 1000, "ansible_swaptotal_mb": 0, "ansible_lsb": {"release": "16.04", "major_release": "16", "codename": "xenial", "id": "Ubuntu", "description": "Ubuntu 16.04.2 LTS"}, "ansible_real_group_id": 1000, "ansible_bios_date": "05/10/2016", "ansible_all_ipv6_addresses": ["fe80::216:3eff:feed:1235"], "ansible_interfaces": ["lo", "eth0"], "ansible_uptime_seconds": 276878, "ansible_user_shell": "/bin/bash", "ansible_machine_id": "f989af7281f24f36ace09fd88404d258", "ansible_kernel": "4.10.0-20-generic", "ansible_user_gecos": "DevOps User", "ansible_system_capabilities_enforced": "True", "ansible_python": {"executable": "/usr/bin/python", "version": {"micro": 12, "major": 2, "releaselevel": "final", "serial": 0, "minor": 7}, "type": "CPython", "has_sslcontext": true, "version_info": [2, 7, 12, "final", 0]}, "ansible_processor_threads_per_core": 2, "ansible_fqdn": "test-db2", "ansible_user_gid": 1000, "ansible_eth0": {"macaddress": "00:16:3e:ed:12:35", "features": {"tx_checksum_ipv4": "off [fixed]", "generic_receive_offload": "on", "tx_checksum_ipv6": "off [fixed]", "tx_scatter_gather_fraglist": "on", "rx_all": "off [fixed]", "highdma": "on", "rx_fcs": "off [fixed]", "tx_lockless": "on [fixed]", "tx_tcp_ecn_segmentation": "on", "tx_gso_robust": "off [fixed]", "tx_tcp_mangleid_segmentation": "on", "tx_ipxip4_segmentation": "on", "tx_checksumming": "on", "vlan_challenged": "off [fixed]", "loopback": "off [fixed]", "tx_ipxip6_segmentation": "on", "fcoe_mtu": "off [fixed]", "scatter_gather": "on", "tx_checksum_sctp": "on", "tx_vlan_stag_hw_insert": "on", "rx_vlan_stag_hw_parse": "on", "tx_gso_partial": "off [fixed]", "rx_vlan_stag_filter": "off [fixed]", "large_receive_offload": "off [fixed]", "tx_scatter_gather": "on", "rx_checksumming": "on", "tx_tcp_segmentation": "on", "netns_local": "off [fixed]", "busy_poll": "off [fixed]", "generic_segmentation_offload": "on", "tx_udp_tnl_segmentation": "on", "tcp_segmentation_offload": "on", "l2_fwd_offload": "off [fixed]", "rx_vlan_offload": "on", "ntuple_filters": "off [fixed]", "tx_gre_csum_segmentation": "on", "tx_tcp6_segmentation": "on", "tx_udp_tnl_csum_segmentation": "on", "udp_fragmentation_offload": "on", "tx_sctp_segmentation": "on", "tx_checksum_fcoe_crc": "off [fixed]", "hw_tc_offload": "off [fixed]", "tx_checksum_ip_generic": "on", "tx_fcoe_segmentation": "off [fixed]", "tx_nocache_copy": "off", "rx_vlan_filter": "off [fixed]", "tx_vlan_offload": "on", "receive_hashing": "off [fixed]", "tx_gre_segmentation": "on"}, "type": "ether", "hw_timestamp_filters": [], "mtu": 1500, "device": "eth0", "promisc": false, "timestamping": ["rx_software", "software"], "ipv4": {"broadcast": "10.204.90.255", "netmask": "255.255.255.0", "network": "10.204.90.0", "address": "10.204.90.113"}, "ipv6": [{"scope": "link", "prefix": "64", "address": "fe80::216:3eff:feed:1235"}], "active": true, "speed": 10000}, "ansible_nodename": "test-db2", "ansible_product_name": "System Product Name", "ansible_machine": "x86_64", "ansible_system_capabilities": [""], "ansible_ssh_host_key_dsa_public": "AAAAB3NzaC1kc3MAAACBAPEO96eyydZiipZNChstYI7lInkQiASmqBUP6g0rr6sg22scSLo0hHg0yprpBBvoC15HX01HBecqE/U//57GuAr1rBXJUvYVINrKXaD3ifcCkAGIx1CpW0H8lwNTXNP3Wc2dzaipkXgasrWxczEE76CgC1wTA/U97w5Kb8N9ax89AAAAFQCe7XFBRUA5kV6SJdTnMPcDLgavQQAAAIABhmqmXaq1785/ZRWeePE5wk3n+jGQrIK16OmONUDxTt0rBrUzMPCq2Z6CwK5/u75NG/KxzZTltn8lYaIqpR/Krf/UzAJWiakxhj61KDpg5XcNRI0uEY1lhu33YCR/R+IzFG+b5kRs5Wtx7iE30w69gd9noSMe1lvGhWZf0nJ3HwAAAIEAm3YHt9D9IWT2dzgox0wozQhJ6q1mJ3JIXCtiDDm1DAj1+Ez+rsArx/O6YLfm4jD/CHEx5yVKl/VpzMmShrMsCEICBuhfQh1vIBQxCZgLTlp7SFzhE39ewoOQ9TFsuWMQ16VlvZ8ZRWckpM+uHPtY5TcLZcoCs/Anp8FIAxd5BaQ=", "ansible_all_ipv4_addresses": ["10.204.90.113"], "ansible_python_version": "2.7.12"}}\n', '')
ok: [test-db1.dev]
ok: [test-db2.dev]
META: ran handlers
TASK [command] *******************************************************************************************************************************************************************************************************************************
task path: /home/muller/git/devops/ansible/dev/test.yml:8
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/basic.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/six/__init__.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/_text.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/pycompat24.py
Using module_utils file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/module_utils/six/_six.py
Using module file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/modules/commands/command.py
<10.204.90.72> ESTABLISH SSH CONNECTION FOR USER: devops
<10.204.90.72> SSH: EXEC ssh -o PasswordAuthentication=no -o ControlMaster=auto -o ControlPersist=600s -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o User=devops -o ConnectTimeout=10 -o ControlPath=/home/muller/.ansible/cp/27127c052e 10.204.90.72 '/bin/sh -c '"'"'/usr/bin/python && sleep 0'"'"''
<10.204.90.72> (0, '\n{"changed": true, "end": "2017-06-22 15:07:03.391104", "stdout": "test-db1", "cmd": ["hostname"], "start": "2017-06-22 15:07:03.384551", "delta": "0:00:00.006553", "stderr": "", "rc": 0, "invocation": {"module_args": {"warn": true, "executable": null, "_uses_shell": false, "_raw_params": "hostname", "removes": null, "creates": null, "chdir": null}}, "warnings": []}\n', '')
changed: [test-db1.dev] => {
"changed": true,
"cmd": [
"hostname"
],
"delta": "0:00:00.006553",
"end": "2017-06-22 15:07:03.391104",
"failed": false,
"invocation": {
"module_args": {
"_raw_params": "hostname",
"_uses_shell": false,
"chdir": null,
"creates": null,
"executable": null,
"removes": null,
"warn": true
}
},
"rc": 0,
"start": "2017-06-22 15:07:03.384551",
"stderr": "",
"stderr_lines": [],
"stdout": "test-db1",
"stdout_lines": [
"test-db1"
]
}
cmd: hostname
stdout:
test-db1
TASK [command] *******************************************************************************************************************************************************************************************************************************
task path: /home/muller/git/devops/ansible/dev/test.yml:11
Using module file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/modules/commands/command.py
<10.204.90.72> ESTABLISH SSH CONNECTION FOR USER: devops
<10.204.90.72> SSH: EXEC ssh -o PasswordAuthentication=no -o ControlMaster=auto -o ControlPersist=600s -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o User=devops -o ConnectTimeout=10 -o ControlPath=/home/muller/.ansible/cp/27127c052e 10.204.90.72 '/bin/sh -c '"'"'/usr/bin/python && sleep 0'"'"''
<10.204.90.72> (0, '\n{"changed": true, "end": "2017-06-22 15:07:03.485291", "stdout": "test-db1", "cmd": ["hostname"], "start": "2017-06-22 15:07:03.478684", "delta": "0:00:00.006607", "stderr": "", "rc": 0, "invocation": {"module_args": {"warn": true, "executable": null, "_uses_shell": false, "_raw_params": "hostname", "removes": null, "creates": null, "chdir": null}}, "warnings": []}\n', '')
changed: [test-db1.dev -> 10.204.90.72] => {
"changed": true,
"cmd": [
"hostname"
],
"delta": "0:00:00.006607",
"end": "2017-06-22 15:07:03.485291",
"failed": false,
"invocation": {
"module_args": {
"_raw_params": "hostname",
"_uses_shell": false,
"chdir": null,
"creates": null,
"executable": null,
"removes": null,
"warn": true
}
},
"rc": 0,
"start": "2017-06-22 15:07:03.478684",
"stderr": "",
"stderr_lines": [],
"stdout": "test-db1",
"stdout_lines": [
"test-db1"
]
}
cmd: hostname
stdout:
test-db1
TASK [command] *******************************************************************************************************************************************************************************************************************************
task path: /home/muller/git/devops/ansible/dev/test.yml:15
Using module file /home/muller/ansible-devel/local/lib/python2.7/site-packages/ansible/modules/commands/command.py
<test-db1.dev> ESTABLISH SSH CONNECTION FOR USER: None
<test-db1.dev> SSH: EXEC ssh -o PasswordAuthentication=no -o ControlMaster=auto -o ControlPersist=600s -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=10 -o ControlPath=/home/muller/.ansible/cp/7aed99ec70 test-db1.dev '/bin/sh -c '"'"'/usr/bin/python && sleep 0'"'"''
fatal: [test-db1.dev]: UNREACHABLE! => {
"changed": false,
"msg": "SSH Error: data could not be sent to remote host \"test-db1.dev\". Make sure this host can be reached over ssh",
"unreachable": true
}
msg:
SSH Error: data could not be sent to remote host "test-db1.dev". Make sure this host can be reached over ssh
NO MORE HOSTS LEFT ***************************************************************************************************************************************************************************************************************************
to retry, use: --limit @/home/muller/git/devops/ansible/dev/test.retry
PLAY RECAP ***********************************************************************************************************************************************************************************************************************************
test-db1.dev : ok=3 changed=2 unreachable=1 failed=0
test-db2.dev : ok=1 changed=0 unreachable=0 failed=0
TOP 10: Worst performing tasks *************************************************
0.45s Gathering Facts
0.17s command
0.09s command
0.08s command
********************************************************************************
Playbook finished: Thu Jun 22 15:07:03 2017, 4 total tasks. 0:00:00 elapsed.
</code></pre></div> | 0 |
<p dir="auto">Failed twice in a row.</p>
<p dir="auto"><a href="https://console.cloud.google.com/storage/kubernetes-jenkins/logs/kubernetes-e2e-gce/17165/" rel="nofollow">https://console.cloud.google.com/storage/kubernetes-jenkins/logs/kubernetes-e2e-gce/17165/</a></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="
[BeforeEach] [k8s.io] Kubectl client
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:108
STEP: Creating a kubernetes client
May 18 14:02:53.496: INFO: >>> TestContext.KubeConfig: /workspace/.kube/config
STEP: Building a namespace api object
STEP: Waiting for a default service account to be provisioned in namespace
[BeforeEach] [k8s.io] Kubectl client
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:159
[It] should create services for rc [Conformance]
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:836
STEP: creating Redis RC
May 18 14:02:54.196: INFO: namespace e2e-tests-kubectl-d9k9e
May 18 14:02:54.197: INFO: Running '/workspace/kubernetes/platforms/linux/amd64/kubectl --server=https://107.178.213.226 --kubeconfig=/workspace/.kube/config create -f - --namespace=e2e-tests-kubectl-d9k9e'
May 18 14:02:54.511: INFO: stderr: ""
May 18 14:02:54.511: INFO: stdout: "replicationcontroller \"redis-master\" created\n"
STEP: Waiting for Redis master to start.
May 18 14:02:55.569: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:02:55.569: INFO: Found 0 / 1
May 18 14:02:56.526: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:02:56.526: INFO: Found 0 / 1
May 18 14:02:57.546: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:02:57.547: INFO: Found 0 / 1
May 18 14:02:58.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:02:58.516: INFO: Found 0 / 1
May 18 14:02:59.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:02:59.516: INFO: Found 0 / 1
May 18 14:03:00.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:00.516: INFO: Found 0 / 1
May 18 14:03:01.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:01.516: INFO: Found 0 / 1
May 18 14:03:02.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:02.516: INFO: Found 0 / 1
May 18 14:03:03.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:03.516: INFO: Found 0 / 1
May 18 14:03:04.802: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:04.802: INFO: Found 0 / 1
May 18 14:03:05.548: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:05.548: INFO: Found 0 / 1
May 18 14:03:06.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:06.516: INFO: Found 0 / 1
May 18 14:03:07.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:07.515: INFO: Found 0 / 1
May 18 14:03:08.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:08.515: INFO: Found 0 / 1
May 18 14:03:09.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:09.516: INFO: Found 0 / 1
May 18 14:03:10.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:10.516: INFO: Found 0 / 1
May 18 14:03:11.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:11.516: INFO: Found 0 / 1
May 18 14:03:12.517: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:12.517: INFO: Found 0 / 1
May 18 14:03:13.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:13.516: INFO: Found 0 / 1
May 18 14:03:14.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:14.515: INFO: Found 0 / 1
May 18 14:03:15.517: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:15.517: INFO: Found 0 / 1
May 18 14:03:16.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:16.516: INFO: Found 0 / 1
May 18 14:03:17.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:17.516: INFO: Found 0 / 1
May 18 14:03:18.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:18.516: INFO: Found 0 / 1
May 18 14:03:19.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:19.516: INFO: Found 0 / 1
May 18 14:03:20.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:20.516: INFO: Found 0 / 1
May 18 14:03:21.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:21.516: INFO: Found 0 / 1
May 18 14:03:22.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:22.516: INFO: Found 0 / 1
May 18 14:03:23.518: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:23.518: INFO: Found 0 / 1
May 18 14:03:24.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:24.516: INFO: Found 0 / 1
May 18 14:03:25.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:25.515: INFO: Found 0 / 1
May 18 14:03:26.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:26.515: INFO: Found 0 / 1
May 18 14:03:27.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:27.516: INFO: Found 0 / 1
May 18 14:03:28.517: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:28.518: INFO: Found 0 / 1
May 18 14:03:29.517: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:29.517: INFO: Found 0 / 1
May 18 14:03:30.517: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:30.517: INFO: Found 0 / 1
May 18 14:03:31.521: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:31.521: INFO: Found 0 / 1
May 18 14:03:32.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:32.515: INFO: Found 0 / 1
May 18 14:03:33.520: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:33.521: INFO: Found 0 / 1
May 18 14:03:34.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:34.516: INFO: Found 0 / 1
May 18 14:03:35.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:35.515: INFO: Found 0 / 1
May 18 14:03:36.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:36.515: INFO: Found 0 / 1
May 18 14:03:37.517: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:37.517: INFO: Found 0 / 1
May 18 14:03:38.523: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:38.523: INFO: Found 0 / 1
May 18 14:03:39.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:39.516: INFO: Found 0 / 1
May 18 14:03:40.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:40.515: INFO: Found 0 / 1
May 18 14:03:41.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:41.516: INFO: Found 0 / 1
May 18 14:03:42.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:42.516: INFO: Found 0 / 1
May 18 14:03:43.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:43.516: INFO: Found 0 / 1
May 18 14:03:44.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:44.516: INFO: Found 0 / 1
May 18 14:03:45.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:45.515: INFO: Found 0 / 1
May 18 14:03:46.517: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:46.517: INFO: Found 0 / 1
May 18 14:03:47.532: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:47.532: INFO: Found 0 / 1
May 18 14:03:48.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:48.516: INFO: Found 0 / 1
May 18 14:03:49.527: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:49.527: INFO: Found 0 / 1
May 18 14:03:50.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:50.515: INFO: Found 0 / 1
May 18 14:03:51.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:51.516: INFO: Found 0 / 1
May 18 14:03:52.517: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:52.517: INFO: Found 0 / 1
May 18 14:03:53.522: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:53.522: INFO: Found 0 / 1
May 18 14:03:54.517: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:54.517: INFO: Found 0 / 1
May 18 14:03:55.520: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:55.520: INFO: Found 0 / 1
May 18 14:03:56.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:56.515: INFO: Found 0 / 1
May 18 14:03:57.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:57.515: INFO: Found 0 / 1
May 18 14:03:58.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:58.516: INFO: Found 0 / 1
May 18 14:03:59.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:59.516: INFO: Found 0 / 1
May 18 14:04:00.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:00.516: INFO: Found 0 / 1
May 18 14:04:01.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:01.516: INFO: Found 0 / 1
May 18 14:04:02.517: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:02.517: INFO: Found 0 / 1
May 18 14:04:03.517: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:03.517: INFO: Found 0 / 1
May 18 14:04:04.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:04.516: INFO: Found 0 / 1
May 18 14:04:05.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:05.515: INFO: Found 0 / 1
May 18 14:04:06.517: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:06.517: INFO: Found 0 / 1
May 18 14:04:07.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:07.515: INFO: Found 0 / 1
May 18 14:04:08.517: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:08.517: INFO: Found 0 / 1
May 18 14:04:09.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:09.515: INFO: Found 0 / 1
May 18 14:04:10.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:10.515: INFO: Found 0 / 1
May 18 14:04:11.517: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:11.517: INFO: Found 0 / 1
May 18 14:04:12.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:12.515: INFO: Found 0 / 1
May 18 14:04:13.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:13.516: INFO: Found 0 / 1
May 18 14:04:14.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:14.515: INFO: Found 0 / 1
May 18 14:04:15.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:15.515: INFO: Found 0 / 1
May 18 14:04:16.518: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:16.518: INFO: Found 0 / 1
May 18 14:04:17.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:17.515: INFO: Found 0 / 1
May 18 14:04:18.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:18.516: INFO: Found 0 / 1
May 18 14:04:19.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:19.516: INFO: Found 0 / 1
May 18 14:04:20.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:20.515: INFO: Found 0 / 1
May 18 14:04:21.528: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:21.528: INFO: Found 0 / 1
May 18 14:04:22.549: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:22.549: INFO: Found 0 / 1
May 18 14:04:23.560: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:23.560: INFO: Found 0 / 1
May 18 14:04:24.524: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:24.524: INFO: Found 0 / 1
May 18 14:04:24.537: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:24.537: INFO: Found 0 / 1
May 18 14:04:24.537: INFO: WaitFor completed with timeout 1m30s. Pods found = 0 out of 1
May 18 14:04:24.567: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:24.567: INFO: No pods matched the filter.
[AfterEach] [k8s.io] Kubectl client
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:109
STEP: Collecting events from namespace "e2e-tests-kubectl-d9k9e".
May 18 14:04:24.577: INFO: At {2016-05-18 14:02:54 -0700 PDT} - event for redis-master: {replication-controller } SuccessfulCreate: Created pod: redis-master-k17l4
May 18 14:04:24.577: INFO: At {2016-05-18 14:02:54 -0700 PDT} - event for redis-master-k17l4: {default-scheduler } Scheduled: Successfully assigned redis-master-k17l4 to jenkins-e2e-minion-ucas
May 18 14:04:24.577: INFO: At {2016-05-18 14:02:55 -0700 PDT} - event for redis-master-k17l4: {kubelet jenkins-e2e-minion-ucas} Pulling: pulling image "redis:2.8.23"
May 18 14:04:24.615: INFO: POD NODE PHASE GRACE CONDITIONS
May 18 14:04:24.615: INFO: test-webserver-0cf9ee1c-1d3c-11e6-9582-0242ac11001a jenkins-e2e-minion-ucas Pending [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:03 -0700 PDT} } {Ready False {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:03 -0700 PDT} ContainersNotReady containers with unready status: [test-webserber]} {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:03 -0700 PDT} }]
May 18 14:04:24.615: INFO: test-rollover-controller-6o0vh jenkins-e2e-minion-u1pq Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:54 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:56 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:54 -0700 PDT} }]
May 18 14:04:24.615: INFO: test-rollover-controller-hpes6 jenkins-e2e-minion-ucas Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:54 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:23 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:54 -0700 PDT} }]
May 18 14:04:24.615: INFO: test-rollover-controller-xgwno jenkins-e2e-minion-ucas Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:54 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:21 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:54 -0700 PDT} }]
May 18 14:04:24.616: INFO: test-rollover-controller-zoslg jenkins-e2e-minion-a76x Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:54 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:11 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:54 -0700 PDT} }]
May 18 14:04:24.616: INFO: test-rollback-no-revision-deployment-707960274-kqtjg jenkins-e2e-minion-u1pq Pending [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:19 -0700 PDT} } {Ready False {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:19 -0700 PDT} ContainersNotReady containers with unready status: [redis]} {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:18 -0700 PDT} }]
May 18 14:04:24.616: INFO: test-adopted-controller-0msqk jenkins-e2e-minion-u1pq Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:02 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:56 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:02 -0700 PDT} }]
May 18 14:04:24.616: INFO: test-adopted-controller-dyi9h jenkins-e2e-minion-a76x Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:02 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:11 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:02 -0700 PDT} }]
May 18 14:04:24.616: INFO: test-adopted-controller-wqxm3 jenkins-e2e-minion-ucas Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:02 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:21 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:02 -0700 PDT} }]
May 18 14:04:24.616: INFO: test-cleanup-controller-xggql jenkins-e2e-minion-ucas Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:10 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:23 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:10 -0700 PDT} }]
May 18 14:04:24.616: INFO: dns-test-e4148529-1d3b-11e6-b278-0242ac11001a jenkins-e2e-minion-a76x Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:54 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:21 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:54 -0700 PDT} }]
May 18 14:04:24.616: INFO: hostexec jenkins-e2e-minion-a76x Running 30s [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:56 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:45 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:56 -0700 PDT} }]
May 18 14:04:24.616: INFO: nginx jenkins-e2e-minion-ucas Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:56 -0700 PDT} } {Ready False {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:56 -0700 PDT} ContainersNotReady containers with unready status: [nginx]} {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:56 -0700 PDT} }]
May 18 14:04:24.616: INFO: redis-master-k17l4 jenkins-e2e-minion-ucas Pending [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:54 -0700 PDT} } {Ready False {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:54 -0700 PDT} ContainersNotReady containers with unready status: [redis-master]} {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:54 -0700 PDT} }]
May 18 14:04:24.616: INFO: frontend-3904849095-0by0j jenkins-e2e-minion-u1pq Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:57 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:09 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:57 -0700 PDT} }]
May 18 14:04:24.616: INFO: frontend-3904849095-aglnp jenkins-e2e-minion-ucas Pending [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:57 -0700 PDT} } {Ready False {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:57 -0700 PDT} ContainersNotReady containers with unready status: [php-redis]} {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:57 -0700 PDT} }]
May 18 14:04:24.616: INFO: frontend-3904849095-zd1jy jenkins-e2e-minion-a76x Pending [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:57 -0700 PDT} } {Ready False {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:57 -0700 PDT} ContainersNotReady containers with unready status: [php-redis]} {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:57 -0700 PDT} }]
May 18 14:04:24.616: INFO: redis-master-2133731895-8f08v jenkins-e2e-minion-ucas Pending [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:59 -0700 PDT} } {Ready False {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:59 -0700 PDT} ContainersNotReady containers with unready status: [master]} {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:57 -0700 PDT} }]
May 18 14:04:24.616: INFO: redis-slave-1158956699-askf9 jenkins-e2e-minion-a76x Pending [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:58 -0700 PDT} } {Ready False {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:58 -0700 PDT} ContainersNotReady containers with unready status: [slave]} {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:58 -0700 PDT} }]
May 18 14:04:24.616: INFO: redis-slave-1158956699-ij6n8 jenkins-e2e-minion-u1pq Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:58 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:09 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:58 -0700 PDT} }]
May 18 14:04:24.616: INFO: redis-master-5fwzp jenkins-e2e-minion-ucas Pending [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:17 -0700 PDT} } {Ready False {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:17 -0700 PDT} ContainersNotReady containers with unready status: [redis-master]} {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:17 -0700 PDT} }]
May 18 14:04:24.616: INFO: liveness-http jenkins-e2e-minion-u1pq Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:00 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:50 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:00 -0700 PDT} }]
May 18 14:04:24.616: INFO: pod-logs-websocket-17bfd5b5-1d3c-11e6-b873-0242ac11001a jenkins-e2e-minion-ucas Pending [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:21 -0700 PDT} } {Ready False {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:21 -0700 PDT} ContainersNotReady containers with unready status: [main]} {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:21 -0700 PDT} }]
May 18 14:04:24.616: INFO: liveness-exec jenkins-e2e-minion-u1pq Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:24 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:33 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:24 -0700 PDT} }]
May 18 14:04:24.616: INFO: liveness-exec jenkins-e2e-minion-u1pq Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:55 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:01 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:55 -0700 PDT} }]
May 18 14:04:24.616: INFO: my-hostname-basic-fdd4becf-1d3b-11e6-ba43-0242ac11001a-m9361 jenkins-e2e-minion-u1pq Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:38 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:56 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:38 -0700 PDT} }]
May 18 14:04:24.616: INFO: my-hostname-basic-fdd4becf-1d3b-11e6-ba43-0242ac11001a-utneg jenkins-e2e-minion-ucas Pending [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:38 -0700 PDT} } {Ready False {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:38 -0700 PDT} ContainersNotReady containers with unready status: [my-hostname-basic-fdd4becf-1d3b-11e6-ba43-0242ac11001a]} {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:38 -0700 PDT} }]
May 18 14:04:24.616: INFO: service1-9zwrp jenkins-e2e-minion-ucas Pending [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:57 -0700 PDT} } {Ready False {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:57 -0700 PDT} ContainersNotReady containers with unready status: [service1]} {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:57 -0700 PDT} }]
May 18 14:04:24.616: INFO: service1-cqguu jenkins-e2e-minion-ucas Pending [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:57 -0700 PDT} } {Ready False {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:57 -0700 PDT} ContainersNotReady containers with unready status: [service1]} {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:57 -0700 PDT} }]
May 18 14:04:24.616: INFO: service1-dyk2o jenkins-e2e-minion-u1pq Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:57 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:00 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:57 -0700 PDT} }]
May 18 14:04:24.616: INFO: svc-latency-rc-axeh8 jenkins-e2e-minion-ucas Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:18 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:21 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:18 -0700 PDT} }]
May 18 14:04:24.616: INFO: foo-0s4n2 jenkins-e2e-minion-ucas Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:50 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:52 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:50 -0700 PDT} }]
May 18 14:04:24.616: INFO: foo-6mjjw jenkins-e2e-minion-ucas Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:50 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:53 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:50 -0700 PDT} }]
May 18 14:04:24.616: INFO: all-succeed-icv43 jenkins-e2e-minion-ucas Succeeded [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:12 -0700 PDT} PodCompleted } {Ready False {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:12 -0700 PDT} PodCompleted } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:11 -0700 PDT} }]
May 18 14:04:24.616: INFO: all-succeed-k2vue jenkins-e2e-minion-ucas Succeeded [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:13 -0700 PDT} PodCompleted } {Ready False {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:13 -0700 PDT} PodCompleted } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:13 -0700 PDT} }]
May 18 14:04:24.616: INFO: all-succeed-qyvr6 jenkins-e2e-minion-u1pq Succeeded [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:12 -0700 PDT} PodCompleted } {Ready False {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:12 -0700 PDT} PodCompleted } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:11 -0700 PDT} }]
May 18 14:04:24.616: INFO: all-succeed-sc9f1 jenkins-e2e-minion-u1pq Succeeded [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:16 -0700 PDT} PodCompleted } {Ready False {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:16 -0700 PDT} PodCompleted } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:16 -0700 PDT} }]
May 18 14:04:24.616: INFO: var-expansion-1945da3b-1d3c-11e6-b180-0242ac11001a jenkins-e2e-minion-a76x Pending [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:24 -0700 PDT} } {Ready False {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:24 -0700 PDT} ContainersNotReady containers with unready status: [dapi-container]} {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:24 -0700 PDT} }]
May 18 14:04:24.616: INFO: elasticsearch-logging-v1-5dzg2 jenkins-e2e-minion-u1pq Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:13 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:15 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:13 -0700 PDT} }]
May 18 14:04:24.616: INFO: elasticsearch-logging-v1-ikcwm jenkins-e2e-minion-a76x Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:13 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:10 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:13 -0700 PDT} }]
May 18 14:04:24.616: INFO: etcd-server-events-jenkins-e2e-master jenkins-e2e-master Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:00:02 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:00:08 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:00:02 -0700 PDT} }]
May 18 14:04:24.616: INFO: etcd-server-jenkins-e2e-master jenkins-e2e-master Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:00:02 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:00:08 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:00:02 -0700 PDT} }]
May 18 14:04:24.616: INFO: fluentd-elasticsearch-jenkins-e2e-minion-a76x jenkins-e2e-minion-a76x Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:07 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:10 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:07 -0700 PDT} }]
May 18 14:04:24.616: INFO: fluentd-elasticsearch-jenkins-e2e-minion-u1pq jenkins-e2e-minion-u1pq Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:02 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:05 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:02 -0700 PDT} }]
May 18 14:04:24.616: INFO: fluentd-elasticsearch-jenkins-e2e-minion-ucas jenkins-e2e-minion-ucas Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:07 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:41 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:07 -0700 PDT} }]
May 18 14:04:24.616: INFO: heapster-v1.1.0.beta1-448827692-izywd jenkins-e2e-minion-u1pq Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:41 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:21 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:41 -0700 PDT} }]
May 18 14:04:24.616: INFO: kibana-logging-v1-ne8t7 jenkins-e2e-minion-a76x Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:12 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:18 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:12 -0700 PDT} }]
May 18 14:04:24.617: INFO: kube-addon-manager-jenkins-e2e-master jenkins-e2e-master Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:00:17 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:00:33 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:00:17 -0700 PDT} }]
May 18 14:04:24.617: INFO: kube-apiserver-jenkins-e2e-master jenkins-e2e-master Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:00:02 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:00:20 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:00:02 -0700 PDT} }]
May 18 14:04:24.617: INFO: kube-controller-manager-jenkins-e2e-master jenkins-e2e-master Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:00:02 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:00:23 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:00:02 -0700 PDT} }]
May 18 14:04:24.617: INFO: kube-dns-v11-xz086 jenkins-e2e-minion-a76x Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:13 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:53 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:13 -0700 PDT} }]
May 18 14:04:24.617: INFO: kube-proxy-jenkins-e2e-minion-a76x jenkins-e2e-minion-a76x Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:07 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:35 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:07 -0700 PDT} }]
May 18 14:04:24.617: INFO: kube-proxy-jenkins-e2e-minion-u1pq jenkins-e2e-minion-u1pq Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:02 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:29 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:02 -0700 PDT} }]
May 18 14:04:24.617: INFO: kube-proxy-jenkins-e2e-minion-ucas jenkins-e2e-minion-ucas Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:07 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:24 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:07 -0700 PDT} }]
May 18 14:04:24.617: INFO: kube-scheduler-jenkins-e2e-master jenkins-e2e-master Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:00:02 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:00:19 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:00:02 -0700 PDT} }]
May 18 14:04:24.617: INFO: kubernetes-dashboard-v1.0.1-28rnu jenkins-e2e-minion-u1pq Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:13 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:52 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:13 -0700 PDT} }]
May 18 14:04:24.617: INFO: l7-lb-controller-v0.6.0-6r487 jenkins-e2e-minion-u1pq Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:13 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:20 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:13 -0700 PDT} }]
May 18 14:04:24.617: INFO: monitoring-influxdb-grafana-v3-oymc4 jenkins-e2e-minion-u1pq Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:13 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:28 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:13 -0700 PDT} }]
May 18 14:04:24.617: INFO:
May 18 14:04:24.623: INFO:
Logging node info for node jenkins-e2e-master
May 18 14:04:24.627: INFO: Node Info: kind:"" apiVersion:""
May 18 14:04:24.627: INFO:
Logging kubelet events for node jenkins-e2e-master
May 18 14:04:24.646: INFO:
Logging pods the kubelet thinks is on node jenkins-e2e-master
May 18 14:04:24.685: INFO: kube-controller-manager-jenkins-e2e-master started at <nil> (0+0 container statuses recorded)
May 18 14:04:24.685: INFO: kube-scheduler-jenkins-e2e-master started at <nil> (0+0 container statuses recorded)
May 18 14:04:24.685: INFO: kube-addon-manager-jenkins-e2e-master started at <nil> (0+0 container statuses recorded)
May 18 14:04:24.685: INFO: etcd-server-events-jenkins-e2e-master started at <nil> (0+0 container statuses recorded)
May 18 14:04:24.685: INFO: etcd-server-jenkins-e2e-master started at <nil> (0+0 container statuses recorded)
May 18 14:04:24.685: INFO: kube-apiserver-jenkins-e2e-master started at <nil> (0+0 container statuses recorded)
May 18 14:04:24.862: INFO:
Latency metrics for node jenkins-e2e-master
May 18 14:04:24.862: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.99 Latency:22.77205s}
May 18 14:04:24.862: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.9 Latency:21.750824s}
May 18 14:04:24.862: INFO:
Logging node info for node jenkins-e2e-minion-a76x
May 18 14:04:24.887: INFO: Node Info: kind:"" apiVersion:""
May 18 14:04:24.887: INFO:
Logging kubelet events for node jenkins-e2e-minion-a76x
May 18 14:04:24.932: INFO:
Logging pods the kubelet thinks is on node jenkins-e2e-minion-a76x
May 18 14:04:25.016: INFO: kibana-logging-v1-ne8t7 started at 2016-05-18T14:01:12-07:00 (0+1 container statuses recorded)
May 18 14:04:25.017: INFO: Container kibana-logging ready: true, restart count 2
May 18 14:04:25.017: INFO: elasticsearch-logging-v1-ikcwm started at 2016-05-18T14:01:13-07:00 (0+1 container statuses recorded)
May 18 14:04:25.017: INFO: Container elasticsearch-logging ready: true, restart count 0
May 18 14:04:25.017: INFO: var-expansion-1945da3b-1d3c-11e6-b180-0242ac11001a started at 2016-05-18T14:04:24-07:00 (0+1 container statuses recorded)
May 18 14:04:25.017: INFO: Container dapi-container ready: false, restart count 0
May 18 14:04:25.017: INFO: fluentd-elasticsearch-jenkins-e2e-minion-a76x started at <nil> (0+0 container statuses recorded)
May 18 14:04:25.017: INFO: frontend-3904849095-zd1jy started at 2016-05-18T14:02:57-07:00 (0+1 container statuses recorded)
May 18 14:04:25.017: INFO: Container php-redis ready: false, restart count 0
May 18 14:04:25.017: INFO: test-rollover-controller-zoslg started at 2016-05-18T14:02:54-07:00 (0+1 container statuses recorded)
May 18 14:04:25.017: INFO: Container nginx ready: true, restart count 0
May 18 14:04:25.017: INFO: hostexec started at 2016-05-18T14:02:56-07:00 (0+1 container statuses recorded)
May 18 14:04:25.017: INFO: Container hostexec ready: true, restart count 0
May 18 14:04:25.017: INFO: redis-slave-1158956699-askf9 started at 2016-05-18T14:02:58-07:00 (0+1 container statuses recorded)
May 18 14:04:25.017: INFO: Container slave ready: false, restart count 0
May 18 14:04:25.017: INFO: test-adopted-controller-dyi9h started at 2016-05-18T14:03:02-07:00 (0+1 container statuses recorded)
May 18 14:04:25.017: INFO: Container nginx ready: true, restart count 0
May 18 14:04:25.017: INFO: kube-proxy-jenkins-e2e-minion-a76x started at <nil> (0+0 container statuses recorded)
May 18 14:04:25.017: INFO: kube-dns-v11-xz086 started at 2016-05-18T14:01:13-07:00 (0+4 container statuses recorded)
May 18 14:04:25.017: INFO: Container etcd ready: true, restart count 0
May 18 14:04:25.017: INFO: Container healthz ready: true, restart count 0
May 18 14:04:25.017: INFO: Container kube2sky ready: true, restart count 0
May 18 14:04:25.017: INFO: Container skydns ready: true, restart count 0
May 18 14:04:26.862: INFO:
Latency metrics for node jenkins-e2e-minion-a76x
May 18 14:04:26.862: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.99 Latency:1m27.896438s}
May 18 14:04:26.862: INFO: {Operation:SyncPod Method:container_manager_latency_microseconds Quantile:0.99 Latency:1m15.237418s}
May 18 14:04:26.862: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.9 Latency:1m12.407916s}
May 18 14:04:26.862: INFO: {Operation:pull_image Method:docker_operations_latency_microseconds Quantile:0.99 Latency:1m8.174427s}
May 18 14:04:26.862: INFO: {Operation:pull_image Method:docker_operations_latency_microseconds Quantile:0.9 Latency:1m0.531189s}
May 18 14:04:26.862: INFO: {Operation:SyncPod Method:container_manager_latency_microseconds Quantile:0.9 Latency:57.053298s}
May 18 14:04:26.862: INFO: {Operation: Method:pod_worker_start_latency_microseconds Quantile:0.99 Latency:40.01223s}
May 18 14:04:26.863: INFO: {Operation:pull_image Method:docker_operations_latency_microseconds Quantile:0.5 Latency:35.399516s}
May 18 14:04:26.863: INFO: {Operation:stop_container Method:docker_operations_latency_microseconds Quantile:0.99 Latency:30.151496s}
May 18 14:04:26.863: INFO:
Logging node info for node jenkins-e2e-minion-u1pq
May 18 14:04:26.891: INFO: Node Info: kind:"" apiVersion:""
May 18 14:04:26.891: INFO:
Logging kubelet events for node jenkins-e2e-minion-u1pq
May 18 14:04:26.915: INFO:
Logging pods the kubelet thinks is on node jenkins-e2e-minion-u1pq
May 18 14:04:27.275: INFO: kube-proxy-jenkins-e2e-minion-u1pq started at <nil> (0+0 container statuses recorded)
May 18 14:04:27.275: INFO: monitoring-influxdb-grafana-v3-oymc4 started at 2016-05-18T14:01:13-07:00 (0+2 container statuses recorded)
May 18 14:04:27.275: INFO: Container grafana ready: true, restart count 0
May 18 14:04:27.275: INFO: Container influxdb ready: true, restart count 0
May 18 14:04:27.275: INFO: frontend-3904849095-0by0j started at 2016-05-18T14:02:57-07:00 (0+1 container statuses recorded)
May 18 14:04:27.275: INFO: Container php-redis ready: true, restart count 0
May 18 14:04:27.275: INFO: liveness-http started at 2016-05-18T14:03:00-07:00 (0+1 container statuses recorded)
May 18 14:04:27.275: INFO: Container liveness ready: true, restart count 0
May 18 14:04:27.275: INFO: kubernetes-dashboard-v1.0.1-28rnu started at 2016-05-18T14:01:13-07:00 (0+1 container statuses recorded)
May 18 14:04:27.275: INFO: Container kubernetes-dashboard ready: true, restart count 0
May 18 14:04:27.275: INFO: test-adopted-controller-0msqk started at 2016-05-18T14:03:02-07:00 (0+1 container statuses recorded)
May 18 14:04:27.275: INFO: Container nginx ready: true, restart count 0
May 18 14:04:27.275: INFO: liveness-exec started at 2016-05-18T14:03:24-07:00 (0+1 container statuses recorded)
May 18 14:04:27.275: INFO: Container liveness ready: true, restart count 1
May 18 14:04:27.275: INFO: fluentd-elasticsearch-jenkins-e2e-minion-u1pq started at <nil> (0+0 container statuses recorded)
May 18 14:04:27.275: INFO: l7-lb-controller-v0.6.0-6r487 started at 2016-05-18T14:01:13-07:00 (0+2 container statuses recorded)
May 18 14:04:27.275: INFO: Container default-http-backend ready: true, restart count 0
May 18 14:04:27.275: INFO: Container l7-lb-controller ready: true, restart count 0
May 18 14:04:27.275: INFO: liveness-exec started at 2016-05-18T14:02:55-07:00 (0+1 container statuses recorded)
May 18 14:04:27.275: INFO: Container liveness ready: true, restart count 0
May 18 14:04:27.275: INFO: my-hostname-basic-fdd4becf-1d3b-11e6-ba43-0242ac11001a-m9361 started at 2016-05-18T14:03:38-07:00 (0+1 container statuses recorded)
May 18 14:04:27.275: INFO: Container my-hostname-basic-fdd4becf-1d3b-11e6-ba43-0242ac11001a ready: true, restart count 0
May 18 14:04:27.275: INFO: redis-slave-1158956699-ij6n8 started at 2016-05-18T14:02:58-07:00 (0+1 container statuses recorded)
May 18 14:04:27.275: INFO: Container slave ready: true, restart count 0
May 18 14:04:27.275: INFO: elasticsearch-logging-v1-5dzg2 started at 2016-05-18T14:01:13-07:00 (0+1 container statuses recorded)
May 18 14:04:27.275: INFO: Container elasticsearch-logging ready: true, restart count 0
May 18 14:04:27.275: INFO: heapster-v1.1.0.beta1-448827692-izywd started at 2016-05-18T14:01:41-07:00 (0+4 container statuses recorded)
May 18 14:04:27.275: INFO: Container eventer ready: true, restart count 0
May 18 14:04:27.275: INFO: Container eventer-nanny ready: true, restart count 0
May 18 14:04:27.275: INFO: Container heapster ready: true, restart count 0
May 18 14:04:27.275: INFO: Container heapster-nanny ready: true, restart count 0
May 18 14:04:27.275: INFO: test-rollover-controller-6o0vh started at 2016-05-18T14:02:54-07:00 (0+1 container statuses recorded)
May 18 14:04:27.275: INFO: Container nginx ready: true, restart count 0
May 18 14:04:27.275: INFO: service1-dyk2o started at 2016-05-18T14:03:57-07:00 (0+1 container statuses recorded)
May 18 14:04:27.275: INFO: Container service1 ready: true, restart count 0
May 18 14:04:27.788: INFO:
Latency metrics for node jenkins-e2e-minion-u1pq
May 18 14:04:27.788: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.99 Latency:1m15.017781s}
May 18 14:04:27.788: INFO: {Operation:SyncPod Method:container_manager_latency_microseconds Quantile:0.99 Latency:1m10.79282s}
May 18 14:04:27.788: INFO: {Operation:pull_image Method:docker_operations_latency_microseconds Quantile:0.99 Latency:1m8.262115s}
May 18 14:04:27.788: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.9 Latency:1m2.170236s}
May 18 14:04:27.788: INFO: {Operation:pull_image Method:docker_operations_latency_microseconds Quantile:0.9 Latency:1m0.203202s}
May 18 14:04:27.788: INFO: {Operation: Method:pod_worker_start_latency_microseconds Quantile:0.99 Latency:40.010542s}
May 18 14:04:27.788: INFO: {Operation:SyncPod Method:container_manager_latency_microseconds Quantile:0.9 Latency:38.934297s}
May 18 14:04:27.788: INFO: {Operation:stop_container Method:docker_operations_latency_microseconds Quantile:0.99 Latency:30.153804s}
May 18 14:04:27.788: INFO: {Operation:pull_image Method:docker_operations_latency_microseconds Quantile:0.5 Latency:24.893665s}
May 18 14:04:27.788: INFO:
Logging node info for node jenkins-e2e-minion-ucas
May 18 14:04:27.818: INFO: Node Info: kind:"" apiVersion:""
May 18 14:04:27.818: INFO:
Logging kubelet events for node jenkins-e2e-minion-ucas
May 18 14:04:27.858: INFO:
Logging pods the kubelet thinks is on node jenkins-e2e-minion-ucas
May 18 14:04:27.949: INFO: foo-0s4n2 started at 2016-05-18T14:03:50-07:00 (0+1 container statuses recorded)
May 18 14:04:27.949: INFO: Container c ready: true, restart count 0
May 18 14:04:27.949: INFO: test-webserver-0cf9ee1c-1d3c-11e6-9582-0242ac11001a started at 2016-05-18T14:04:03-07:00 (0+1 container statuses recorded)
May 18 14:04:27.949: INFO: Container test-webserber ready: false, restart count 0
May 18 14:04:27.949: INFO: frontend-3904849095-aglnp started at 2016-05-18T14:02:57-07:00 (0+1 container statuses recorded)
May 18 14:04:27.949: INFO: Container php-redis ready: false, restart count 0
May 18 14:04:27.949: INFO: netexec started at 2016-05-18T14:04:27-07:00 (0+1 container statuses recorded)
May 18 14:04:27.949: INFO: Container netexec ready: false, restart count 0
May 18 14:04:27.949: INFO: kube-proxy-jenkins-e2e-minion-ucas started at <nil> (0+0 container statuses recorded)
May 18 14:04:27.949: INFO: service1-9zwrp started at 2016-05-18T14:03:57-07:00 (0+1 container statuses recorded)
May 18 14:04:27.949: INFO: Container service1 ready: true, restart count 0
May 18 14:04:27.949: INFO: service1-cqguu started at 2016-05-18T14:03:57-07:00 (0+1 container statuses recorded)
May 18 14:04:27.949: INFO: Container service1 ready: true, restart count 0
May 18 14:04:27.949: INFO: fluentd-elasticsearch-jenkins-e2e-minion-ucas started at <nil> (0+0 container statuses recorded)
May 18 14:04:27.949: INFO: test-rollover-controller-xgwno started at 2016-05-18T14:02:54-07:00 (0+1 container statuses recorded)
May 18 14:04:27.949: INFO: Container nginx ready: true, restart count 0
May 18 14:04:27.949: INFO: redis-master-k17l4 started at 2016-05-18T14:02:54-07:00 (0+1 container statuses recorded)
May 18 14:04:27.949: INFO: Container redis-master ready: false, restart count 0
May 18 14:04:27.949: INFO: redis-master-2133731895-8f08v started at 2016-05-18T14:02:59-07:00 (0+1 container statuses recorded)
May 18 14:04:27.949: INFO: Container master ready: true, restart count 0
May 18 14:04:27.949: INFO: test-rollover-controller-hpes6 started at 2016-05-18T14:02:54-07:00 (0+1 container statuses recorded)
May 18 14:04:27.949: INFO: Container nginx ready: true, restart count 0
May 18 14:04:27.949: INFO: foo-6mjjw started at 2016-05-18T14:03:50-07:00 (0+1 container statuses recorded)
May 18 14:04:27.949: INFO: Container c ready: true, restart count 0
May 18 14:04:27.949: INFO: redis-master-5fwzp started at 2016-05-18T14:03:17-07:00 (0+1 container statuses recorded)
May 18 14:04:27.949: INFO: Container redis-master ready: false, restart count 0
May 18 14:04:27.949: INFO: my-hostname-basic-fdd4becf-1d3b-11e6-ba43-0242ac11001a-utneg started at 2016-05-18T14:03:38-07:00 (0+1 container statuses recorded)
May 18 14:04:27.949: INFO: Container my-hostname-basic-fdd4becf-1d3b-11e6-ba43-0242ac11001a ready: true, restart count 0
May 18 14:04:27.949: INFO: svc-latency-rc-axeh8 started at 2016-05-18T14:04:18-07:00 (0+1 container statuses recorded)
May 18 14:04:27.949: INFO: Container svc-latency-rc ready: true, restart count 0
May 18 14:04:27.949: INFO: test-adopted-controller-wqxm3 started at 2016-05-18T14:03:02-07:00 (0+1 container statuses recorded)
May 18 14:04:27.949: INFO: Container nginx ready: true, restart count 0
May 18 14:04:27.949: INFO: nginx started at 2016-05-18T14:02:56-07:00 (0+1 container statuses recorded)
May 18 14:04:27.949: INFO: Container nginx ready: true, restart count 0
May 18 14:04:28.470: INFO:
Latency metrics for node jenkins-e2e-minion-ucas
May 18 14:04:28.470: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.99 Latency:1m28.541598s}
May 18 14:04:28.470: INFO: {Operation:SyncPod Method:container_manager_latency_microseconds Quantile:0.99 Latency:1m26.314119s}
May 18 14:04:28.470: INFO: {Operation:pull_image Method:docker_operations_latency_microseconds Quantile:0.99 Latency:1m24.76017s}
May 18 14:04:28.470: INFO: {Operation:pull_image Method:docker_operations_latency_microseconds Quantile:0.9 Latency:1m23.91595s}
May 18 14:04:28.470: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.9 Latency:57.494633s}
May 18 14:04:28.470: INFO: {Operation: Method:pod_worker_start_latency_microseconds Quantile:0.99 Latency:40.006691s}
May 18 14:04:28.470: INFO: {Operation:stop_container Method:docker_operations_latency_microseconds Quantile:0.99 Latency:30.413459s}
May 18 14:04:28.470: INFO: {Operation:SyncPod Method:container_manager_latency_microseconds Quantile:0.9 Latency:25.870569s}
May 18 14:04:28.470: INFO: {Operation:pull_image Method:docker_operations_latency_microseconds Quantile:0.5 Latency:23.911967s}
May 18 14:04:28.470: INFO: Waiting up to 1m0s for all nodes to be ready
STEP: Destroying namespace "e2e-tests-kubectl-d9k9e" for this suite.
• Failure [135.059 seconds]
[k8s.io] Kubectl client
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:508
[k8s.io] Kubectl expose
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:508
should create services for rc [Conformance] [It]
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:836
May 18 14:04:24.567: No pods matched the filter.
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:672"><pre class="notranslate"><code class="notranslate">
[BeforeEach] [k8s.io] Kubectl client
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:108
STEP: Creating a kubernetes client
May 18 14:02:53.496: INFO: >>> TestContext.KubeConfig: /workspace/.kube/config
STEP: Building a namespace api object
STEP: Waiting for a default service account to be provisioned in namespace
[BeforeEach] [k8s.io] Kubectl client
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:159
[It] should create services for rc [Conformance]
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:836
STEP: creating Redis RC
May 18 14:02:54.196: INFO: namespace e2e-tests-kubectl-d9k9e
May 18 14:02:54.197: INFO: Running '/workspace/kubernetes/platforms/linux/amd64/kubectl --server=https://107.178.213.226 --kubeconfig=/workspace/.kube/config create -f - --namespace=e2e-tests-kubectl-d9k9e'
May 18 14:02:54.511: INFO: stderr: ""
May 18 14:02:54.511: INFO: stdout: "replicationcontroller \"redis-master\" created\n"
STEP: Waiting for Redis master to start.
May 18 14:02:55.569: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:02:55.569: INFO: Found 0 / 1
May 18 14:02:56.526: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:02:56.526: INFO: Found 0 / 1
May 18 14:02:57.546: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:02:57.547: INFO: Found 0 / 1
May 18 14:02:58.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:02:58.516: INFO: Found 0 / 1
May 18 14:02:59.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:02:59.516: INFO: Found 0 / 1
May 18 14:03:00.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:00.516: INFO: Found 0 / 1
May 18 14:03:01.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:01.516: INFO: Found 0 / 1
May 18 14:03:02.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:02.516: INFO: Found 0 / 1
May 18 14:03:03.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:03.516: INFO: Found 0 / 1
May 18 14:03:04.802: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:04.802: INFO: Found 0 / 1
May 18 14:03:05.548: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:05.548: INFO: Found 0 / 1
May 18 14:03:06.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:06.516: INFO: Found 0 / 1
May 18 14:03:07.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:07.515: INFO: Found 0 / 1
May 18 14:03:08.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:08.515: INFO: Found 0 / 1
May 18 14:03:09.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:09.516: INFO: Found 0 / 1
May 18 14:03:10.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:10.516: INFO: Found 0 / 1
May 18 14:03:11.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:11.516: INFO: Found 0 / 1
May 18 14:03:12.517: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:12.517: INFO: Found 0 / 1
May 18 14:03:13.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:13.516: INFO: Found 0 / 1
May 18 14:03:14.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:14.515: INFO: Found 0 / 1
May 18 14:03:15.517: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:15.517: INFO: Found 0 / 1
May 18 14:03:16.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:16.516: INFO: Found 0 / 1
May 18 14:03:17.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:17.516: INFO: Found 0 / 1
May 18 14:03:18.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:18.516: INFO: Found 0 / 1
May 18 14:03:19.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:19.516: INFO: Found 0 / 1
May 18 14:03:20.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:20.516: INFO: Found 0 / 1
May 18 14:03:21.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:21.516: INFO: Found 0 / 1
May 18 14:03:22.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:22.516: INFO: Found 0 / 1
May 18 14:03:23.518: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:23.518: INFO: Found 0 / 1
May 18 14:03:24.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:24.516: INFO: Found 0 / 1
May 18 14:03:25.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:25.515: INFO: Found 0 / 1
May 18 14:03:26.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:26.515: INFO: Found 0 / 1
May 18 14:03:27.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:27.516: INFO: Found 0 / 1
May 18 14:03:28.517: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:28.518: INFO: Found 0 / 1
May 18 14:03:29.517: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:29.517: INFO: Found 0 / 1
May 18 14:03:30.517: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:30.517: INFO: Found 0 / 1
May 18 14:03:31.521: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:31.521: INFO: Found 0 / 1
May 18 14:03:32.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:32.515: INFO: Found 0 / 1
May 18 14:03:33.520: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:33.521: INFO: Found 0 / 1
May 18 14:03:34.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:34.516: INFO: Found 0 / 1
May 18 14:03:35.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:35.515: INFO: Found 0 / 1
May 18 14:03:36.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:36.515: INFO: Found 0 / 1
May 18 14:03:37.517: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:37.517: INFO: Found 0 / 1
May 18 14:03:38.523: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:38.523: INFO: Found 0 / 1
May 18 14:03:39.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:39.516: INFO: Found 0 / 1
May 18 14:03:40.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:40.515: INFO: Found 0 / 1
May 18 14:03:41.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:41.516: INFO: Found 0 / 1
May 18 14:03:42.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:42.516: INFO: Found 0 / 1
May 18 14:03:43.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:43.516: INFO: Found 0 / 1
May 18 14:03:44.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:44.516: INFO: Found 0 / 1
May 18 14:03:45.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:45.515: INFO: Found 0 / 1
May 18 14:03:46.517: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:46.517: INFO: Found 0 / 1
May 18 14:03:47.532: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:47.532: INFO: Found 0 / 1
May 18 14:03:48.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:48.516: INFO: Found 0 / 1
May 18 14:03:49.527: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:49.527: INFO: Found 0 / 1
May 18 14:03:50.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:50.515: INFO: Found 0 / 1
May 18 14:03:51.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:51.516: INFO: Found 0 / 1
May 18 14:03:52.517: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:52.517: INFO: Found 0 / 1
May 18 14:03:53.522: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:53.522: INFO: Found 0 / 1
May 18 14:03:54.517: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:54.517: INFO: Found 0 / 1
May 18 14:03:55.520: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:55.520: INFO: Found 0 / 1
May 18 14:03:56.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:56.515: INFO: Found 0 / 1
May 18 14:03:57.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:57.515: INFO: Found 0 / 1
May 18 14:03:58.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:58.516: INFO: Found 0 / 1
May 18 14:03:59.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:03:59.516: INFO: Found 0 / 1
May 18 14:04:00.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:00.516: INFO: Found 0 / 1
May 18 14:04:01.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:01.516: INFO: Found 0 / 1
May 18 14:04:02.517: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:02.517: INFO: Found 0 / 1
May 18 14:04:03.517: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:03.517: INFO: Found 0 / 1
May 18 14:04:04.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:04.516: INFO: Found 0 / 1
May 18 14:04:05.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:05.515: INFO: Found 0 / 1
May 18 14:04:06.517: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:06.517: INFO: Found 0 / 1
May 18 14:04:07.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:07.515: INFO: Found 0 / 1
May 18 14:04:08.517: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:08.517: INFO: Found 0 / 1
May 18 14:04:09.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:09.515: INFO: Found 0 / 1
May 18 14:04:10.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:10.515: INFO: Found 0 / 1
May 18 14:04:11.517: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:11.517: INFO: Found 0 / 1
May 18 14:04:12.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:12.515: INFO: Found 0 / 1
May 18 14:04:13.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:13.516: INFO: Found 0 / 1
May 18 14:04:14.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:14.515: INFO: Found 0 / 1
May 18 14:04:15.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:15.515: INFO: Found 0 / 1
May 18 14:04:16.518: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:16.518: INFO: Found 0 / 1
May 18 14:04:17.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:17.515: INFO: Found 0 / 1
May 18 14:04:18.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:18.516: INFO: Found 0 / 1
May 18 14:04:19.516: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:19.516: INFO: Found 0 / 1
May 18 14:04:20.515: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:20.515: INFO: Found 0 / 1
May 18 14:04:21.528: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:21.528: INFO: Found 0 / 1
May 18 14:04:22.549: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:22.549: INFO: Found 0 / 1
May 18 14:04:23.560: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:23.560: INFO: Found 0 / 1
May 18 14:04:24.524: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:24.524: INFO: Found 0 / 1
May 18 14:04:24.537: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:24.537: INFO: Found 0 / 1
May 18 14:04:24.537: INFO: WaitFor completed with timeout 1m30s. Pods found = 0 out of 1
May 18 14:04:24.567: INFO: Selector matched 1 pods for map[app:redis]
May 18 14:04:24.567: INFO: No pods matched the filter.
[AfterEach] [k8s.io] Kubectl client
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:109
STEP: Collecting events from namespace "e2e-tests-kubectl-d9k9e".
May 18 14:04:24.577: INFO: At {2016-05-18 14:02:54 -0700 PDT} - event for redis-master: {replication-controller } SuccessfulCreate: Created pod: redis-master-k17l4
May 18 14:04:24.577: INFO: At {2016-05-18 14:02:54 -0700 PDT} - event for redis-master-k17l4: {default-scheduler } Scheduled: Successfully assigned redis-master-k17l4 to jenkins-e2e-minion-ucas
May 18 14:04:24.577: INFO: At {2016-05-18 14:02:55 -0700 PDT} - event for redis-master-k17l4: {kubelet jenkins-e2e-minion-ucas} Pulling: pulling image "redis:2.8.23"
May 18 14:04:24.615: INFO: POD NODE PHASE GRACE CONDITIONS
May 18 14:04:24.615: INFO: test-webserver-0cf9ee1c-1d3c-11e6-9582-0242ac11001a jenkins-e2e-minion-ucas Pending [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:03 -0700 PDT} } {Ready False {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:03 -0700 PDT} ContainersNotReady containers with unready status: [test-webserber]} {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:03 -0700 PDT} }]
May 18 14:04:24.615: INFO: test-rollover-controller-6o0vh jenkins-e2e-minion-u1pq Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:54 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:56 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:54 -0700 PDT} }]
May 18 14:04:24.615: INFO: test-rollover-controller-hpes6 jenkins-e2e-minion-ucas Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:54 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:23 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:54 -0700 PDT} }]
May 18 14:04:24.615: INFO: test-rollover-controller-xgwno jenkins-e2e-minion-ucas Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:54 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:21 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:54 -0700 PDT} }]
May 18 14:04:24.616: INFO: test-rollover-controller-zoslg jenkins-e2e-minion-a76x Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:54 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:11 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:54 -0700 PDT} }]
May 18 14:04:24.616: INFO: test-rollback-no-revision-deployment-707960274-kqtjg jenkins-e2e-minion-u1pq Pending [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:19 -0700 PDT} } {Ready False {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:19 -0700 PDT} ContainersNotReady containers with unready status: [redis]} {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:18 -0700 PDT} }]
May 18 14:04:24.616: INFO: test-adopted-controller-0msqk jenkins-e2e-minion-u1pq Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:02 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:56 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:02 -0700 PDT} }]
May 18 14:04:24.616: INFO: test-adopted-controller-dyi9h jenkins-e2e-minion-a76x Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:02 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:11 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:02 -0700 PDT} }]
May 18 14:04:24.616: INFO: test-adopted-controller-wqxm3 jenkins-e2e-minion-ucas Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:02 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:21 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:02 -0700 PDT} }]
May 18 14:04:24.616: INFO: test-cleanup-controller-xggql jenkins-e2e-minion-ucas Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:10 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:23 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:10 -0700 PDT} }]
May 18 14:04:24.616: INFO: dns-test-e4148529-1d3b-11e6-b278-0242ac11001a jenkins-e2e-minion-a76x Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:54 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:21 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:54 -0700 PDT} }]
May 18 14:04:24.616: INFO: hostexec jenkins-e2e-minion-a76x Running 30s [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:56 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:45 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:56 -0700 PDT} }]
May 18 14:04:24.616: INFO: nginx jenkins-e2e-minion-ucas Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:56 -0700 PDT} } {Ready False {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:56 -0700 PDT} ContainersNotReady containers with unready status: [nginx]} {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:56 -0700 PDT} }]
May 18 14:04:24.616: INFO: redis-master-k17l4 jenkins-e2e-minion-ucas Pending [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:54 -0700 PDT} } {Ready False {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:54 -0700 PDT} ContainersNotReady containers with unready status: [redis-master]} {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:54 -0700 PDT} }]
May 18 14:04:24.616: INFO: frontend-3904849095-0by0j jenkins-e2e-minion-u1pq Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:57 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:09 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:57 -0700 PDT} }]
May 18 14:04:24.616: INFO: frontend-3904849095-aglnp jenkins-e2e-minion-ucas Pending [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:57 -0700 PDT} } {Ready False {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:57 -0700 PDT} ContainersNotReady containers with unready status: [php-redis]} {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:57 -0700 PDT} }]
May 18 14:04:24.616: INFO: frontend-3904849095-zd1jy jenkins-e2e-minion-a76x Pending [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:57 -0700 PDT} } {Ready False {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:57 -0700 PDT} ContainersNotReady containers with unready status: [php-redis]} {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:57 -0700 PDT} }]
May 18 14:04:24.616: INFO: redis-master-2133731895-8f08v jenkins-e2e-minion-ucas Pending [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:59 -0700 PDT} } {Ready False {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:59 -0700 PDT} ContainersNotReady containers with unready status: [master]} {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:57 -0700 PDT} }]
May 18 14:04:24.616: INFO: redis-slave-1158956699-askf9 jenkins-e2e-minion-a76x Pending [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:58 -0700 PDT} } {Ready False {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:58 -0700 PDT} ContainersNotReady containers with unready status: [slave]} {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:58 -0700 PDT} }]
May 18 14:04:24.616: INFO: redis-slave-1158956699-ij6n8 jenkins-e2e-minion-u1pq Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:58 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:09 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:58 -0700 PDT} }]
May 18 14:04:24.616: INFO: redis-master-5fwzp jenkins-e2e-minion-ucas Pending [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:17 -0700 PDT} } {Ready False {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:17 -0700 PDT} ContainersNotReady containers with unready status: [redis-master]} {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:17 -0700 PDT} }]
May 18 14:04:24.616: INFO: liveness-http jenkins-e2e-minion-u1pq Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:00 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:50 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:00 -0700 PDT} }]
May 18 14:04:24.616: INFO: pod-logs-websocket-17bfd5b5-1d3c-11e6-b873-0242ac11001a jenkins-e2e-minion-ucas Pending [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:21 -0700 PDT} } {Ready False {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:21 -0700 PDT} ContainersNotReady containers with unready status: [main]} {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:21 -0700 PDT} }]
May 18 14:04:24.616: INFO: liveness-exec jenkins-e2e-minion-u1pq Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:24 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:33 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:24 -0700 PDT} }]
May 18 14:04:24.616: INFO: liveness-exec jenkins-e2e-minion-u1pq Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:55 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:01 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:55 -0700 PDT} }]
May 18 14:04:24.616: INFO: my-hostname-basic-fdd4becf-1d3b-11e6-ba43-0242ac11001a-m9361 jenkins-e2e-minion-u1pq Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:38 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:56 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:38 -0700 PDT} }]
May 18 14:04:24.616: INFO: my-hostname-basic-fdd4becf-1d3b-11e6-ba43-0242ac11001a-utneg jenkins-e2e-minion-ucas Pending [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:38 -0700 PDT} } {Ready False {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:38 -0700 PDT} ContainersNotReady containers with unready status: [my-hostname-basic-fdd4becf-1d3b-11e6-ba43-0242ac11001a]} {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:38 -0700 PDT} }]
May 18 14:04:24.616: INFO: service1-9zwrp jenkins-e2e-minion-ucas Pending [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:57 -0700 PDT} } {Ready False {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:57 -0700 PDT} ContainersNotReady containers with unready status: [service1]} {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:57 -0700 PDT} }]
May 18 14:04:24.616: INFO: service1-cqguu jenkins-e2e-minion-ucas Pending [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:57 -0700 PDT} } {Ready False {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:57 -0700 PDT} ContainersNotReady containers with unready status: [service1]} {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:57 -0700 PDT} }]
May 18 14:04:24.616: INFO: service1-dyk2o jenkins-e2e-minion-u1pq Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:57 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:00 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:57 -0700 PDT} }]
May 18 14:04:24.616: INFO: svc-latency-rc-axeh8 jenkins-e2e-minion-ucas Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:18 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:21 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:18 -0700 PDT} }]
May 18 14:04:24.616: INFO: foo-0s4n2 jenkins-e2e-minion-ucas Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:50 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:52 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:50 -0700 PDT} }]
May 18 14:04:24.616: INFO: foo-6mjjw jenkins-e2e-minion-ucas Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:50 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:53 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:50 -0700 PDT} }]
May 18 14:04:24.616: INFO: all-succeed-icv43 jenkins-e2e-minion-ucas Succeeded [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:12 -0700 PDT} PodCompleted } {Ready False {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:12 -0700 PDT} PodCompleted } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:11 -0700 PDT} }]
May 18 14:04:24.616: INFO: all-succeed-k2vue jenkins-e2e-minion-ucas Succeeded [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:13 -0700 PDT} PodCompleted } {Ready False {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:13 -0700 PDT} PodCompleted } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:13 -0700 PDT} }]
May 18 14:04:24.616: INFO: all-succeed-qyvr6 jenkins-e2e-minion-u1pq Succeeded [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:12 -0700 PDT} PodCompleted } {Ready False {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:12 -0700 PDT} PodCompleted } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:11 -0700 PDT} }]
May 18 14:04:24.616: INFO: all-succeed-sc9f1 jenkins-e2e-minion-u1pq Succeeded [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:16 -0700 PDT} PodCompleted } {Ready False {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:16 -0700 PDT} PodCompleted } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:16 -0700 PDT} }]
May 18 14:04:24.616: INFO: var-expansion-1945da3b-1d3c-11e6-b180-0242ac11001a jenkins-e2e-minion-a76x Pending [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:24 -0700 PDT} } {Ready False {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:24 -0700 PDT} ContainersNotReady containers with unready status: [dapi-container]} {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:04:24 -0700 PDT} }]
May 18 14:04:24.616: INFO: elasticsearch-logging-v1-5dzg2 jenkins-e2e-minion-u1pq Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:13 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:15 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:13 -0700 PDT} }]
May 18 14:04:24.616: INFO: elasticsearch-logging-v1-ikcwm jenkins-e2e-minion-a76x Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:13 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:10 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:13 -0700 PDT} }]
May 18 14:04:24.616: INFO: etcd-server-events-jenkins-e2e-master jenkins-e2e-master Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:00:02 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:00:08 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:00:02 -0700 PDT} }]
May 18 14:04:24.616: INFO: etcd-server-jenkins-e2e-master jenkins-e2e-master Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:00:02 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:00:08 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:00:02 -0700 PDT} }]
May 18 14:04:24.616: INFO: fluentd-elasticsearch-jenkins-e2e-minion-a76x jenkins-e2e-minion-a76x Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:07 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:10 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:07 -0700 PDT} }]
May 18 14:04:24.616: INFO: fluentd-elasticsearch-jenkins-e2e-minion-u1pq jenkins-e2e-minion-u1pq Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:02 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:05 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:02 -0700 PDT} }]
May 18 14:04:24.616: INFO: fluentd-elasticsearch-jenkins-e2e-minion-ucas jenkins-e2e-minion-ucas Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:07 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:41 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:07 -0700 PDT} }]
May 18 14:04:24.616: INFO: heapster-v1.1.0.beta1-448827692-izywd jenkins-e2e-minion-u1pq Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:41 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:21 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:41 -0700 PDT} }]
May 18 14:04:24.616: INFO: kibana-logging-v1-ne8t7 jenkins-e2e-minion-a76x Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:12 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:03:18 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:12 -0700 PDT} }]
May 18 14:04:24.617: INFO: kube-addon-manager-jenkins-e2e-master jenkins-e2e-master Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:00:17 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:00:33 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:00:17 -0700 PDT} }]
May 18 14:04:24.617: INFO: kube-apiserver-jenkins-e2e-master jenkins-e2e-master Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:00:02 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:00:20 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:00:02 -0700 PDT} }]
May 18 14:04:24.617: INFO: kube-controller-manager-jenkins-e2e-master jenkins-e2e-master Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:00:02 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:00:23 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:00:02 -0700 PDT} }]
May 18 14:04:24.617: INFO: kube-dns-v11-xz086 jenkins-e2e-minion-a76x Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:13 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:53 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:13 -0700 PDT} }]
May 18 14:04:24.617: INFO: kube-proxy-jenkins-e2e-minion-a76x jenkins-e2e-minion-a76x Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:07 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:35 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:07 -0700 PDT} }]
May 18 14:04:24.617: INFO: kube-proxy-jenkins-e2e-minion-u1pq jenkins-e2e-minion-u1pq Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:02 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:29 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:02 -0700 PDT} }]
May 18 14:04:24.617: INFO: kube-proxy-jenkins-e2e-minion-ucas jenkins-e2e-minion-ucas Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:07 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:24 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:07 -0700 PDT} }]
May 18 14:04:24.617: INFO: kube-scheduler-jenkins-e2e-master jenkins-e2e-master Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:00:02 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:00:19 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:00:02 -0700 PDT} }]
May 18 14:04:24.617: INFO: kubernetes-dashboard-v1.0.1-28rnu jenkins-e2e-minion-u1pq Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:13 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:52 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:13 -0700 PDT} }]
May 18 14:04:24.617: INFO: l7-lb-controller-v0.6.0-6r487 jenkins-e2e-minion-u1pq Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:13 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:20 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:13 -0700 PDT} }]
May 18 14:04:24.617: INFO: monitoring-influxdb-grafana-v3-oymc4 jenkins-e2e-minion-u1pq Running [{Initialized True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:13 -0700 PDT} } {Ready True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:02:28 -0700 PDT} } {PodScheduled True {0001-01-01 00:00:00 +0000 UTC} {2016-05-18 14:01:13 -0700 PDT} }]
May 18 14:04:24.617: INFO:
May 18 14:04:24.623: INFO:
Logging node info for node jenkins-e2e-master
May 18 14:04:24.627: INFO: Node Info: kind:"" apiVersion:""
May 18 14:04:24.627: INFO:
Logging kubelet events for node jenkins-e2e-master
May 18 14:04:24.646: INFO:
Logging pods the kubelet thinks is on node jenkins-e2e-master
May 18 14:04:24.685: INFO: kube-controller-manager-jenkins-e2e-master started at <nil> (0+0 container statuses recorded)
May 18 14:04:24.685: INFO: kube-scheduler-jenkins-e2e-master started at <nil> (0+0 container statuses recorded)
May 18 14:04:24.685: INFO: kube-addon-manager-jenkins-e2e-master started at <nil> (0+0 container statuses recorded)
May 18 14:04:24.685: INFO: etcd-server-events-jenkins-e2e-master started at <nil> (0+0 container statuses recorded)
May 18 14:04:24.685: INFO: etcd-server-jenkins-e2e-master started at <nil> (0+0 container statuses recorded)
May 18 14:04:24.685: INFO: kube-apiserver-jenkins-e2e-master started at <nil> (0+0 container statuses recorded)
May 18 14:04:24.862: INFO:
Latency metrics for node jenkins-e2e-master
May 18 14:04:24.862: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.99 Latency:22.77205s}
May 18 14:04:24.862: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.9 Latency:21.750824s}
May 18 14:04:24.862: INFO:
Logging node info for node jenkins-e2e-minion-a76x
May 18 14:04:24.887: INFO: Node Info: kind:"" apiVersion:""
May 18 14:04:24.887: INFO:
Logging kubelet events for node jenkins-e2e-minion-a76x
May 18 14:04:24.932: INFO:
Logging pods the kubelet thinks is on node jenkins-e2e-minion-a76x
May 18 14:04:25.016: INFO: kibana-logging-v1-ne8t7 started at 2016-05-18T14:01:12-07:00 (0+1 container statuses recorded)
May 18 14:04:25.017: INFO: Container kibana-logging ready: true, restart count 2
May 18 14:04:25.017: INFO: elasticsearch-logging-v1-ikcwm started at 2016-05-18T14:01:13-07:00 (0+1 container statuses recorded)
May 18 14:04:25.017: INFO: Container elasticsearch-logging ready: true, restart count 0
May 18 14:04:25.017: INFO: var-expansion-1945da3b-1d3c-11e6-b180-0242ac11001a started at 2016-05-18T14:04:24-07:00 (0+1 container statuses recorded)
May 18 14:04:25.017: INFO: Container dapi-container ready: false, restart count 0
May 18 14:04:25.017: INFO: fluentd-elasticsearch-jenkins-e2e-minion-a76x started at <nil> (0+0 container statuses recorded)
May 18 14:04:25.017: INFO: frontend-3904849095-zd1jy started at 2016-05-18T14:02:57-07:00 (0+1 container statuses recorded)
May 18 14:04:25.017: INFO: Container php-redis ready: false, restart count 0
May 18 14:04:25.017: INFO: test-rollover-controller-zoslg started at 2016-05-18T14:02:54-07:00 (0+1 container statuses recorded)
May 18 14:04:25.017: INFO: Container nginx ready: true, restart count 0
May 18 14:04:25.017: INFO: hostexec started at 2016-05-18T14:02:56-07:00 (0+1 container statuses recorded)
May 18 14:04:25.017: INFO: Container hostexec ready: true, restart count 0
May 18 14:04:25.017: INFO: redis-slave-1158956699-askf9 started at 2016-05-18T14:02:58-07:00 (0+1 container statuses recorded)
May 18 14:04:25.017: INFO: Container slave ready: false, restart count 0
May 18 14:04:25.017: INFO: test-adopted-controller-dyi9h started at 2016-05-18T14:03:02-07:00 (0+1 container statuses recorded)
May 18 14:04:25.017: INFO: Container nginx ready: true, restart count 0
May 18 14:04:25.017: INFO: kube-proxy-jenkins-e2e-minion-a76x started at <nil> (0+0 container statuses recorded)
May 18 14:04:25.017: INFO: kube-dns-v11-xz086 started at 2016-05-18T14:01:13-07:00 (0+4 container statuses recorded)
May 18 14:04:25.017: INFO: Container etcd ready: true, restart count 0
May 18 14:04:25.017: INFO: Container healthz ready: true, restart count 0
May 18 14:04:25.017: INFO: Container kube2sky ready: true, restart count 0
May 18 14:04:25.017: INFO: Container skydns ready: true, restart count 0
May 18 14:04:26.862: INFO:
Latency metrics for node jenkins-e2e-minion-a76x
May 18 14:04:26.862: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.99 Latency:1m27.896438s}
May 18 14:04:26.862: INFO: {Operation:SyncPod Method:container_manager_latency_microseconds Quantile:0.99 Latency:1m15.237418s}
May 18 14:04:26.862: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.9 Latency:1m12.407916s}
May 18 14:04:26.862: INFO: {Operation:pull_image Method:docker_operations_latency_microseconds Quantile:0.99 Latency:1m8.174427s}
May 18 14:04:26.862: INFO: {Operation:pull_image Method:docker_operations_latency_microseconds Quantile:0.9 Latency:1m0.531189s}
May 18 14:04:26.862: INFO: {Operation:SyncPod Method:container_manager_latency_microseconds Quantile:0.9 Latency:57.053298s}
May 18 14:04:26.862: INFO: {Operation: Method:pod_worker_start_latency_microseconds Quantile:0.99 Latency:40.01223s}
May 18 14:04:26.863: INFO: {Operation:pull_image Method:docker_operations_latency_microseconds Quantile:0.5 Latency:35.399516s}
May 18 14:04:26.863: INFO: {Operation:stop_container Method:docker_operations_latency_microseconds Quantile:0.99 Latency:30.151496s}
May 18 14:04:26.863: INFO:
Logging node info for node jenkins-e2e-minion-u1pq
May 18 14:04:26.891: INFO: Node Info: kind:"" apiVersion:""
May 18 14:04:26.891: INFO:
Logging kubelet events for node jenkins-e2e-minion-u1pq
May 18 14:04:26.915: INFO:
Logging pods the kubelet thinks is on node jenkins-e2e-minion-u1pq
May 18 14:04:27.275: INFO: kube-proxy-jenkins-e2e-minion-u1pq started at <nil> (0+0 container statuses recorded)
May 18 14:04:27.275: INFO: monitoring-influxdb-grafana-v3-oymc4 started at 2016-05-18T14:01:13-07:00 (0+2 container statuses recorded)
May 18 14:04:27.275: INFO: Container grafana ready: true, restart count 0
May 18 14:04:27.275: INFO: Container influxdb ready: true, restart count 0
May 18 14:04:27.275: INFO: frontend-3904849095-0by0j started at 2016-05-18T14:02:57-07:00 (0+1 container statuses recorded)
May 18 14:04:27.275: INFO: Container php-redis ready: true, restart count 0
May 18 14:04:27.275: INFO: liveness-http started at 2016-05-18T14:03:00-07:00 (0+1 container statuses recorded)
May 18 14:04:27.275: INFO: Container liveness ready: true, restart count 0
May 18 14:04:27.275: INFO: kubernetes-dashboard-v1.0.1-28rnu started at 2016-05-18T14:01:13-07:00 (0+1 container statuses recorded)
May 18 14:04:27.275: INFO: Container kubernetes-dashboard ready: true, restart count 0
May 18 14:04:27.275: INFO: test-adopted-controller-0msqk started at 2016-05-18T14:03:02-07:00 (0+1 container statuses recorded)
May 18 14:04:27.275: INFO: Container nginx ready: true, restart count 0
May 18 14:04:27.275: INFO: liveness-exec started at 2016-05-18T14:03:24-07:00 (0+1 container statuses recorded)
May 18 14:04:27.275: INFO: Container liveness ready: true, restart count 1
May 18 14:04:27.275: INFO: fluentd-elasticsearch-jenkins-e2e-minion-u1pq started at <nil> (0+0 container statuses recorded)
May 18 14:04:27.275: INFO: l7-lb-controller-v0.6.0-6r487 started at 2016-05-18T14:01:13-07:00 (0+2 container statuses recorded)
May 18 14:04:27.275: INFO: Container default-http-backend ready: true, restart count 0
May 18 14:04:27.275: INFO: Container l7-lb-controller ready: true, restart count 0
May 18 14:04:27.275: INFO: liveness-exec started at 2016-05-18T14:02:55-07:00 (0+1 container statuses recorded)
May 18 14:04:27.275: INFO: Container liveness ready: true, restart count 0
May 18 14:04:27.275: INFO: my-hostname-basic-fdd4becf-1d3b-11e6-ba43-0242ac11001a-m9361 started at 2016-05-18T14:03:38-07:00 (0+1 container statuses recorded)
May 18 14:04:27.275: INFO: Container my-hostname-basic-fdd4becf-1d3b-11e6-ba43-0242ac11001a ready: true, restart count 0
May 18 14:04:27.275: INFO: redis-slave-1158956699-ij6n8 started at 2016-05-18T14:02:58-07:00 (0+1 container statuses recorded)
May 18 14:04:27.275: INFO: Container slave ready: true, restart count 0
May 18 14:04:27.275: INFO: elasticsearch-logging-v1-5dzg2 started at 2016-05-18T14:01:13-07:00 (0+1 container statuses recorded)
May 18 14:04:27.275: INFO: Container elasticsearch-logging ready: true, restart count 0
May 18 14:04:27.275: INFO: heapster-v1.1.0.beta1-448827692-izywd started at 2016-05-18T14:01:41-07:00 (0+4 container statuses recorded)
May 18 14:04:27.275: INFO: Container eventer ready: true, restart count 0
May 18 14:04:27.275: INFO: Container eventer-nanny ready: true, restart count 0
May 18 14:04:27.275: INFO: Container heapster ready: true, restart count 0
May 18 14:04:27.275: INFO: Container heapster-nanny ready: true, restart count 0
May 18 14:04:27.275: INFO: test-rollover-controller-6o0vh started at 2016-05-18T14:02:54-07:00 (0+1 container statuses recorded)
May 18 14:04:27.275: INFO: Container nginx ready: true, restart count 0
May 18 14:04:27.275: INFO: service1-dyk2o started at 2016-05-18T14:03:57-07:00 (0+1 container statuses recorded)
May 18 14:04:27.275: INFO: Container service1 ready: true, restart count 0
May 18 14:04:27.788: INFO:
Latency metrics for node jenkins-e2e-minion-u1pq
May 18 14:04:27.788: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.99 Latency:1m15.017781s}
May 18 14:04:27.788: INFO: {Operation:SyncPod Method:container_manager_latency_microseconds Quantile:0.99 Latency:1m10.79282s}
May 18 14:04:27.788: INFO: {Operation:pull_image Method:docker_operations_latency_microseconds Quantile:0.99 Latency:1m8.262115s}
May 18 14:04:27.788: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.9 Latency:1m2.170236s}
May 18 14:04:27.788: INFO: {Operation:pull_image Method:docker_operations_latency_microseconds Quantile:0.9 Latency:1m0.203202s}
May 18 14:04:27.788: INFO: {Operation: Method:pod_worker_start_latency_microseconds Quantile:0.99 Latency:40.010542s}
May 18 14:04:27.788: INFO: {Operation:SyncPod Method:container_manager_latency_microseconds Quantile:0.9 Latency:38.934297s}
May 18 14:04:27.788: INFO: {Operation:stop_container Method:docker_operations_latency_microseconds Quantile:0.99 Latency:30.153804s}
May 18 14:04:27.788: INFO: {Operation:pull_image Method:docker_operations_latency_microseconds Quantile:0.5 Latency:24.893665s}
May 18 14:04:27.788: INFO:
Logging node info for node jenkins-e2e-minion-ucas
May 18 14:04:27.818: INFO: Node Info: kind:"" apiVersion:""
May 18 14:04:27.818: INFO:
Logging kubelet events for node jenkins-e2e-minion-ucas
May 18 14:04:27.858: INFO:
Logging pods the kubelet thinks is on node jenkins-e2e-minion-ucas
May 18 14:04:27.949: INFO: foo-0s4n2 started at 2016-05-18T14:03:50-07:00 (0+1 container statuses recorded)
May 18 14:04:27.949: INFO: Container c ready: true, restart count 0
May 18 14:04:27.949: INFO: test-webserver-0cf9ee1c-1d3c-11e6-9582-0242ac11001a started at 2016-05-18T14:04:03-07:00 (0+1 container statuses recorded)
May 18 14:04:27.949: INFO: Container test-webserber ready: false, restart count 0
May 18 14:04:27.949: INFO: frontend-3904849095-aglnp started at 2016-05-18T14:02:57-07:00 (0+1 container statuses recorded)
May 18 14:04:27.949: INFO: Container php-redis ready: false, restart count 0
May 18 14:04:27.949: INFO: netexec started at 2016-05-18T14:04:27-07:00 (0+1 container statuses recorded)
May 18 14:04:27.949: INFO: Container netexec ready: false, restart count 0
May 18 14:04:27.949: INFO: kube-proxy-jenkins-e2e-minion-ucas started at <nil> (0+0 container statuses recorded)
May 18 14:04:27.949: INFO: service1-9zwrp started at 2016-05-18T14:03:57-07:00 (0+1 container statuses recorded)
May 18 14:04:27.949: INFO: Container service1 ready: true, restart count 0
May 18 14:04:27.949: INFO: service1-cqguu started at 2016-05-18T14:03:57-07:00 (0+1 container statuses recorded)
May 18 14:04:27.949: INFO: Container service1 ready: true, restart count 0
May 18 14:04:27.949: INFO: fluentd-elasticsearch-jenkins-e2e-minion-ucas started at <nil> (0+0 container statuses recorded)
May 18 14:04:27.949: INFO: test-rollover-controller-xgwno started at 2016-05-18T14:02:54-07:00 (0+1 container statuses recorded)
May 18 14:04:27.949: INFO: Container nginx ready: true, restart count 0
May 18 14:04:27.949: INFO: redis-master-k17l4 started at 2016-05-18T14:02:54-07:00 (0+1 container statuses recorded)
May 18 14:04:27.949: INFO: Container redis-master ready: false, restart count 0
May 18 14:04:27.949: INFO: redis-master-2133731895-8f08v started at 2016-05-18T14:02:59-07:00 (0+1 container statuses recorded)
May 18 14:04:27.949: INFO: Container master ready: true, restart count 0
May 18 14:04:27.949: INFO: test-rollover-controller-hpes6 started at 2016-05-18T14:02:54-07:00 (0+1 container statuses recorded)
May 18 14:04:27.949: INFO: Container nginx ready: true, restart count 0
May 18 14:04:27.949: INFO: foo-6mjjw started at 2016-05-18T14:03:50-07:00 (0+1 container statuses recorded)
May 18 14:04:27.949: INFO: Container c ready: true, restart count 0
May 18 14:04:27.949: INFO: redis-master-5fwzp started at 2016-05-18T14:03:17-07:00 (0+1 container statuses recorded)
May 18 14:04:27.949: INFO: Container redis-master ready: false, restart count 0
May 18 14:04:27.949: INFO: my-hostname-basic-fdd4becf-1d3b-11e6-ba43-0242ac11001a-utneg started at 2016-05-18T14:03:38-07:00 (0+1 container statuses recorded)
May 18 14:04:27.949: INFO: Container my-hostname-basic-fdd4becf-1d3b-11e6-ba43-0242ac11001a ready: true, restart count 0
May 18 14:04:27.949: INFO: svc-latency-rc-axeh8 started at 2016-05-18T14:04:18-07:00 (0+1 container statuses recorded)
May 18 14:04:27.949: INFO: Container svc-latency-rc ready: true, restart count 0
May 18 14:04:27.949: INFO: test-adopted-controller-wqxm3 started at 2016-05-18T14:03:02-07:00 (0+1 container statuses recorded)
May 18 14:04:27.949: INFO: Container nginx ready: true, restart count 0
May 18 14:04:27.949: INFO: nginx started at 2016-05-18T14:02:56-07:00 (0+1 container statuses recorded)
May 18 14:04:27.949: INFO: Container nginx ready: true, restart count 0
May 18 14:04:28.470: INFO:
Latency metrics for node jenkins-e2e-minion-ucas
May 18 14:04:28.470: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.99 Latency:1m28.541598s}
May 18 14:04:28.470: INFO: {Operation:SyncPod Method:container_manager_latency_microseconds Quantile:0.99 Latency:1m26.314119s}
May 18 14:04:28.470: INFO: {Operation:pull_image Method:docker_operations_latency_microseconds Quantile:0.99 Latency:1m24.76017s}
May 18 14:04:28.470: INFO: {Operation:pull_image Method:docker_operations_latency_microseconds Quantile:0.9 Latency:1m23.91595s}
May 18 14:04:28.470: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.9 Latency:57.494633s}
May 18 14:04:28.470: INFO: {Operation: Method:pod_worker_start_latency_microseconds Quantile:0.99 Latency:40.006691s}
May 18 14:04:28.470: INFO: {Operation:stop_container Method:docker_operations_latency_microseconds Quantile:0.99 Latency:30.413459s}
May 18 14:04:28.470: INFO: {Operation:SyncPod Method:container_manager_latency_microseconds Quantile:0.9 Latency:25.870569s}
May 18 14:04:28.470: INFO: {Operation:pull_image Method:docker_operations_latency_microseconds Quantile:0.5 Latency:23.911967s}
May 18 14:04:28.470: INFO: Waiting up to 1m0s for all nodes to be ready
STEP: Destroying namespace "e2e-tests-kubectl-d9k9e" for this suite.
• Failure [135.059 seconds]
[k8s.io] Kubectl client
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:508
[k8s.io] Kubectl expose
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:508
should create services for rc [Conformance] [It]
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:836
May 18 14:04:24.567: No pods matched the filter.
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:672
</code></pre></div> | <p dir="auto"><a href="https://console.cloud.google.com/storage/browser/kubernetes-jenkins/pr-logs/pull/25054/kubernetes-pull-build-test-e2e-gce/38681/" rel="nofollow">https://console.cloud.google.com/storage/browser/kubernetes-jenkins/pr-logs/pull/25054/kubernetes-pull-build-test-e2e-gce/38681/</a></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="I0506 03:07:01.272055 3411 server.go:611] Event(api.ObjectReference{Kind:"Pod", Namespace:"e2e-tests-horizontal-pod-autoscaling-8t5zw", Name:"rc-light-t62w5", UID:"99a46e33-1337-11e6-86e3-42010af00002", APIVersion:"v1", ResourceVersion:"1167", FieldPath:"spec.containers{rc-light}"}): type: 'Normal' reason: 'Pulling' pulling image "gcr.io/google_containers/resource_consumer:beta2"
I0506 03:12:12.616384 3411 server.go:611] Event(api.ObjectReference{Kind:"Pod", Namespace:"e2e-tests-horizontal-pod-autoscaling-8t5zw", Name:"rc-light-t62w5", UID:"99a46e33-1337-11e6-86e3-42010af00002", APIVersion:"v1", ResourceVersion:"1167", FieldPath:"spec.containers{rc-light}"}): type: 'Normal' reason: 'Pulled' Successfully pulled image "gcr.io/google_containers/resource_consumer:beta2""><pre class="notranslate"><code class="notranslate">I0506 03:07:01.272055 3411 server.go:611] Event(api.ObjectReference{Kind:"Pod", Namespace:"e2e-tests-horizontal-pod-autoscaling-8t5zw", Name:"rc-light-t62w5", UID:"99a46e33-1337-11e6-86e3-42010af00002", APIVersion:"v1", ResourceVersion:"1167", FieldPath:"spec.containers{rc-light}"}): type: 'Normal' reason: 'Pulling' pulling image "gcr.io/google_containers/resource_consumer:beta2"
I0506 03:12:12.616384 3411 server.go:611] Event(api.ObjectReference{Kind:"Pod", Namespace:"e2e-tests-horizontal-pod-autoscaling-8t5zw", Name:"rc-light-t62w5", UID:"99a46e33-1337-11e6-86e3-42010af00002", APIVersion:"v1", ResourceVersion:"1167", FieldPath:"spec.containers{rc-light}"}): type: 'Normal' reason: 'Pulled' Successfully pulled image "gcr.io/google_containers/resource_consumer:beta2"
</code></pre></div> | 1 |
<h1 dir="auto">Environment</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: 10.0.18363.0
Windows Terminal version (if applicable): 0.6.2951.0
Any other software? PowerShell 6.
PSVersionTable:
Name Value
---- -----
PSVersion 6.2.3
PSEdition Core
GitCommitId 6.2.3
OS Microsoft Windows 10.0.18363
Platform Win32NT
PSCompatibleVersions {1.0, 2.0, 3.0, 4.0…}
PSRemotingProtocolVersion 2.3
SerializationVersion 1.1.0.1
WSManStackVersion 3.0
"><pre lang="none" class="notranslate"><code class="notranslate">Windows build number: 10.0.18363.0
Windows Terminal version (if applicable): 0.6.2951.0
Any other software? PowerShell 6.
PSVersionTable:
Name Value
---- -----
PSVersion 6.2.3
PSEdition Core
GitCommitId 6.2.3
OS Microsoft Windows 10.0.18363
Platform Win32NT
PSCompatibleVersions {1.0, 2.0, 3.0, 4.0…}
PSRemotingProtocolVersion 2.3
SerializationVersion 1.1.0.1
WSManStackVersion 3.0
</code></pre></div>
<h1 dir="auto">Steps to reproduce</h1>
<p dir="auto">The equals sign does not appear in certain operations in PowerShell core windows.</p>
<p dir="auto">Typing: <code class="notranslate">$a = 4</code> results in this:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/1129122/68818151-e8afec00-0638-11ea-925c-c9d7b14aad08.png"><img src="https://user-images.githubusercontent.com/1129122/68818151-e8afec00-0638-11ea-925c-c9d7b14aad08.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">They render normally as part of strings:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/1129122/68818203-15640380-0639-11ea-9205-a46e6a285ae8.png"><img src="https://user-images.githubusercontent.com/1129122/68818203-15640380-0639-11ea-9205-a46e6a285ae8.png" alt="image" style="max-width: 100%;"></a></p>
<h1 dir="auto">Expected behavior</h1>
<p dir="auto">The equals sign renders normally, as it does on non-pwsh Windows.</p>
<p dir="auto">The same input in the Powershell tab works normally:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/1129122/68818233-30cf0e80-0639-11ea-8b39-6d8a11d90f16.png"><img src="https://user-images.githubusercontent.com/1129122/68818233-30cf0e80-0639-11ea-8b39-6d8a11d90f16.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">Additional Notes:<br>
Changing the font settings appeared to have no effect. For reference, here is the entry for Powershell Core in my settings.json:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" {
"guid": "{574e775e-4f2a-5b96-ac1e-a2962a402336}",
"hidden": false,
"name": "PowerShell Core",
"source": "Windows.Terminal.PowershellCore",
"colorScheme": "Solarized Dark",
"fontFace": "Cascadia Code",
"fontSize": 10,
"cursorShape": "bar"
}"><pre class="notranslate"><code class="notranslate"> {
"guid": "{574e775e-4f2a-5b96-ac1e-a2962a402336}",
"hidden": false,
"name": "PowerShell Core",
"source": "Windows.Terminal.PowershellCore",
"colorScheme": "Solarized Dark",
"fontFace": "Cascadia Code",
"fontSize": 10,
"cursorShape": "bar"
}
</code></pre></div> | <h1 dir="auto">Description of the new feature/enhancement</h1>
<p dir="auto">The OS X Terminal has a setting for “Use bright colors for bold text”. If it is <strong>disabled</strong> I always get normal colors for bold text, which I have found to be quite useful for readability on a terminal with bright background (which I personally prefer).</p>
<p dir="auto">I can of course change the color scheme, which solves the issue locally. However, when I connect to a Linux server with ssh, it has a color scheme of its own. (Which I can also change, but it would be more practical if the terminal were able to handle it.)</p>
<p dir="auto">Perhaps some time after Windows Terminal is able to display actual bold text?</p> | 0 |
<h3 dir="auto">Describe the bug</h3>
<p dir="auto">Hi,<br>
I'm using imperative mapping to specify a custom mapping of a DB table to my domain model. In detail, I want that on the DB the primary key is an integer ID field, while on the codebase the entity model maps its ID to the external_id (UUID) field of the table.<br>
I want that from a codebase point of view the UUID is the primary key, not the integer field.</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="@dataclass(frozen=False)
class LicenseSetting:
account_id: UUID
reassign_licenses_on_license_pool_expiration: bool
allowed_reassigned_percentage: int
id: int = field(default_factory=uuid.uuid4) # I want to map it to the database external_id field
metadata = get_db_metadata()
mapper_registry = get_mapper_registry()
license_setting_table = Table(
'license_setting',
metadata,
Column('id', Integer(), primary_key=True),
Column('external_id', UUID(as_uuid=True), unique=True, nullable=False, default=uuid.uuid4),
Column('reassign_licenses_on_license_pool_expiration', Boolean(), default=False, nullable=False),
Column('allowed_reassigned_percentage', Integer(), default=0, nullable=False),
Column('account_id', UUID(as_uuid=True), unique=True, nullable=False)
)
mapper_registry.map_imperatively(
LicenseSetting,
license_setting_table,
primary_key=[license_setting_table.c["external_id"]], # here I specify I want use the field external_id as primary key
exclude_properties=["id"], # real 'id' of the table is not mapped to my domain entity
properties={
'id': license_setting_table.c["external_id"] # here I specify I want to map db 'external_id' to entity 'id'
})"><pre class="notranslate"><span class="pl-en">@<span class="pl-en">dataclass</span>(<span class="pl-s1">frozen</span><span class="pl-c1">=</span><span class="pl-c1">False</span>)</span>
<span class="pl-k">class</span> <span class="pl-v">LicenseSetting</span>:
<span class="pl-s1">account_id</span>: <span class="pl-v">UUID</span>
<span class="pl-s1">reassign_licenses_on_license_pool_expiration</span>: <span class="pl-s1">bool</span>
<span class="pl-s1">allowed_reassigned_percentage</span>: <span class="pl-s1">int</span>
<span class="pl-s1">id</span>: <span class="pl-s1">int</span> <span class="pl-c1">=</span> <span class="pl-en">field</span>(<span class="pl-s1">default_factory</span><span class="pl-c1">=</span><span class="pl-s1">uuid</span>.<span class="pl-s1">uuid4</span>) <span class="pl-c"># I want to map it to the database external_id field</span>
<span class="pl-s1">metadata</span> <span class="pl-c1">=</span> <span class="pl-en">get_db_metadata</span>()
<span class="pl-s1">mapper_registry</span> <span class="pl-c1">=</span> <span class="pl-en">get_mapper_registry</span>()
<span class="pl-s1">license_setting_table</span> <span class="pl-c1">=</span> <span class="pl-v">Table</span>(
<span class="pl-s">'license_setting'</span>,
<span class="pl-s1">metadata</span>,
<span class="pl-v">Column</span>(<span class="pl-s">'id'</span>, <span class="pl-v">Integer</span>(), <span class="pl-s1">primary_key</span><span class="pl-c1">=</span><span class="pl-c1">True</span>),
<span class="pl-v">Column</span>(<span class="pl-s">'external_id'</span>, <span class="pl-v">UUID</span>(<span class="pl-s1">as_uuid</span><span class="pl-c1">=</span><span class="pl-c1">True</span>), <span class="pl-s1">unique</span><span class="pl-c1">=</span><span class="pl-c1">True</span>, <span class="pl-s1">nullable</span><span class="pl-c1">=</span><span class="pl-c1">False</span>, <span class="pl-s1">default</span><span class="pl-c1">=</span><span class="pl-s1">uuid</span>.<span class="pl-s1">uuid4</span>),
<span class="pl-v">Column</span>(<span class="pl-s">'reassign_licenses_on_license_pool_expiration'</span>, <span class="pl-v">Boolean</span>(), <span class="pl-s1">default</span><span class="pl-c1">=</span><span class="pl-c1">False</span>, <span class="pl-s1">nullable</span><span class="pl-c1">=</span><span class="pl-c1">False</span>),
<span class="pl-v">Column</span>(<span class="pl-s">'allowed_reassigned_percentage'</span>, <span class="pl-v">Integer</span>(), <span class="pl-s1">default</span><span class="pl-c1">=</span><span class="pl-c1">0</span>, <span class="pl-s1">nullable</span><span class="pl-c1">=</span><span class="pl-c1">False</span>),
<span class="pl-v">Column</span>(<span class="pl-s">'account_id'</span>, <span class="pl-v">UUID</span>(<span class="pl-s1">as_uuid</span><span class="pl-c1">=</span><span class="pl-c1">True</span>), <span class="pl-s1">unique</span><span class="pl-c1">=</span><span class="pl-c1">True</span>, <span class="pl-s1">nullable</span><span class="pl-c1">=</span><span class="pl-c1">False</span>)
)
<span class="pl-s1">mapper_registry</span>.<span class="pl-en">map_imperatively</span>(
<span class="pl-v">LicenseSetting</span>,
<span class="pl-s1">license_setting_table</span>,
<span class="pl-s1">primary_key</span><span class="pl-c1">=</span>[<span class="pl-s1">license_setting_table</span>.<span class="pl-s1">c</span>[<span class="pl-s">"external_id"</span>]], <span class="pl-c"># here I specify I want use the field external_id as primary key</span>
<span class="pl-s1">exclude_properties</span><span class="pl-c1">=</span>[<span class="pl-s">"id"</span>], <span class="pl-c"># real 'id' of the table is not mapped to my domain entity</span>
<span class="pl-s1">properties</span><span class="pl-c1">=</span>{
<span class="pl-s">'id'</span>: <span class="pl-s1">license_setting_table</span>.<span class="pl-s1">c</span>[<span class="pl-s">"external_id"</span>] <span class="pl-c"># here I specify I want to map db 'external_id' to entity 'id'</span>
})</pre></div>
<p dir="auto">The issue is that when I try to add two domain instances with the same identifier I receive an integrity error. It seems that the ORM is not able to detect that I'm using the external_id as the primary key generating a single insert statement.<br>
Instead, it tries two add two rows with the same external_id and two different ids. Since on the external_id there is a unique constraint, I receive an integrity error.</p>
<p dir="auto">The error I receive:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="self = <sqlalchemy.dialects.postgresql.asyncpg.AsyncAdapt_asyncpg_connection object at 0x10a30be40>
error = UniqueViolationError('duplicate key value violates unique constraint "license_setting_external_id_key"')
def _handle_exception(self, error):
if self._connection.is_closed():
self._transaction = None
self._started = False
if not isinstance(error, AsyncAdapt_asyncpg_dbapi.Error):
exception_mapping = self.dbapi._asyncpg_error_translate
for super_ in type(error).__mro__:
if super_ in exception_mapping:
translated_error = exception_mapping[super_](
"%s: %s" % (type(error), error)
)
translated_error.pgcode = (
translated_error.sqlstate
) = getattr(error, "sqlstate", None)
> raise translated_error from error
E sqlalchemy.exc.IntegrityError: (sqlalchemy.dialects.postgresql.asyncpg.IntegrityError) <class 'asyncpg.exceptions.UniqueViolationError'>: duplicate key value violates unique constraint "license_setting_external_id_key"
E DETAIL: Key (external_id)=(c2eed5e5-e234-48a8-8ee1-ee110a8dd980) already exists.
E [SQL: INSERT INTO license_setting (external_id, reassign_licenses_on_license_pool_expiration, allowed_reassigned_percentage, account_id) VALUES (%s, %s, %s, %s) RETURNING license_setting.id]
E [parameters: (UUID('c2eed5e5-e234-48a8-8ee1-ee110a8dd980'), True, 10, UUID('79644b11-b054-4dc2-927b-cf76c9da89e8'))]
E (Background on this error at: https://sqlalche.me/e/14/gkpj)"><pre class="notranslate"><code class="notranslate">self = <sqlalchemy.dialects.postgresql.asyncpg.AsyncAdapt_asyncpg_connection object at 0x10a30be40>
error = UniqueViolationError('duplicate key value violates unique constraint "license_setting_external_id_key"')
def _handle_exception(self, error):
if self._connection.is_closed():
self._transaction = None
self._started = False
if not isinstance(error, AsyncAdapt_asyncpg_dbapi.Error):
exception_mapping = self.dbapi._asyncpg_error_translate
for super_ in type(error).__mro__:
if super_ in exception_mapping:
translated_error = exception_mapping[super_](
"%s: %s" % (type(error), error)
)
translated_error.pgcode = (
translated_error.sqlstate
) = getattr(error, "sqlstate", None)
> raise translated_error from error
E sqlalchemy.exc.IntegrityError: (sqlalchemy.dialects.postgresql.asyncpg.IntegrityError) <class 'asyncpg.exceptions.UniqueViolationError'>: duplicate key value violates unique constraint "license_setting_external_id_key"
E DETAIL: Key (external_id)=(c2eed5e5-e234-48a8-8ee1-ee110a8dd980) already exists.
E [SQL: INSERT INTO license_setting (external_id, reassign_licenses_on_license_pool_expiration, allowed_reassigned_percentage, account_id) VALUES (%s, %s, %s, %s) RETURNING license_setting.id]
E [parameters: (UUID('c2eed5e5-e234-48a8-8ee1-ee110a8dd980'), True, 10, UUID('79644b11-b054-4dc2-927b-cf76c9da89e8'))]
E (Background on this error at: https://sqlalche.me/e/14/gkpj)
</code></pre></div>
<p dir="auto">Am I missing something? Is it the intended behavior?</p>
<h3 dir="auto">To Reproduce</h3>
<p dir="auto">Here the test I'm doing:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" @pytest.mark.asyncio
async def test_that_retrieved_license_setting_is_the_same_of_the_added_entity(self, session: AsyncSession) -> None:
# Setup
license_setting_one = LicenseSetting(
account_id=uuid.uuid4(),
reassign_licenses_on_license_pool_expiration=True,
allowed_reassigned_percentage=10,
)
license_setting_two = LicenseSetting(
id=license_setting_one.id, # same primary key of license_setting_one -> We are the same entity!
account_id=uuid.uuid4(),
reassign_licenses_on_license_pool_expiration=True,
allowed_reassigned_percentage=10,
)
# SUT
session.begin_nested()
session.add(license_setting_one)
await session.commit()
session.expunge(license_setting_one)
session.begin_nested()
session.add(license_setting_two)
await session.commit()
session.expunge(license_setting_two)
query = select(LicenseSetting).limit(1)
result = await session.execute(query)
retrieved_license_setting: LicenseSetting = result.scalar()
# Assert
assert retrieved_license_setting is not None
assert retrieved_license_setting == license_setting_two
"><pre class="notranslate"> <span class="pl-en">@<span class="pl-s1">pytest</span>.<span class="pl-s1">mark</span>.<span class="pl-s1">asyncio</span></span>
<span class="pl-k">async</span> <span class="pl-k">def</span> <span class="pl-en">test_that_retrieved_license_setting_is_the_same_of_the_added_entity</span>(<span class="pl-s1">self</span>, <span class="pl-s1">session</span>: <span class="pl-v">AsyncSession</span>) <span class="pl-c1">-></span> <span class="pl-c1">None</span>:
<span class="pl-c"># Setup</span>
<span class="pl-s1">license_setting_one</span> <span class="pl-c1">=</span> <span class="pl-v">LicenseSetting</span>(
<span class="pl-s1">account_id</span><span class="pl-c1">=</span><span class="pl-s1">uuid</span>.<span class="pl-en">uuid4</span>(),
<span class="pl-s1">reassign_licenses_on_license_pool_expiration</span><span class="pl-c1">=</span><span class="pl-c1">True</span>,
<span class="pl-s1">allowed_reassigned_percentage</span><span class="pl-c1">=</span><span class="pl-c1">10</span>,
)
<span class="pl-s1">license_setting_two</span> <span class="pl-c1">=</span> <span class="pl-v">LicenseSetting</span>(
<span class="pl-s1">id</span><span class="pl-c1">=</span><span class="pl-s1">license_setting_one</span>.<span class="pl-s1">id</span>, <span class="pl-c"># same primary key of license_setting_one -> We are the same entity!</span>
<span class="pl-s1">account_id</span><span class="pl-c1">=</span><span class="pl-s1">uuid</span>.<span class="pl-en">uuid4</span>(),
<span class="pl-s1">reassign_licenses_on_license_pool_expiration</span><span class="pl-c1">=</span><span class="pl-c1">True</span>,
<span class="pl-s1">allowed_reassigned_percentage</span><span class="pl-c1">=</span><span class="pl-c1">10</span>,
)
<span class="pl-c"># SUT</span>
<span class="pl-s1">session</span>.<span class="pl-en">begin_nested</span>()
<span class="pl-s1">session</span>.<span class="pl-en">add</span>(<span class="pl-s1">license_setting_one</span>)
<span class="pl-k">await</span> <span class="pl-s1">session</span>.<span class="pl-en">commit</span>()
<span class="pl-s1">session</span>.<span class="pl-en">expunge</span>(<span class="pl-s1">license_setting_one</span>)
<span class="pl-s1">session</span>.<span class="pl-en">begin_nested</span>()
<span class="pl-s1">session</span>.<span class="pl-en">add</span>(<span class="pl-s1">license_setting_two</span>)
<span class="pl-k">await</span> <span class="pl-s1">session</span>.<span class="pl-en">commit</span>()
<span class="pl-s1">session</span>.<span class="pl-en">expunge</span>(<span class="pl-s1">license_setting_two</span>)
<span class="pl-s1">query</span> <span class="pl-c1">=</span> <span class="pl-en">select</span>(<span class="pl-v">LicenseSetting</span>).<span class="pl-en">limit</span>(<span class="pl-c1">1</span>)
<span class="pl-s1">result</span> <span class="pl-c1">=</span> <span class="pl-k">await</span> <span class="pl-s1">session</span>.<span class="pl-en">execute</span>(<span class="pl-s1">query</span>)
<span class="pl-s1">retrieved_license_setting</span>: <span class="pl-v">LicenseSetting</span> <span class="pl-c1">=</span> <span class="pl-s1">result</span>.<span class="pl-en">scalar</span>()
<span class="pl-c"># Assert</span>
<span class="pl-k">assert</span> <span class="pl-s1">retrieved_license_setting</span> <span class="pl-c1">is</span> <span class="pl-c1">not</span> <span class="pl-c1">None</span>
<span class="pl-k">assert</span> <span class="pl-s1">retrieved_license_setting</span> <span class="pl-c1">==</span> <span class="pl-s1">license_setting_two</span></pre></div>
<h3 dir="auto">Error</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="self = <sqlalchemy.dialects.postgresql.asyncpg.AsyncAdapt_asyncpg_connection object at 0x10a30be40>
error = UniqueViolationError('duplicate key value violates unique constraint "license_setting_external_id_key"')
def _handle_exception(self, error):
if self._connection.is_closed():
self._transaction = None
self._started = False
if not isinstance(error, AsyncAdapt_asyncpg_dbapi.Error):
exception_mapping = self.dbapi._asyncpg_error_translate
for super_ in type(error).__mro__:
if super_ in exception_mapping:
translated_error = exception_mapping[super_](
"%s: %s" % (type(error), error)
)
translated_error.pgcode = (
translated_error.sqlstate
) = getattr(error, "sqlstate", None)
> raise translated_error from error
E sqlalchemy.exc.IntegrityError: (sqlalchemy.dialects.postgresql.asyncpg.IntegrityError) <class 'asyncpg.exceptions.UniqueViolationError'>: duplicate key value violates unique constraint "license_setting_external_id_key"
E DETAIL: Key (external_id)=(c2eed5e5-e234-48a8-8ee1-ee110a8dd980) already exists.
E [SQL: INSERT INTO license_setting (external_id, reassign_licenses_on_license_pool_expiration, allowed_reassigned_percentage, account_id) VALUES (%s, %s, %s, %s) RETURNING license_setting.id]
E [parameters: (UUID('c2eed5e5-e234-48a8-8ee1-ee110a8dd980'), True, 10, UUID('79644b11-b054-4dc2-927b-cf76c9da89e8'))]
E (Background on this error at: https://sqlalche.me/e/14/gkpj)
"><pre class="notranslate"><code class="notranslate">self = <sqlalchemy.dialects.postgresql.asyncpg.AsyncAdapt_asyncpg_connection object at 0x10a30be40>
error = UniqueViolationError('duplicate key value violates unique constraint "license_setting_external_id_key"')
def _handle_exception(self, error):
if self._connection.is_closed():
self._transaction = None
self._started = False
if not isinstance(error, AsyncAdapt_asyncpg_dbapi.Error):
exception_mapping = self.dbapi._asyncpg_error_translate
for super_ in type(error).__mro__:
if super_ in exception_mapping:
translated_error = exception_mapping[super_](
"%s: %s" % (type(error), error)
)
translated_error.pgcode = (
translated_error.sqlstate
) = getattr(error, "sqlstate", None)
> raise translated_error from error
E sqlalchemy.exc.IntegrityError: (sqlalchemy.dialects.postgresql.asyncpg.IntegrityError) <class 'asyncpg.exceptions.UniqueViolationError'>: duplicate key value violates unique constraint "license_setting_external_id_key"
E DETAIL: Key (external_id)=(c2eed5e5-e234-48a8-8ee1-ee110a8dd980) already exists.
E [SQL: INSERT INTO license_setting (external_id, reassign_licenses_on_license_pool_expiration, allowed_reassigned_percentage, account_id) VALUES (%s, %s, %s, %s) RETURNING license_setting.id]
E [parameters: (UUID('c2eed5e5-e234-48a8-8ee1-ee110a8dd980'), True, 10, UUID('79644b11-b054-4dc2-927b-cf76c9da89e8'))]
E (Background on this error at: https://sqlalche.me/e/14/gkpj)
</code></pre></div>
<h3 dir="auto">Versions</h3>
<ul dir="auto">
<li>OS: MacOs Catalina 10.15.7</li>
<li>Python: 3.9</li>
<li>SQLAlchemy: 1.4</li>
<li>Database: Postgres</li>
<li>DBAPI: 2.0 (async engine)</li>
</ul>
<h3 dir="auto">Additional context</h3>
<p dir="auto"><em>No response</em></p> | <h3 dir="auto">Describe the use case</h3>
<p dir="auto">Accroding to<br>
<a href="https://mysqlclient.readthedocs.io/user_guide.html" rel="nofollow">https://mysqlclient.readthedocs.io/user_guide.html</a><br>
The mysqldb api provide a method to retrieve the warning count of the db.</p>
<h3 dir="auto">Databases / Backends / Drivers targeted</h3>
<p dir="auto">It is for mysql database.</p>
<h3 dir="auto">Example Use</h3>
<p dir="auto">These is particularly usful when using <code class="notranslate">insert ignore .....</code> to get how many duplicates key you encounter.</p>
<p dir="auto">Example use:<br>
<code class="notranslate">result = engine.execute('insert ignore .....') </code><br>
<code class="notranslate">duplicate_count = result.warning_count()</code></p>
<h3 dir="auto">Additional context</h3>
<p dir="auto"><em>No response</em></p> | 0 |
<p dir="auto">I know there are already issues about it but they are all closed. I checked out the solution in this issue <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="267852103" data-permission-text="Title is private" data-url="https://github.com/vercel/next.js/issues/3159" data-hovercard-type="issue" data-hovercard-url="/vercel/next.js/issues/3159/hovercard" href="https://github.com/vercel/next.js/issues/3159">#3159</a> — which would have been ok for me to use.</p>
<p dir="auto">But my investigation showed that <a class="issue-link js-issue-link notranslate" rel="noopener noreferrer nofollow" href="https://linear.app/vercel/issue/NEXT-js">next-js</a> is actually not using the plugin anymore, hence atm there is not way of disabling the clearing at all.</p>
<p dir="auto">Shouldn't there be an option in the <a class="issue-link js-issue-link notranslate" rel="noopener noreferrer nofollow" href="https://linear.app/vercel/issue/NEXT-js-config">next-js-config</a> now since you implemented this feature into <a class="issue-link js-issue-link notranslate" rel="noopener noreferrer nofollow" href="https://linear.app/vercel/issue/NEXT-js">next-js</a> itself?</p> | <p dir="auto">(There may be a way to do this currently, but after asking a few times on Spectrum and looking through the changes for adding Webpackbar I haven't found anything)</p>
<h2 dir="auto">Is your feature request related to a problem? Please describe.</h2>
<p dir="auto">When running Next in something like docker-compose the refreshing output constantly clears and mangles the log output.</p>
<h2 dir="auto">Describe the solution you'd like</h2>
<p dir="auto">I'd like a way to disable this so that log output is just a stream and not constantly rerendered.</p>
<p dir="auto">Edit: This includes local development as well.</p> | 1 |
<p dir="auto">Not sure if this is fixed on master, but on 0.4.3:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="function ff()
gg(x,y)=1.0*(x==y)
xx=[(i,i) for i=1:2]
yy=xx'
broadcast(gg,xx,yy)
end
ff()
> ERROR: LoadError: MethodError: `convert` has no method matching
> convert(::Type{Tuple{Int64,Int64}}, ::Float64)
"><pre class="notranslate"><code class="notranslate">function ff()
gg(x,y)=1.0*(x==y)
xx=[(i,i) for i=1:2]
yy=xx'
broadcast(gg,xx,yy)
end
ff()
> ERROR: LoadError: MethodError: `convert` has no method matching
> convert(::Type{Tuple{Int64,Int64}}, ::Float64)
</code></pre></div> | <p dir="auto">With current 0.5 master:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="julia> map(Float32, [3,4,5])
3-element Array{Float32,1}:
3.0
4.0
5.0
julia> broadcast(Float32, [3,4,5])
3-element Array{Int64,1}:
3
4
5"><pre class="notranslate"><code class="notranslate">julia> map(Float32, [3,4,5])
3-element Array{Float32,1}:
3.0
4.0
5.0
julia> broadcast(Float32, [3,4,5])
3-element Array{Int64,1}:
3
4
5
</code></pre></div>
<p dir="auto">We presumably want to return a <code class="notranslate">Float32</code> array in both cases?</p>
<p dir="auto">cc: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ViralBShah/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ViralBShah">@ViralBShah</a>: this affects the case you asked about in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="43641309" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/8450" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/8450/hovercard" href="https://github.com/JuliaLang/julia/issues/8450">#8450</a>, since my <code class="notranslate">f.(x...)</code> implementation in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="133107578" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/15032" data-hovercard-type="pull_request" data-hovercard-url="/JuliaLang/julia/pull/15032/hovercard" href="https://github.com/JuliaLang/julia/pull/15032">#15032</a> is equivalent to <code class="notranslate">broadcast</code>.</p> | 1 |
<p dir="auto">When defining a route like this:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/foo/{param}"><pre class="notranslate"><code class="notranslate">/foo/{param}
</code></pre></div>
<p dir="auto">with a default value for param, you can omit the param and Symfony will match a URL like <code class="notranslate">/foo</code>. But it won't match <code class="notranslate">/foo/</code>.</p>
<p dir="auto">Would it make sense to allow it? What are the consequences on BC?</p>
<p dir="auto">Or do we need to introduce a special syntax for optional parameters:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/foo/{?param}
/foo{/?param}"><pre class="notranslate"><code class="notranslate">/foo/{?param}
/foo{/?param}
</code></pre></div>
<p dir="auto">see fabpot/Silex#485</p> | <p dir="auto">hey,</p>
<p dir="auto">i stumbled upon this field option and think it's not the right way to solve it</p>
<p dir="auto"><a href="http://symfony.com/doc/current/reference/forms/types/text.html#read-only" rel="nofollow">http://symfony.com/doc/current/reference/forms/types/text.html#read-only</a></p>
<p dir="auto">the docs say, that the read_only parameter renders the field with a disabled attribute. even if disabled is the favored method of setting the field "not-editable" the parameter should be called disabled because there actually is a readonly attribute since html4 and it allows some kind of interaction that a disabled field does not.</p>
<p dir="auto">in my case i have a text input that is filled with a value by a colorpicker. the color picker is triggered by the user clicking on that field. in contrast to a readonly input a disabled input is not clickable.</p>
<p dir="auto">this is not a blocker as the readonly attribute can still be created by adding it to the attr parameter. i guess its still confusing though.</p>
<p dir="auto">kind regards (and thanks for creating this)</p>
<p dir="auto">konrad</p> | 0 |
<p dir="auto">Standard behavior (at least on iOS) is to move the cursor when tapping, holding down your finger and dragging it. This makes it possible to fine-tune the position of the cursor in the text field. When doing this in Flutter, instead the text field starts to select the text.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[✓] Flutter (Channel master, v0.5.9-pre.60, on Mac OS X 10.13.5 17F77, locale en-US)
• Flutter version 0.5.9-pre.60 at /Users/vik/Projects/flutter
• Framework revision 26ba937846 (3 hours ago), 2018-08-16 13:59:27 +0200
• Engine revision e3687f70c7
• Dart version 2.1.0-dev.0.0.flutter-be6309690f
[!] Android toolchain - develop for Android devices (Android SDK 27.0.3)
• Android SDK at /Users/vik/Library/Android/sdk
• Android NDK location not configured (optional; useful for native profiling support)
• Platform android-27, build-tools 27.0.3
• Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-915-b08)
✗ Android license status unknown.
[✓] iOS toolchain - develop for iOS devices (Xcode 9.4.1)
• Xcode at /Applications/Xcode.app/Contents/Developer
• Xcode 9.4.1, Build version 9F2000
• ios-deploy 1.9.2
• CocoaPods version 1.5.3
[✓] Android Studio (version 3.0)
• Android Studio at /Applications/Android Studio.app/Contents
✗ Flutter plugin not installed; this adds Flutter specific functionality.
• Dart plugin version 171.4424
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-915-b08)
[✓] Android Studio (version 2.3)
• Android Studio at /Applications/Android Studio - old.app/Contents
✗ Flutter plugin not installed; this adds Flutter specific functionality.
✗ Dart plugin not installed; this adds Dart specific functionality.
• Java version OpenJDK Runtime Environment (build 1.8.0_112-release-b06)
[✓] IntelliJ IDEA Community Edition (version 2017.2.5)
• IntelliJ at /Applications/IntelliJ IDEA CE.app
• Flutter plugin version 21.2.2
• Dart plugin version 172.4343.25
[✓] Connected devices (1 available)
• iPhone SE • 8D312AD9-51E0-4381-A2AF-FC2E997E5EBD • ios • iOS 11.4 (simulator)
! Doctor found issues in 1 category."><pre class="notranslate"><code class="notranslate">[✓] Flutter (Channel master, v0.5.9-pre.60, on Mac OS X 10.13.5 17F77, locale en-US)
• Flutter version 0.5.9-pre.60 at /Users/vik/Projects/flutter
• Framework revision 26ba937846 (3 hours ago), 2018-08-16 13:59:27 +0200
• Engine revision e3687f70c7
• Dart version 2.1.0-dev.0.0.flutter-be6309690f
[!] Android toolchain - develop for Android devices (Android SDK 27.0.3)
• Android SDK at /Users/vik/Library/Android/sdk
• Android NDK location not configured (optional; useful for native profiling support)
• Platform android-27, build-tools 27.0.3
• Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-915-b08)
✗ Android license status unknown.
[✓] iOS toolchain - develop for iOS devices (Xcode 9.4.1)
• Xcode at /Applications/Xcode.app/Contents/Developer
• Xcode 9.4.1, Build version 9F2000
• ios-deploy 1.9.2
• CocoaPods version 1.5.3
[✓] Android Studio (version 3.0)
• Android Studio at /Applications/Android Studio.app/Contents
✗ Flutter plugin not installed; this adds Flutter specific functionality.
• Dart plugin version 171.4424
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-915-b08)
[✓] Android Studio (version 2.3)
• Android Studio at /Applications/Android Studio - old.app/Contents
✗ Flutter plugin not installed; this adds Flutter specific functionality.
✗ Dart plugin not installed; this adds Dart specific functionality.
• Java version OpenJDK Runtime Environment (build 1.8.0_112-release-b06)
[✓] IntelliJ IDEA Community Edition (version 2017.2.5)
• IntelliJ at /Applications/IntelliJ IDEA CE.app
• Flutter plugin version 21.2.2
• Dart plugin version 172.4343.25
[✓] Connected devices (1 available)
• iPhone SE • 8D312AD9-51E0-4381-A2AF-FC2E997E5EBD • ios • iOS 11.4 (simulator)
! Doctor found issues in 1 category.
</code></pre></div> | <h2 dir="auto">Steps to Reproduce</h2>
<ol dir="auto">
<li>Clone <a href="https://gitlab.com/etiennedm/flutter-test-issue.git" rel="nofollow">https://gitlab.com/etiennedm/flutter-test-issue.git</a></li>
<li>Run app, tap button, it will show "Screen size is XxY"</li>
<li>Run test with <code class="notranslate">flutter run test/widget_test.dart</code>, it will output the same screen size. Moreover now the bottom squares are not showing.</li>
</ol>
<p dir="auto">So the issue is that when running a test with <code class="notranslate">flutter run</code> it seems like a <code class="notranslate">MediaQuery.of(context).size</code> is returning the actual size as seen by the test environment and not by the running widget. Is that the expected behavior?</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/8871009/45423950-417ea000-b695-11e8-8d80-9d5fb3c9020b.png"><img src="https://user-images.githubusercontent.com/8871009/45423950-417ea000-b695-11e8-8d80-9d5fb3c9020b.png" alt="screenshot_1536753923" style="max-width: 100%;"></a><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/8871009/45423956-43486380-b695-11e8-8a8a-b9f68979cfc7.png"><img src="https://user-images.githubusercontent.com/8871009/45423956-43486380-b695-11e8-8a8a-b9f68979cfc7.png" alt="screenshot_1536754018" style="max-width: 100%;"></a></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[✓] Flutter (Channel dev, v0.8.1, on Linux, locale en_US.UTF-8)
• Flutter version 0.8.1 at /home/edemaricourt/dev/perso/flutter/flutter
• Framework revision 0235ec59d1 (5 days ago), 2018-09-06 20:23:13 -0700
• Engine revision 9b297b3b51
• Dart version 2.1.0-dev.3.1.flutter-760a9690c2
[✓] Android toolchain - develop for Android devices (Android SDK 28.0.1)
• Android SDK at /home/edemaricourt/Android/Sdk
• Android NDK at /home/edemaricourt/Android/Sdk/ndk-bundle
• Platform android-28, build-tools 28.0.1
• ANDROID_HOME = /home/edemaricourt/Android/Sdk
• Java binary at: /home/edemaricourt/software/android-studio/jre/bin/java
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b01)
• All Android licenses accepted.
[✓] Android Studio (version 3.1)
• Android Studio at /home/edemaricourt/software/android-studio
• Flutter plugin version 26.0.1
• Dart plugin version 173.4700
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b01)
[✓] VS Code (version 1.27.1)
• VS Code at /usr/share/code
• Flutter extension version 2.18.0
[✓] Connected devices (1 available)
• Android SDK built for x86 • emulator-5554 • android-x86 • Android 7.1.1 (API 25) (emulator)
• No issues found!"><pre class="notranslate"><code class="notranslate">[✓] Flutter (Channel dev, v0.8.1, on Linux, locale en_US.UTF-8)
• Flutter version 0.8.1 at /home/edemaricourt/dev/perso/flutter/flutter
• Framework revision 0235ec59d1 (5 days ago), 2018-09-06 20:23:13 -0700
• Engine revision 9b297b3b51
• Dart version 2.1.0-dev.3.1.flutter-760a9690c2
[✓] Android toolchain - develop for Android devices (Android SDK 28.0.1)
• Android SDK at /home/edemaricourt/Android/Sdk
• Android NDK at /home/edemaricourt/Android/Sdk/ndk-bundle
• Platform android-28, build-tools 28.0.1
• ANDROID_HOME = /home/edemaricourt/Android/Sdk
• Java binary at: /home/edemaricourt/software/android-studio/jre/bin/java
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b01)
• All Android licenses accepted.
[✓] Android Studio (version 3.1)
• Android Studio at /home/edemaricourt/software/android-studio
• Flutter plugin version 26.0.1
• Dart plugin version 173.4700
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b01)
[✓] VS Code (version 1.27.1)
• VS Code at /usr/share/code
• Flutter extension version 2.18.0
[✓] Connected devices (1 available)
• Android SDK built for x86 • emulator-5554 • android-x86 • Android 7.1.1 (API 25) (emulator)
• No issues found!
</code></pre></div> | 0 |
<p dir="auto">Summary</p>
<p dir="auto">We try request module with below code spinet</p>
<p dir="auto">Our Proxy srver running on https</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="
import requests
url = 'https://google.com'
roxies = {'https': '10.x.x.x:443'}
if __name__ == '__main__':
print(url)
print(roxies)
response = requests.get(url, proxies=roxies)
if response.status_code == 200:
print(response.text)
else:
print ('Response ERROR', response.status_code)"><pre class="notranslate"><code class="notranslate">
import requests
url = 'https://google.com'
roxies = {'https': '10.x.x.x:443'}
if __name__ == '__main__':
print(url)
print(roxies)
response = requests.get(url, proxies=roxies)
if response.status_code == 200:
print(response.text)
else:
print ('Response ERROR', response.status_code)
</code></pre></div>
<p dir="auto">Same connection we tried from curl its working fine.<br>
<code class="notranslate"> curl -v -x https://10.x.x.x:443 https://google.com</code></p>
<h2 dir="auto">Expected Result</h2>
<p dir="auto">Request module should connect to proxy server over https</p>
<p dir="auto">What you expected.</p>
<p dir="auto">Request module should connect to proxy server over https</p>
<h2 dir="auto">Actual Result</h2>
<p dir="auto">Request module giving following error while connecting to proxy server over https<br>
OSError('Tunnel connection failed: 400 Bad Request')))</p>
<p dir="auto">What happened instead.</p>
<h2 dir="auto">Reproduction Steps</h2>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import requests
"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">requests</span></pre></div>
<h2 dir="auto">System Information</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ python -m requests.help"><pre class="notranslate"><code class="notranslate">$ python -m requests.help
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="<paste here>"><pre class="notranslate"><code class="notranslate"><paste here>
</code></pre></div>
<p dir="auto">This command is only available on Requests v2.16.4 and greater. Otherwise,<br>
please provide some basic information about your system (Python version,<br>
operating system, &c).</p> | <p dir="auto">Hi,</p>
<p dir="auto">I described it here:<br>
<a href="http://stackoverflow.com/questions/20325571/python-requests-failing-over-integer-in-cookie" rel="nofollow">http://stackoverflow.com/questions/20325571/python-requests-failing-over-integer-in-cookie</a></p>
<p dir="auto">But basically this creates an error:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import requests
r = requests.get('http://www.c1000.nl/kies-uw-winkel.aspx')
...
File "/srv/www/li/venv/local/lib/python2.7/site-packages/requests/cookies.py", line 270, in set_cookie
if cookie.value.startswith('"') and cookie.value.endswith('"'):
AttributeError: 'int' object has no attribute 'startswith'"><pre class="notranslate"><code class="notranslate">import requests
r = requests.get('http://www.c1000.nl/kies-uw-winkel.aspx')
...
File "/srv/www/li/venv/local/lib/python2.7/site-packages/requests/cookies.py", line 270, in set_cookie
if cookie.value.startswith('"') and cookie.value.endswith('"'):
AttributeError: 'int' object has no attribute 'startswith'
</code></pre></div>
<p dir="auto">Is this a known issue? Is there any workaround? (i.e. do not parse cookies?)</p> | 0 |
<p dir="auto">Hi all,</p>
<p dir="auto">First of all let me say that i am just now exploring react and typescript. So as i was reading all about both ecosystems i found out about this great project, thank you all for making all these great definitions.</p>
<p dir="auto">I'm starting a project where i also want to use react-router, but immediately found out while i was coding that the definitions for the react-router were wrong. I forked this repository to update the react-router.d.ts and as i was editing i realise that the react-router.d.ts relates to the 0.13 version of react-router. I want to contribute to this repository by updating react-router.d.ts definitions as i need them, but i find it wrong to overwrite the 0.13 version with 1.0 definitions. So, what to do? Should i create another file for the 1.0 version or overwrite the 0.13?</p>
<p dir="auto">Thank you all!</p> | <p dir="auto">Upgrade guide:<br>
<a href="https://github.com/rackt/react-router/blob/master/UPGRADE_GUIDE.md">https://github.com/rackt/react-router/blob/master/UPGRADE_GUIDE.md</a><br>
Glossary:<br>
<a href="https://github.com/rackt/react-router/blob/master/docs/Glossary.md">https://github.com/rackt/react-router/blob/master/docs/Glossary.md</a></p> | 1 |
<h3 dir="auto">Is there an existing issue for this?</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the existing issues</li>
</ul>
<h3 dir="auto">This issue exists in the latest npm version</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I am using the latest npm</li>
</ul>
<h3 dir="auto">Current Behavior</h3>
<p dir="auto">Running <code class="notranslate">npm config set</code> expands all environment variables in <code class="notranslate">.npmrc</code>, permanently.</p>
<p dir="auto"><a href="https://docs.npmjs.com/cli/v8/configuring-npm/npmrc" rel="nofollow">The documentation</a> says you can do this:</p>
<blockquote>
<p dir="auto">All npm config files are an ini-formatted list of key = value parameters. Environment variables can be replaced using ${VARIABLE_NAME}. For example:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="prefix = ${HOME}/.npm-packages"><pre class="notranslate"><code class="notranslate">prefix = ${HOME}/.npm-packages
</code></pre></div>
</blockquote>
<p dir="auto">However if you do this, it gets expanded permanently the first time you run <code class="notranslate">npm config</code>:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ cat .npmrc
prefix = ${HOME}/.npm-packages
$ npm config set dummy=true --location=project
$ cat .npmrc
prefix = /home/example/.npm-packages
dummy=true"><pre class="notranslate"><code class="notranslate">$ cat .npmrc
prefix = ${HOME}/.npm-packages
$ npm config set dummy=true --location=project
$ cat .npmrc
prefix = /home/example/.npm-packages
dummy=true
</code></pre></div>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">Environment variables in <code class="notranslate">.npmrc</code> should be left alone. They are often placeholders for things like authentication tokens for private repositories, so replacing them with the current value is undesirable and breaks functionality.</p>
<h3 dir="auto">Steps To Reproduce</h3>
<ol dir="auto">
<li><code class="notranslate">echo 'prefix = ${HOME}/.npm-packages' >> .npmrc</code></li>
<li><code class="notranslate">cat .npmrc</code></li>
<li>Confirm <code class="notranslate">${HOME}</code> is contained in the file</li>
<li><code class="notranslate">npm config set dummy=true --location=project</code></li>
<li><code class="notranslate">cat .npmrc</code></li>
<li>Observe <code class="notranslate">${HOME}</code> has been replaced with the current user's actual home directory.</li>
</ol>
<h3 dir="auto">Environment</h3>
<ul dir="auto">
<li>npm: 8.18.0</li>
<li>Node.js: 18.4.0</li>
<li>OS Name: Arch Linux</li>
</ul> | <h3 dir="auto">Is there an existing issue for this?</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the existing issues</li>
</ul>
<h3 dir="auto">This issue exists in the latest npm version</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I am using the latest npm</li>
</ul>
<h3 dir="auto">Current Behavior</h3>
<p dir="auto">I found that <code class="notranslate">npm create <initializer></code> behaves the same way as <code class="notranslate">npm init <initializer></code>, but there seems to be no mention of it in the documentation</p>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">To have Documentation</p>
<h3 dir="auto">Steps To Reproduce</h3>
<ol dir="auto">
<li>npm v8.3.0</li>
<li>Run <code class="notranslate">npm create vue</code></li>
<li>It works fine. <code class="notranslate">create-vue</code></li>
</ol>
<h3 dir="auto">Environment</h3>
<ul dir="auto">
<li>npm:</li>
</ul> | 0 |
<h3 dir="auto">System Info</h3>
<ul dir="auto">
<li><code class="notranslate">transformers</code> version: 4.15.0</li>
<li>Platform: Windows-10-10.0.19041-SP0</li>
<li>Python version: 3.8.5</li>
<li>PyTorch version (GPU?): 1.11.0+cu113 (True)</li>
<li>Tensorflow version (GPU?): 2.5.1 (True)</li>
<li>Flax version (CPU?/GPU?/TPU?): not installed (NA)</li>
<li>Jax version: not installed</li>
<li>JaxLib version: not installed</li>
<li>Using GPU in script?: yes</li>
<li>Using distributed or parallel set-up in script?: no</li>
</ul>
<h3 dir="auto">Who can help?</h3>
<p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/patrickvonplaten/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/patrickvonplaten">@patrickvonplaten</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Narsil/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Narsil">@Narsil</a></p>
<h3 dir="auto">Information</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> The official example scripts</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> My own modified scripts</li>
</ul>
<h3 dir="auto">Tasks</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> An officially supported task in the <code class="notranslate">examples</code> folder (such as GLUE/SQuAD, ...)</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> My own task or dataset (give details below)</li>
</ul>
<h3 dir="auto">Reproduction</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="from transformers import GPTNeoForCausalLM, GPT2Tokenizer
model_name = "EleutherAI/gpt-neo-125M"
model = GPTNeoForCausalLM.from_pretrained(model_name, low_cpu_mem_usage=True, cache_dir='gpt_cache_dir', resume_download=True).half().to("cuda:0")
tokenizer = GPT2Tokenizer.from_pretrained(model_name, low_cpu_mem_usage=True, cache_dir='gpt_cache_dir', resume_download=True)
input_ids = tokenizer("This is a line 1\n\nThis is a line 2\n\nThis is a line 3\n\n", return_tensors="pt").input_ids.cuda()
gen_tokens = model.generate(input_ids, do_sample=True, temperature=0.01, max_length=40, min_length=1, repetition_penalty=1.0)
gen_text = "Output: \"" + tokenizer.batch_decode(gen_tokens[:, input_ids.shape[1]:])[0] + "\""
print(gen_text)"><pre class="notranslate"><code class="notranslate">from transformers import GPTNeoForCausalLM, GPT2Tokenizer
model_name = "EleutherAI/gpt-neo-125M"
model = GPTNeoForCausalLM.from_pretrained(model_name, low_cpu_mem_usage=True, cache_dir='gpt_cache_dir', resume_download=True).half().to("cuda:0")
tokenizer = GPT2Tokenizer.from_pretrained(model_name, low_cpu_mem_usage=True, cache_dir='gpt_cache_dir', resume_download=True)
input_ids = tokenizer("This is a line 1\n\nThis is a line 2\n\nThis is a line 3\n\n", return_tensors="pt").input_ids.cuda()
gen_tokens = model.generate(input_ids, do_sample=True, temperature=0.01, max_length=40, min_length=1, repetition_penalty=1.0)
gen_text = "Output: \"" + tokenizer.batch_decode(gen_tokens[:, input_ids.shape[1]:])[0] + "\""
print(gen_text)
</code></pre></div>
<p dir="auto">Actual behavior:<br>
-If the input ends with 1 newline, generating multiple tokens works as expected, but generating just 1 token says the next token should be a newline by itself.<br>
-If the input ends with 2 newlines, generate multiple tokens doesn't work as expected, and printing the next top score reveals the next token is some unexpected thing such as another newline or a token beginning with a space.</p>
<h3 dir="auto">Expected behavior</h3>
<p dir="auto">Expected behavior: If prompt ends in \n\n, generated text shouldn't start with \n.</p>
<p dir="auto">Duplicate of <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1283293287" data-permission-text="Title is private" data-url="https://github.com/huggingface/transformers/issues/17860" data-hovercard-type="issue" data-hovercard-url="/huggingface/transformers/issues/17860/hovercard" href="https://github.com/huggingface/transformers/issues/17860">#17860</a> but it won't let me re-open</p> | <p dir="auto">Hi<br>
I am using transformer 4.1.1 on multiple gpus with distributed launch script below, the n_gpu set in this case is 1 instead of actual n_gpus, could you tell me how I can access to the total number of ranks calling the launcher with? Is there any variable in huggingface library which could show the number of gpus the script is called with? Here is the command I run:</p>
<p dir="auto"><code class="notranslate">export BS=4; CUDA_VISIBLE_DEVICES=0,1 USE_TF=0 python -m torch.distributed.launch --nproc_per_node=2 --master_port=9915 finetune_trainer.py --model_name_or_path t5-small --output_dir output_dir --adam_eps 1e-06 --data_dir wmt_en_ro --do_train --freeze_embeds --label_smoothing 0.1 --learning_rate 3e-5 --logging_first_step --logging_steps 1000 --max_source_length 128 --max_target_length 128 --num_train_epochs 1 --overwrite_output_dir --per_device_train_batch_size $BS --sortish_sampler --task translation --val_max_target_length 128 --warmup_steps 500 --n_train 500 </code></p>
<p dir="auto">thanks</p> | 0 |
<ul dir="auto">
<li><strong>Have I written custom code (as opposed to using a stock example script provided in TensorFlow):</strong><br>
Yes</li>
<li><strong>OS Platform and Distribution (e.g., Linux Ubuntu 16.04):</strong><br>
Debian Buster (Debian 10)</li>
<li><strong>Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the issue happens on mobile device:</strong><br>
N/A</li>
<li><strong>TensorFlow installed from (source or binary):</strong><br>
N/A</li>
<li><strong>TensorFlow version (use command below):</strong><br>
1.8.0</li>
<li><strong>Python version:</strong><br>
2.7.14</li>
<li><strong>Bazel version (if compiling from source):</strong><br>
N/A</li>
<li><strong>GCC/Compiler version (if compiling from source):</strong><br>
7.3.0</li>
<li><strong>CUDA/cuDNN version:</strong><br>
N/A</li>
<li><strong>GPU model and memory:</strong><br>
N/A</li>
<li><strong>Exact command to reproduce:</strong><br>
N/A</li>
</ul>
<p dir="auto">Here's the code to test. Inserting a placeholder changes the sequence of <code class="notranslate">a</code> and <code class="notranslate">b</code>.</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="tf.set_random_seed(1234)
#c = tf.placeholder(dtype=tf.float32, shape=[10,10])
a = tf.random_uniform([1])
b = tf.random_normal([1])
print("Session 1")
with tf.Session() as sess1:
print(sess1.run(a)) # generates 'A1'
print(sess1.run(a)) # generates 'A2'
print(sess1.run(b)) # generates 'B1'
print(sess1.run(b)) # generates 'B2'
print("Session 2")
with tf.Session() as sess2:
print(sess2.run(a)) # generates 'A1'
print(sess2.run(a)) # generates 'A2'
print(sess2.run(b)) # generates 'B1'
print(sess2.run(b)) # generates 'B2'"><pre class="notranslate"><span class="pl-s1">tf</span>.<span class="pl-en">set_random_seed</span>(<span class="pl-c1">1234</span>)
<span class="pl-c">#c = tf.placeholder(dtype=tf.float32, shape=[10,10])</span>
<span class="pl-s1">a</span> <span class="pl-c1">=</span> <span class="pl-s1">tf</span>.<span class="pl-en">random_uniform</span>([<span class="pl-c1">1</span>])
<span class="pl-s1">b</span> <span class="pl-c1">=</span> <span class="pl-s1">tf</span>.<span class="pl-en">random_normal</span>([<span class="pl-c1">1</span>])
<span class="pl-en">print</span>(<span class="pl-s">"Session 1"</span>)
<span class="pl-k">with</span> <span class="pl-s1">tf</span>.<span class="pl-v">Session</span>() <span class="pl-k">as</span> <span class="pl-s1">sess1</span>:
<span class="pl-en">print</span>(<span class="pl-s1">sess1</span>.<span class="pl-en">run</span>(<span class="pl-s1">a</span>)) <span class="pl-c"># generates 'A1'</span>
<span class="pl-en">print</span>(<span class="pl-s1">sess1</span>.<span class="pl-en">run</span>(<span class="pl-s1">a</span>)) <span class="pl-c"># generates 'A2'</span>
<span class="pl-en">print</span>(<span class="pl-s1">sess1</span>.<span class="pl-en">run</span>(<span class="pl-s1">b</span>)) <span class="pl-c"># generates 'B1'</span>
<span class="pl-en">print</span>(<span class="pl-s1">sess1</span>.<span class="pl-en">run</span>(<span class="pl-s1">b</span>)) <span class="pl-c"># generates 'B2'</span>
<span class="pl-en">print</span>(<span class="pl-s">"Session 2"</span>)
<span class="pl-k">with</span> <span class="pl-s1">tf</span>.<span class="pl-v">Session</span>() <span class="pl-k">as</span> <span class="pl-s1">sess2</span>:
<span class="pl-en">print</span>(<span class="pl-s1">sess2</span>.<span class="pl-en">run</span>(<span class="pl-s1">a</span>)) <span class="pl-c"># generates 'A1'</span>
<span class="pl-en">print</span>(<span class="pl-s1">sess2</span>.<span class="pl-en">run</span>(<span class="pl-s1">a</span>)) <span class="pl-c"># generates 'A2'</span>
<span class="pl-en">print</span>(<span class="pl-s1">sess2</span>.<span class="pl-en">run</span>(<span class="pl-s1">b</span>)) <span class="pl-c"># generates 'B1'</span>
<span class="pl-en">print</span>(<span class="pl-s1">sess2</span>.<span class="pl-en">run</span>(<span class="pl-s1">b</span>)) <span class="pl-c"># generates 'B2'</span></pre></div>
<p dir="auto">Few Observations -</p>
<ol dir="auto">
<li>I tried adding the line <code class="notranslate">c = tf.placeholder(dtype=tf.float32, shape=[10,10])</code> before and after <code class="notranslate">tf.set_random_seed(1234)</code>. The issue persists.</li>
<li>Insertion of placeholder does not affect the outcome when op level seed is set.</li>
</ol>
<p dir="auto">Does the placeholder affect the sequence in which random numbers are generated by graph level seed?</p> | <p dir="auto">Please go to Stack Overflow for help and support:</p>
<p dir="auto"><a href="https://stackoverflow.com/questions/tagged/tensorflow" rel="nofollow">https://stackoverflow.com/questions/tagged/tensorflow</a></p>
<p dir="auto">If you open a GitHub issue, here is our policy:</p>
<ol dir="auto">
<li>It must be a bug or a feature request.</li>
<li>The form below must be filled out.</li>
<li>It shouldn't be a TensorBoard issue. Those go <a href="https://github.com/tensorflow/tensorboard/issues">here</a>.</li>
</ol>
<p dir="auto"><strong>Here's why we have that policy</strong>: TensorFlow developers respond to issues. We want to focus on work that benefits the whole community, e.g., fixing bugs and adding features. Support only helps individuals. GitHub also notifies thousands of people when issues are filed. We want them to see you communicating an interesting problem, rather than being redirected to Stack Overflow.</p>
<hr>
<h3 dir="auto">System information</h3>
<ul dir="auto">
<li><strong>Have I written custom code (as opposed to using a stock example script provided in TensorFlow)</strong>:</li>
<li><strong>OS Platform and Distribution (e.g., Linux Ubuntu 16.04)</strong>:</li>
<li><strong>TensorFlow installed from (source or binary)</strong>:</li>
<li><strong>TensorFlow version (use command below)</strong>:</li>
<li><strong>Python version</strong>:</li>
<li><strong>Bazel version (if compiling from source)</strong>:</li>
<li><strong>CUDA/cuDNN version</strong>:</li>
<li><strong>GPU model and memory</strong>:</li>
<li><strong>Exact command to reproduce</strong>:</li>
</ul>
<p dir="auto">You can collect some of this information using our environment capture script:</p>
<p dir="auto"><a href="https://github.com/tensorflow/tensorflow/tree/master/tools/tf_env_collect.sh">https://github.com/tensorflow/tensorflow/tree/master/tools/tf_env_collect.sh</a></p>
<p dir="auto">You can obtain the TensorFlow version with</p>
<p dir="auto">python -c "import tensorflow as tf; print(tf.GIT_VERSION, tf.VERSION)"</p>
<h3 dir="auto">Describe the problem</h3>
<p dir="auto">Describe the problem clearly here. Be sure to convey here why it's a bug in TensorFlow or a feature request.</p>
<h3 dir="auto">Source code / logs</h3>
<p dir="auto">Include any logs or source code that would be helpful to diagnose the problem. If including tracebacks, please include the full traceback. Large logs and files should be attached. Try to provide a reproducible test case that is the bare minimum necessary to generate the problem.</p> | 0 |
<h2 dir="auto">Environment</h2>
<table role="table">
<thead>
<tr>
<th>Tech</th>
<th>Version</th>
</tr>
</thead>
<tbody>
<tr>
<td>Material-UI</td>
<td>1.0.0-beta.30</td>
</tr>
<tr>
<td>React</td>
<td>16.2.0</td>
</tr>
<tr>
<td>browser</td>
<td>chrome</td>
</tr>
</tbody>
</table>
<h2 dir="auto">Current Bug</h2>
<p dir="auto">In production mode i have this error happening because of the ripple effect on the Buttons. In development mode it's working perfectly.</p>
<p dir="auto">I thought it was a minifying problem but i checked my webpack configuration for Uglify and it seems to be good:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" new webpack.optimize.UglifyJsPlugin({
sourceMap: process.env.NODE_ENV === 'production',
parallel: process.env.NODE_ENV === 'production',
compress: {
warnings: false,
drop_console: false,
}
}),"><pre class="notranslate"><code class="notranslate"> new webpack.optimize.UglifyJsPlugin({
sourceMap: process.env.NODE_ENV === 'production',
parallel: process.env.NODE_ENV === 'production',
compress: {
warnings: false,
drop_console: false,
}
}),
</code></pre></div>
<p dir="auto">When i click on a Button with the effect i got this error in the console :</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Error: Minified React error #44; visit http://facebook.github.io/react/docs/error-decoder.html?invariant=44 for the full message or use the non-minified dev environment for full errors and additional helpful warnings.
at r (reactProdInvariant.js:29)
at Object.r [as findDOMNode] (findDOMNode.js:51)
at t.updateStatus (Transition.js:212)
at t.componentDidMount (Transition.js:157)
at commitLifeCycles (react-dom.production.min.js:149)
at t (react-dom.production.min.js:158)
at M (react-dom.production.min.js:169)
at b (react-dom.production.min.js:168)
at batchedUpdates (react-dom.production.min.js:171)
at Q (react-dom.production.min.js:54)"><pre class="notranslate"><code class="notranslate">Error: Minified React error #44; visit http://facebook.github.io/react/docs/error-decoder.html?invariant=44 for the full message or use the non-minified dev environment for full errors and additional helpful warnings.
at r (reactProdInvariant.js:29)
at Object.r [as findDOMNode] (findDOMNode.js:51)
at t.updateStatus (Transition.js:212)
at t.componentDidMount (Transition.js:157)
at commitLifeCycles (react-dom.production.min.js:149)
at t (react-dom.production.min.js:158)
at M (react-dom.production.min.js:169)
at b (react-dom.production.min.js:168)
at batchedUpdates (react-dom.production.min.js:171)
at Q (react-dom.production.min.js:54)
</code></pre></div>
<p dir="auto">I found that Transition.js is the problem and it happens only when i click on a Button, so i deduce that it should be the ripple effect.</p>
<p dir="auto">If you have questions ?</p> | <p dir="auto">When trying to add the Select component on beta.10, I see the following error:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/1496591/30512382-4289e2d4-9abc-11e7-98ca-fb8f5718fb7c.png"><img width="909" alt="select - ismui issue" src="https://user-images.githubusercontent.com/1496591/30512382-4289e2d4-9abc-11e7-98ca-fb8f5718fb7c.png" style="max-width: 100%;"></a></p>
<p dir="auto">[ x] I have searched the <a href="https://github.com/callemall/material-ui/issues">issues</a> of this repository and believe that this is not a duplicate.</p>
<h2 dir="auto">Expected Behavior</h2>
<p dir="auto">I tried to add the stepped with the example from the docs.</p>
<h2 dir="auto">Current Behavior</h2>
<p dir="auto">I get an error: "utils.js:215 uncaught at TypeError: (0 , _reactHelpers.isMuiElement) is not a function"</p>
<h2 dir="auto">Context</h2>
<ul dir="auto">
<li>On beta.10, trying to use Select in a grid without a root <code class="notranslate"><form></code> element</li>
<li>Other material-ui components all seem to work fine when used like this.</li>
</ul>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/1496591/30512407-f0ddae2e-9abc-11e7-90e4-33df312781eb.png"><img width="480" alt="select in grid" src="https://user-images.githubusercontent.com/1496591/30512407-f0ddae2e-9abc-11e7-90e4-33df312781eb.png" style="max-width: 100%;"></a></p>
<h2 dir="auto">Your Environment</h2>
<table role="table">
<thead>
<tr>
<th>Tech</th>
<th>Version</th>
</tr>
</thead>
<tbody>
<tr>
<td>Material-UI</td>
<td>1.0.0-beta.10</td>
</tr>
<tr>
<td>React</td>
<td>15.6.1</td>
</tr>
<tr>
<td>browser</td>
<td>Chrome - Version 60.0.3112.113 (Official Build) (64-bit)</td>
</tr>
</tbody>
</table> | 0 |
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=benrowlands" rel="nofollow">Ben Rowlands</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-5126?redirect=false" rel="nofollow">SPR-5126</a></strong> and commented</p>
<p dir="auto">The Spring DAO exception hierarchy is not fine grained enough to isolate duplicate key errors. A duplicate key error is an example of where an application may catch the exception and invoke alternative logic instead of just letting it fall down the stack.</p>
<p dir="auto">For example, we read messages from a queue and insert the data into a database. We explicitly catch a duplicate key insert exception as this indicates we've processed the same message earlier. This is more efficient than a guarding the update with a check-then-act (which also introduces a race condition that may lead to dup-key exception anyway).</p>
<p dir="auto">Additionally, if we use single-phase commit for our JMS and DB transactions (commit DB first then JMS) a failure scenario is that the DB transaction commits but the JMS transaction rollsback. In this case the message is delivered again and we get a dup-key exception. We can then safely ignore such duplicate messages.</p>
<p dir="auto">A dup-key error is currently classified as a DataIntegrityViolationException along with other errors such as a data bounds error so we can't simply catch this exception type. We could work around this be checking the vendor error-code/state however this is not portable and cumbersome.</p>
<p dir="auto">Ideally an exception like:</p>
<p dir="auto">public class DuplicateKeyException extends DataIntegrityViolationException { }</p>
<p dir="auto">Spring already provides mappings from vendor specific codes so it would be very powerful if it could provide a fine grained exception to allow this common duplicate-key handling pattern to be detected just using exception type.</p>
<p dir="auto">We currently use the following SQLExceptions to detect a dup-key:</p>
<ul dir="auto">
<li>Sybase: error-state=23000</li>
<li>DB2: error-state=23505</li>
</ul>
<hr>
<p dir="auto"><strong>Issue Links:</strong></p>
<ul dir="auto">
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398090697" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/9798" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/9798/hovercard" href="https://github.com/spring-projects/spring-framework/issues/9798">#9798</a> Add DuplicateKeyException to DAO exception hierachy (<em><strong>"duplicates"</strong></em>)</li>
</ul> | <p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=skaffman" rel="nofollow">Kenny MacLeod</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-6750?redirect=false" rel="nofollow">SPR-6750</a></strong> and commented</p>
<p dir="auto">The mvc:annotation-driven schema permits the specification of messageConverters, which are passed on to the generated AnnotationMethodHandlerAdapter. I'd like to see the ability to specify the customArgumentResolvers also.</p>
<p dir="auto">I suppose there's a fine line between making mvc:annotation-driven minimalist and supporting common use cases only, and simply duplicating every property from AnnotationMethodHandlerAdapter and DefaultAnnotationHandlerMapping.</p>
<hr>
<p dir="auto"><strong>Affects:</strong> 3.0 GA</p> | 0 |
<h1 dir="auto">Environment</h1>
<p dir="auto"><code class="notranslate">[Version 10.0.18362.175]</code></p>
<h1 dir="auto">Steps to reproduce</h1>
<ol dir="auto">
<li>Install from store</li>
<li>Open program</li>
<li>Hover with mouse on red section, try to drag and move</li>
<li>Fail.</li>
</ol>
<h1 dir="auto">Expected behavior</h1>
<p dir="auto">Dragging window with mouse works in the red section and green section</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/2892242/60074097-6a52bc00-9722-11e9-8d6f-3b68beaf3304.png"><img src="https://user-images.githubusercontent.com/2892242/60074097-6a52bc00-9722-11e9-8d6f-3b68beaf3304.png" alt="image" style="max-width: 100%;"></a></p>
<h1 dir="auto">Actual behavior</h1>
<p dir="auto">Dragging window with mouse does not work in the red section, can be dragged only by hover and mouse press on the green section.</p> | <p dir="auto">I think its really nice that you can put the terminal-tabs in your titlebar but I got an issue there.</p>
<p dir="auto">You can't move the window around klicking on the blank space in the the-bar to move the window around (highlighted in the screenshot).</p>
<p dir="auto">Since people are moving their terminal quite often it would be nice to offer this space, so you can drag your terminal around.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/34196171/57354083-ccebfa80-716a-11e9-91ac-55747463a95c.png"><img src="https://user-images.githubusercontent.com/34196171/57354083-ccebfa80-716a-11e9-91ac-55747463a95c.png" alt="grafik" style="max-width: 100%;"></a></p> | 1 |
<p dir="auto"><strong>Describe the bug</strong><br>
When the deno extension is enabled, typed imports via <code class="notranslate">/** @type {import("...</code> stop working.</p>
<p dir="auto"><strong>To Reproduce</strong></p>
<ol dir="auto">
<li>Create <code class="notranslate">Bar.js</code>:</li>
</ol>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="export class Bar {}"><pre class="notranslate"><span class="pl-k">export</span> <span class="pl-k">class</span> <span class="pl-v">Bar</span> <span class="pl-kos">{</span><span class="pl-kos">}</span></pre></div>
<ol start="2" dir="auto">
<li>Create <code class="notranslate">Foo.js</code>:</li>
</ol>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="/** @type {import("./Bar.js").Bar} */
const foo = null;"><pre class="notranslate"><span class="pl-c">/** <span class="pl-k">@type</span> {import("./Bar.js").Bar} */</span>
<span class="pl-k">const</span> <span class="pl-s1">foo</span> <span class="pl-c1">=</span> <span class="pl-c1">null</span><span class="pl-kos">;</span></pre></div>
<ol start="3" dir="auto">
<li>Hover over <code class="notranslate">foo</code> and note it's type is set to <code class="notranslate">Bar</code>.</li>
<li>Enable deno with <code class="notranslate">Deno: Initialize Workspace Configuration</code></li>
<li>Hover over <code class="notranslate">foo</code> again.</li>
</ol>
<p dir="auto"><strong>Expected behavior</strong><br>
The type remains set to <code class="notranslate">Bar</code>, rather than <code class="notranslate">any</code>.</p>
<p dir="auto"><strong>Screenshots</strong></p>
<p dir="auto">If applicable, add screenshots to help explain your problem.</p>
<p dir="auto"><strong>Versions</strong></p>
<p dir="auto">vscode: 1.62.3 deno: 1.16.3 extension: 3.9.2</p> | <p dir="auto">JS bundlers have a lot of complexity and we do not want to take on all that complexity in Deno. We believe this can be done effectively in "user space" - that is, it doesn't need to be built into the Deno executable. <a href="https://packup.deno.dev/" rel="nofollow">Packup</a> is an example of a Deno program which utilizes esbuild-wasm to provide complex bundling abilities.</p>
<p dir="auto">Ultimately we'd like to remove <a href="https://github.com/denoland/deno/blob/90e3abe8f9aa536809e89b1e232845f3a6d7604d/cli/Cargo.toml#L80">swc_bundler dependency completely</a> completely from Deno.</p> | 0 |
<p dir="auto">It seems that <code class="notranslate">rustc</code> does not check if the type paramater satisfy the declared type bounds in trait and impl function definitions, but only for bare functions. <code class="notranslate">Rustc</code> fails on the following code with the following, rather confusing, error message: <code class="notranslate">type &mut std::collections::hash::set::HashSet<[u8]> does not implement any method in scope named insert</code></p>
<p dir="auto">But I think that <code class="notranslate">rustc</code> should fail at an earlier stage, because <code class="notranslate">[u8]</code> does not implement <code class="notranslate">core::marker::Sized</code>.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="use std::collections::HashSet;
struct Bar;
impl Bar {
fn test(bar: &mut HashSet<[u8]>) {
let x: [u8; 3] = [1, 2, 3];
bar.insert(x);
}
}
trait Foo {
fn test(&self, _: &mut HashSet<[u8]>);
}"><pre class="notranslate"><code class="notranslate">use std::collections::HashSet;
struct Bar;
impl Bar {
fn test(bar: &mut HashSet<[u8]>) {
let x: [u8; 3] = [1, 2, 3];
bar.insert(x);
}
}
trait Foo {
fn test(&self, _: &mut HashSet<[u8]>);
}
</code></pre></div>
<p dir="auto">The following code is a more general example and does not depend on any library.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="trait Cons {
fn myFn(&self);
}
struct Foo<T: Cons> {
field: T
}
trait Kaboom {
fn foo(&self, x: Foo<u8>) {}
// this does NOT fail, but Foo<u8> is no valid type
}
struct KaboomStruct;
impl KaboomStruct {
fn bar(&self, x: Foo<u8>) {}
// this does NOT fail, but Foo<u8> is no valid type
}
fn foo(x: Foo<u8>) {}
// this fails, beacuse u8 does not implement Cons"><pre class="notranslate"><code class="notranslate">trait Cons {
fn myFn(&self);
}
struct Foo<T: Cons> {
field: T
}
trait Kaboom {
fn foo(&self, x: Foo<u8>) {}
// this does NOT fail, but Foo<u8> is no valid type
}
struct KaboomStruct;
impl KaboomStruct {
fn bar(&self, x: Foo<u8>) {}
// this does NOT fail, but Foo<u8> is no valid type
}
fn foo(x: Foo<u8>) {}
// this fails, beacuse u8 does not implement Cons
</code></pre></div> | <p dir="auto">Now that <a href="https://github.com/rust-lang/rfcs/blob/master/text/0517-io-os-reform.md">IO reform</a> is complete, we have a large number of "primitive" IO APIs -- functions in Rust that roughly correspond to a single system API, like opening a file or extracting its metadata.</p>
<p dir="auto">We need to go through all of these APIs and add a section like <code class="notranslate"># Platform notes</code> which details which system API(s) are being used for each platform (usually, a Unix/Windows division suffices).</p>
<p dir="auto">This documentation is very important for understanding the interaction of the <code class="notranslate">std</code> IO APIs with the underlying system, which is relevant when using lowering APIs, when sandboxing and application, and likely for other scenarios as well.</p> | 0 |
<p dir="auto">Python 3.4<br>
Python 3 Matplotlib version is 1.4.2,<br>
Python 3 Numpy version is 1.8.2<br>
Reproduced with Python2.</p>
<p dir="auto">Installed on Raspbian Linux Jessie (RaspberryPi). Both installed with apt-get.</p>
<p dir="auto">I am creating a graph from a csv file that has the following format</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="08:21:05,41.0
08:22:05,41.0
08:23:05,41.0"><pre class="notranslate"><code class="notranslate">08:21:05,41.0
08:22:05,41.0
08:23:05,41.0
</code></pre></div>
<p dir="auto">The first column is the time (of course) and the second column is a centimetre measurement.</p>
<p dir="auto">I am updating an application I wrote to measure sump pit waterlevel activity to Python3 which requires converting<br>
the date from bytes to str as it was throwing an error. Accepted bytes fine under Python2.</p>
<p dir="auto">The bytesdate2str function was courtesy github user cimarronm in another thread.</p>
<p dir="auto">The graph gets created with the following code;</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import time
import numpy as np
import matplotlib as mpl
mpl.use('Agg')
import matplotlib.pyplot as plt
import matplotlib.dates as mdates
from matplotlib import rcParams
rcParams.update({'figure.autolayout': True})
def bytesdate2str(fmt, encoding='utf-8'):
'''Convert strpdate2num from bytes to string as required in Python3.
This is a workaround as described in the following tread;
https://github.com/matplotlib/matplotlib/issues/4126/
Credit to github user cimarronm for this workaround.
'''
strconverter = mdates.strpdate2num(fmt)
def bytesconverter(b):
s = b.decode(encoding)
return strconverter(s)
return bytesconverter
def graph(csv_file, filename, bytes2str):
'''Create a line graph from a two column csv file.'''
unit = 'metric'
date, value = np.loadtxt(csv_file, delimiter=',', unpack=True,
converters={0: bytes2str}
)
fig = plt.figure(figsize=(10, 3.5))
fig.add_subplot(111, axisbg='white', frameon=False)
rcParams.update({'font.size': 9})
plt.plot_date(x=date, y=value, ls='solid', linewidth=2, color='#FB921D',
fmt=':'
)
title = "Sump Pit Water Level {}".format(time.strftime('%Y-%m-%d %H:%M'))
title_set = plt.title(title)
title_set.set_y(1.09)
plt.subplots_adjust(top=0.86)
if unit == 'imperial':
plt.ylabel('inches')
if unit == 'metric':
plt.ylabel('centimeters')
plt.xlabel('Time of Day')
plt.xticks(rotation=30)
plt.grid(True, color='#ECE5DE', linestyle='solid')
plt.tick_params(axis='x', bottom='off', top='off')
plt.tick_params(axis='y', left='off', right='off')
plt.savefig(filename, dpi=72)
csv_file = "file.csv"
filename = "today.png"
bytes2str = bytesdate2str('%H:%M:%S')
graph(csv_file, filename, bytes2str)
"><pre class="notranslate"><code class="notranslate">import time
import numpy as np
import matplotlib as mpl
mpl.use('Agg')
import matplotlib.pyplot as plt
import matplotlib.dates as mdates
from matplotlib import rcParams
rcParams.update({'figure.autolayout': True})
def bytesdate2str(fmt, encoding='utf-8'):
'''Convert strpdate2num from bytes to string as required in Python3.
This is a workaround as described in the following tread;
https://github.com/matplotlib/matplotlib/issues/4126/
Credit to github user cimarronm for this workaround.
'''
strconverter = mdates.strpdate2num(fmt)
def bytesconverter(b):
s = b.decode(encoding)
return strconverter(s)
return bytesconverter
def graph(csv_file, filename, bytes2str):
'''Create a line graph from a two column csv file.'''
unit = 'metric'
date, value = np.loadtxt(csv_file, delimiter=',', unpack=True,
converters={0: bytes2str}
)
fig = plt.figure(figsize=(10, 3.5))
fig.add_subplot(111, axisbg='white', frameon=False)
rcParams.update({'font.size': 9})
plt.plot_date(x=date, y=value, ls='solid', linewidth=2, color='#FB921D',
fmt=':'
)
title = "Sump Pit Water Level {}".format(time.strftime('%Y-%m-%d %H:%M'))
title_set = plt.title(title)
title_set.set_y(1.09)
plt.subplots_adjust(top=0.86)
if unit == 'imperial':
plt.ylabel('inches')
if unit == 'metric':
plt.ylabel('centimeters')
plt.xlabel('Time of Day')
plt.xticks(rotation=30)
plt.grid(True, color='#ECE5DE', linestyle='solid')
plt.tick_params(axis='x', bottom='off', top='off')
plt.tick_params(axis='y', left='off', right='off')
plt.savefig(filename, dpi=72)
csv_file = "file.csv"
filename = "today.png"
bytes2str = bytesdate2str('%H:%M:%S')
graph(csv_file, filename, bytes2str)
</code></pre></div>
<p dir="auto">Using matplotlib for Python 3 I had to convert the date from bytes to str which is what the function bytesdate2str does.</p>
<p dir="auto">However the time on the x axis now appends .%f to the end. I have been able to find some documentation on the matplotlib site around date formatting<br>
but I am having trouble figuring out how to remove that .%f</p>
<p dir="auto">Here is what the xticks looked like before without converting to str in python2.<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/8fff4044d19d174b082e8e7310d454eaa2b18b0a763e22bd80bb862205a92531/68747470733a2f2f7777772e6c696e75786e6f7274682e6f72672f72617370692d73756d702f696d616765732f72617370692d63686172742e706e67"><img src="https://camo.githubusercontent.com/8fff4044d19d174b082e8e7310d454eaa2b18b0a763e22bd80bb862205a92531/68747470733a2f2f7777772e6c696e75786e6f7274682e6f72672f72617370692d73756d702f696d616765732f72617370692d63686172742e706e67" alt="Good xticks image" data-canonical-src="https://www.linuxnorth.org/raspi-sump/images/raspi-chart.png" style="max-width: 100%;"></a></p>
<p dir="auto">Here is what the xticks looks like after converting from bytes to str (under both Python2 and 3)<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/1b8a05069ade2a8f5e245bd0d3639a7de6185c6772cf00907c05513f8b931635/68747470733a2f2f7777772e6c696e75786e6f7274682e6f72672f72617370692d73756d702f696d616765732f6261642e706e67"><img src="https://camo.githubusercontent.com/1b8a05069ade2a8f5e245bd0d3639a7de6185c6772cf00907c05513f8b931635/68747470733a2f2f7777772e6c696e75786e6f7274682e6f72672f72617370692d73756d702f696d616765732f6261642e706e67" alt="Bad xticks image" data-canonical-src="https://www.linuxnorth.org/raspi-sump/images/bad.png" style="max-width: 100%;"></a></p>
<p dir="auto">How do I remove %f from the end of the time? This is the only thing I have used matplotlib for and am a novice when it comes<br>
to the package. Appreciate any insight you can provide.</p> | <p dir="auto">When plotting with a timestamp-based axis with datetimes of years <code class="notranslate"><= 1900</code>, upon zooming into sub-second scales, the default axis label date formatter shows "%f" instead of microseconds.</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="In [52]: import time, datetime, matplotlib.dates as mdates
In [53]: dt = mdates.date2num(datetime.datetime(1900, 1, 1, 10, 0))
In [54]: mdates.DateFormatter("%H:%M:%S.%f")(dt)
Out[54]: u'10:00:00.%f'
In [55]: time.strftime("%H:%M:%S.%f", (2000,) + mdates.num2date(dt).timetuple()[1:])
Out[55]: '10:00:00.%f'"><pre class="notranslate"><span class="pl-v">In</span> [<span class="pl-c1">52</span>]: <span class="pl-s1">import</span> <span class="pl-s1">time</span>, <span class="pl-s1">datetime</span>, <span class="pl-s1">matplotlib</span>.<span class="pl-s1">dates</span> <span class="pl-k">as</span> <span class="pl-s1">mdates</span>
<span class="pl-v">In</span> [<span class="pl-c1">53</span>]: <span class="pl-s1">dt</span> <span class="pl-c1">=</span> <span class="pl-s1">mdates</span>.<span class="pl-en">date2num</span>(<span class="pl-s1">datetime</span>.<span class="pl-en">datetime</span>(<span class="pl-c1">1900</span>, <span class="pl-c1">1</span>, <span class="pl-c1">1</span>, <span class="pl-c1">10</span>, <span class="pl-c1">0</span>))
<span class="pl-v">In</span> [<span class="pl-c1">54</span>]: <span class="pl-s1">mdates</span>.<span class="pl-v">DateFormatter</span>(<span class="pl-s">"%H:%M:%S.%f"</span>)(<span class="pl-s1">dt</span>)
<span class="pl-v">Out</span>[<span class="pl-c1">54</span>]: <span class="pl-s">u'10:00:00.%f'</span>
<span class="pl-v">In</span> [<span class="pl-c1">55</span>]: <span class="pl-s1">time</span>.<span class="pl-en">strftime</span>(<span class="pl-s">"%H:%M:%S.%f"</span>, (<span class="pl-c1">2000</span>,) <span class="pl-c1">+</span> <span class="pl-s1">mdates</span>.<span class="pl-en">num2date</span>(<span class="pl-s1">dt</span>).<span class="pl-en">timetuple</span>()[<span class="pl-c1">1</span>:])
<span class="pl-v">Out</span>[<span class="pl-c1">55</span>]: <span class="pl-s">'10:00:00.%f'</span></pre></div>
<p dir="auto">This is since <code class="notranslate">timetuple</code> doesn't carry microsecond data. Minor in nature (was using a sentinel date of 1900 without realizing matplotlib would handle it specially) but I figured I would point it out.</p> | 1 |
<h2 dir="auto">Steps to Reproduce</h2>
<ol dir="auto">
<li>Create a new plugin <code class="notranslate">flutter create --plugin hello</code></li>
<li>Open in IDEA: <code class="notranslate">cd hello; idea .</code></li>
</ol>
<p dir="auto">=> Would like to be able to launch the example app, but we seem to be missing a launch config, so Run/Debug is disabled.</p> | <p dir="auto">Easily reproducible with a simple app:</p>
<div class="highlight highlight-source-dart notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import 'package:flutter/material.dart';
void main() {
runApp(new MaterialApp(home: new Scaffold(body: new Text('App!'))));
}"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s">'package:flutter/material.dart'</span>;
<span class="pl-k">void</span> <span class="pl-en">main</span>() {
<span class="pl-en">runApp</span>(<span class="pl-k">new</span> <span class="pl-c1">MaterialApp</span>(home<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">Scaffold</span>(body<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">Text</span>(<span class="pl-s">'App!'</span>))));
}</pre></div>
<p dir="auto">Pressing back button once closes the main page but does not quit the app. We see a blank page. Pressing back a second time produces the following exception:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="E/flutter ( 3151): [ERROR:../../lib/tonic/logging/dart_error.cc(16)] Unhandled exception:
E/flutter ( 3151): Bad state: Future already completed
E/flutter ( 3151): #0 _AsyncCompleter.complete (dart:async/future_impl.dart:40)
E/flutter ( 3151): #1 Route.didComplete (package:flutter/src/widgets/navigator.dart:128)
E/flutter ( 3151): #2 Route.didPop (package:flutter/src/widgets/navigator.dart:92)
E/flutter ( 3151): #3 OverlayRoute.didPop (package:flutter/src/widgets/routes.dart:52)
E/flutter ( 3151): #4 TransitionRoute.didPop (package:flutter/src/widgets/routes.dart:184)
E/flutter ( 3151): #5 TransitionRoute&&LocalHistoryRoute.didPop (package:flutter/src/widgets/routes.dart:329)
E/flutter ( 3151): #6 NavigatorState.pop (package:flutter/src/widgets/navigator.dart:996)
E/flutter ( 3151): #7 NavigatorState.maybePop.<maybePop_async_body> (package:flutter/src/widgets/navigator.dart:970)
E/flutter ( 3151): <asynchronous suspension>
E/flutter ( 3151): #8 NavigatorState.maybePop (package:flutter/src/widgets/navigator.dart)
E/flutter ( 3151): #9 _WidgetsAppState.didPopRoute.<didPopRoute_async_body> (package:flutter/src/widgets/app.dart:158)
E/flutter ( 3151): <asynchronous suspension>
E/flutter ( 3151): #10 _WidgetsAppState.didPopRoute (package:flutter/src/widgets/app.dart)
E/flutter ( 3151): #11 BindingBase&SchedulerBinding&GestureBinding&ServicesBinding&RendererBinding&WidgetsBinding.handlePopRoute.<handlePopRoute_async_body> (package:flutter/src/widgets/binding.dart:182)
E/flutter ( 3151): <asynchronous suspension>
E/flutter ( 3151): #12 BindingBase&SchedulerBinding&GestureBinding&ServicesBinding&RendererBinding&WidgetsBinding.handlePopRoute (package:flutter/src/widgets/binding.dart)
E/flutter ( 3151): #13 BindingBase&SchedulerBinding&GestureBinding&ServicesBinding&RendererBinding&WidgetsBinding._handleNavigationMessage.<_handleNavigationMessage_async_body> (package:flutter/src/widgets/binding.dart:191)
E/flutter ( 3151): <asynchronous suspension>
E/flutter ( 3151): #14 BindingBase&SchedulerBinding&GestureBinding&ServicesBinding&RendererBinding&WidgetsBinding._handleNavigationMessage (package:flutter/src/widgets/binding.dart)
E/flutter ( 3151): #15 PlatformMessages.setJSONMessageHandler.<anonymous closure>.<<anonymous closure>_async_body> (package:flutter/src/services/platform_messages.dart:174)
E/flutter ( 3151): <asynchronous suspension>
E/flutter ( 3151): #16 PlatformMessages.setJSONMessageHandler.<anonymous closure> (package:flutter/src/services/platform_messages.dart)
E/flutter ( 3151): #17 PlatformMessages.setStringMessageHandler.<anonymous closure>.<<anonymous closure>_async_body> (package:flutter/src/services/platform_messages.dart:160)
E/flutter ( 3151): <asynchronous suspension>
E/flutter ( 3151): #18 PlatformMessages.setStringMessageHandler.<anonymous closure> (package:flutter/src/services/platform_messages.dart)
E/flutter ( 3151): #19 PlatformMessages.handlePlatformMessage.<handlePlatformMessage_async_body> (package:flutter/src/services/platform_messages.dart:77)
E/flutter ( 3151): <asynchronous suspension>
E/flutter ( 3151): #20 PlatformMessages.handlePlatformMessage (package:flutter/src/services/platform_messages.dart)
E/flutter ( 3151): #21 _dispatchPlatformMessage (file:///b/build/slave/Linux_Engine/build/src/flutter/lib/ui/hooks.dart:63)"><pre class="notranslate"><code class="notranslate">E/flutter ( 3151): [ERROR:../../lib/tonic/logging/dart_error.cc(16)] Unhandled exception:
E/flutter ( 3151): Bad state: Future already completed
E/flutter ( 3151): #0 _AsyncCompleter.complete (dart:async/future_impl.dart:40)
E/flutter ( 3151): #1 Route.didComplete (package:flutter/src/widgets/navigator.dart:128)
E/flutter ( 3151): #2 Route.didPop (package:flutter/src/widgets/navigator.dart:92)
E/flutter ( 3151): #3 OverlayRoute.didPop (package:flutter/src/widgets/routes.dart:52)
E/flutter ( 3151): #4 TransitionRoute.didPop (package:flutter/src/widgets/routes.dart:184)
E/flutter ( 3151): #5 TransitionRoute&&LocalHistoryRoute.didPop (package:flutter/src/widgets/routes.dart:329)
E/flutter ( 3151): #6 NavigatorState.pop (package:flutter/src/widgets/navigator.dart:996)
E/flutter ( 3151): #7 NavigatorState.maybePop.<maybePop_async_body> (package:flutter/src/widgets/navigator.dart:970)
E/flutter ( 3151): <asynchronous suspension>
E/flutter ( 3151): #8 NavigatorState.maybePop (package:flutter/src/widgets/navigator.dart)
E/flutter ( 3151): #9 _WidgetsAppState.didPopRoute.<didPopRoute_async_body> (package:flutter/src/widgets/app.dart:158)
E/flutter ( 3151): <asynchronous suspension>
E/flutter ( 3151): #10 _WidgetsAppState.didPopRoute (package:flutter/src/widgets/app.dart)
E/flutter ( 3151): #11 BindingBase&SchedulerBinding&GestureBinding&ServicesBinding&RendererBinding&WidgetsBinding.handlePopRoute.<handlePopRoute_async_body> (package:flutter/src/widgets/binding.dart:182)
E/flutter ( 3151): <asynchronous suspension>
E/flutter ( 3151): #12 BindingBase&SchedulerBinding&GestureBinding&ServicesBinding&RendererBinding&WidgetsBinding.handlePopRoute (package:flutter/src/widgets/binding.dart)
E/flutter ( 3151): #13 BindingBase&SchedulerBinding&GestureBinding&ServicesBinding&RendererBinding&WidgetsBinding._handleNavigationMessage.<_handleNavigationMessage_async_body> (package:flutter/src/widgets/binding.dart:191)
E/flutter ( 3151): <asynchronous suspension>
E/flutter ( 3151): #14 BindingBase&SchedulerBinding&GestureBinding&ServicesBinding&RendererBinding&WidgetsBinding._handleNavigationMessage (package:flutter/src/widgets/binding.dart)
E/flutter ( 3151): #15 PlatformMessages.setJSONMessageHandler.<anonymous closure>.<<anonymous closure>_async_body> (package:flutter/src/services/platform_messages.dart:174)
E/flutter ( 3151): <asynchronous suspension>
E/flutter ( 3151): #16 PlatformMessages.setJSONMessageHandler.<anonymous closure> (package:flutter/src/services/platform_messages.dart)
E/flutter ( 3151): #17 PlatformMessages.setStringMessageHandler.<anonymous closure>.<<anonymous closure>_async_body> (package:flutter/src/services/platform_messages.dart:160)
E/flutter ( 3151): <asynchronous suspension>
E/flutter ( 3151): #18 PlatformMessages.setStringMessageHandler.<anonymous closure> (package:flutter/src/services/platform_messages.dart)
E/flutter ( 3151): #19 PlatformMessages.handlePlatformMessage.<handlePlatformMessage_async_body> (package:flutter/src/services/platform_messages.dart:77)
E/flutter ( 3151): <asynchronous suspension>
E/flutter ( 3151): #20 PlatformMessages.handlePlatformMessage (package:flutter/src/services/platform_messages.dart)
E/flutter ( 3151): #21 _dispatchPlatformMessage (file:///b/build/slave/Linux_Engine/build/src/flutter/lib/ui/hooks.dart:63)
</code></pre></div> | 0 |
<p dir="auto"><strong>Do you want to request a <em>feature</em> or report a <em>bug</em>?</strong><br>
<em>bug</em></p>
<p dir="auto"><strong>What is the current behavior?</strong></p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const context = require.context("./src/", true, /\.spec\.js$/);
context.keys().forEach(function(key) {
if (require.resolveWeak(key.replace(".spec.", "."))) {
context(key);
}
});"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-s1">context</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">.</span><span class="pl-en">context</span><span class="pl-kos">(</span><span class="pl-s">"./src/"</span><span class="pl-kos">,</span> <span class="pl-c1">true</span><span class="pl-kos">,</span> <span class="pl-pds"><span class="pl-c1">/</span><span class="pl-cce">\.</span>spec<span class="pl-cce">\.</span>js<span class="pl-cce">$</span><span class="pl-c1">/</span></span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">context</span><span class="pl-kos">.</span><span class="pl-en">keys</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">forEach</span><span class="pl-kos">(</span><span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-s1">key</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-en">require</span><span class="pl-kos">.</span><span class="pl-en">resolveWeak</span><span class="pl-kos">(</span><span class="pl-s1">key</span><span class="pl-kos">.</span><span class="pl-en">replace</span><span class="pl-kos">(</span><span class="pl-s">".spec."</span><span class="pl-kos">,</span> <span class="pl-s">"."</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-s1">context</span><span class="pl-kos">(</span><span class="pl-s1">key</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">Result: <code class="notranslate">ERROR: Cannot find module "."</code></p>
<p dir="auto"><strong>If the current behavior is a bug, please provide the steps to reproduce.</strong></p>
<ol dir="auto">
<li>Put e.g. <code class="notranslate">some-component.js</code> file with <code class="notranslate">some-component.spec.js</code> to <code class="notranslate">src</code> dir.</li>
<li>Use the code above in the main module.</li>
<li>Compile</li>
</ol>
<p dir="auto"><strong>What is the expected behavior?</strong><br>
<code class="notranslate">require.resolveWeak</code> should return a falsy value in case of not existed module.</p>
<p dir="auto"><strong>If this is a feature request, what is motivation or use case for changing the behavior?</strong></p>
<p dir="auto"><strong>Please mention other relevant information such as the browser version, Node.js version, webpack version and Operating System.</strong><br>
Webpack 2.4.1, Mac OS 10.12.4, Node 6.10.1</p> | <p dir="auto"><strong>Do you want to request a <em>feature</em> or report a <em>bug</em>?</strong></p>
<p dir="auto">Request a feature.</p>
<p dir="auto"><strong>What is the current behavior?</strong></p>
<p dir="auto"><strong>If the current behavior is a bug, please provide the steps to reproduce.</strong></p>
<p dir="auto"><strong>What is the expected behavior?</strong></p>
<p dir="auto"><strong>If this is a feature request, what is motivation or use case for changing the behavior?</strong></p>
<p dir="auto">The current <code class="notranslate">include</code> and <code class="notranslate">exclude</code> loader options allow developers to include/exclude particular files, but in many cases its far more useful to include/exclude entire branches in the dependency tree.</p>
<p dir="auto">This will become more and more important (specifically in the case of babel-loader) as more and more browsers begin to natively support ES2015+ features. Right now it's common for module authors to publish the compiled versions of their code, but I don't think that should be considered a best practice going forward.</p>
<p dir="auto">Consider this scenario: if one or more of my module dependencies publish their source files as ES2015, it's much more complicated than it should be to include them in the transpilation step while <em>also</em> excluding all other modules because it requires intimate knowledge of that module's dependency tree.</p>
<p dir="auto">You can whitelist (via <code class="notranslate">include</code>) certain modules, but this won't always work because you need to know the full module path, which is problematic since npm sometimes installs a module directly under <code class="notranslate">node_modules</code> and other times it installs a module in a nested <code class="notranslate">node_modules</code> folder.</p>
<p dir="auto">To solve this issue, I think it'd be nice to add something like an <code class="notranslate">excludeTree</code> option. This option would accept an array of npm module names and exclude any files in that module's source as well as any files in the source of any of its dependencies (via <code class="notranslate">package.json</code>).</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{
excludeTree: ['react', 'core-js'],
}"><pre class="notranslate"><span class="pl-kos">{</span>
<span class="pl-c1">excludeTree</span>: <span class="pl-kos">[</span><span class="pl-s">'react'</span><span class="pl-kos">,</span> <span class="pl-s">'core-js'</span><span class="pl-kos">]</span><span class="pl-kos">,</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto"><code class="notranslate">excludeTree</code> is useful for cases where <em>most</em> of your dependencies need to be transpiled. Today, however, the norm is that most of your dependencies are published as ES5, so in these cases what you generally want to do is something like the following (which assumes a <code class="notranslate">matchesExcludeTree()</code> function exists):</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{
exclude: (absPath) => {
// Exclude all node modules *unless* they're in the following list
// of packages (and their dependencies).
return absPath.includes('node_modules') &&
!matchesExcludeTree(absPath, ['autotrack']);
}
}"><pre class="notranslate"><span class="pl-kos">{</span>
<span class="pl-en">exclude</span>: <span class="pl-kos">(</span><span class="pl-s1">absPath</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-c">// Exclude all node modules *unless* they're in the following list</span>
<span class="pl-c">// of packages (and their dependencies).</span>
<span class="pl-k">return</span> <span class="pl-s1">absPath</span><span class="pl-kos">.</span><span class="pl-en">includes</span><span class="pl-kos">(</span><span class="pl-s">'node_modules'</span><span class="pl-kos">)</span> <span class="pl-c1">&&</span>
<span class="pl-c1">!</span><span class="pl-en">matchesExcludeTree</span><span class="pl-kos">(</span><span class="pl-s1">absPath</span><span class="pl-kos">,</span> <span class="pl-kos">[</span><span class="pl-s">'autotrack'</span><span class="pl-kos">]</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">Perhaps in this case it makes sense to have <code class="notranslate">exclude</code>/<code class="notranslate">excludeTree</code> work in conjunction with <code class="notranslate">include</code>/<code class="notranslate">includeTree</code>. That way the above imperative logic could be rewritten declaratively like this:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{
exclude: /node_modules/,
includeTree: 'autotrack'
}"><pre class="notranslate"><span class="pl-kos">{</span>
<span class="pl-c1">exclude</span>: <span class="pl-pds"><span class="pl-c1">/</span>node_modules<span class="pl-c1">/</span></span><span class="pl-kos">,</span>
<span class="pl-c1">includeTree</span>: <span class="pl-s">'autotrack'</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">For some additional context as to why this is a problem, see this issue:<br>
<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="208245680" data-permission-text="Title is private" data-url="https://github.com/googleanalytics/autotrack/issues/137" data-hovercard-type="issue" data-hovercard-url="/googleanalytics/autotrack/issues/137/hovercard" href="https://github.com/googleanalytics/autotrack/issues/137">googleanalytics/autotrack#137</a></p>
<p dir="auto"><strong>Please mention other relevant information such as the browser version, Node.js version, webpack version and Operating System.</strong></p> | 0 |
<p dir="auto">I noticed after connecting my computer up to a Log Analytics account in Azure that I started getting alerts from Azure Security Center about Windows Terminal launching conhost. This might be a duplicate of <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="486154976" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/2568" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/2568/hovercard" href="https://github.com/microsoft/terminal/issues/2568">#2568</a> but might just be related.</p>
<p dir="auto">I am running version 0.6.2951.0 downloaded and installed from the Microsoft Store.</p>
<h2 dir="auto">Alert Details</h2>
<p dir="auto">DESCRIPTION The system process c:\program files\windowsapps\microsoft.windowsterminal_0.6.2951.0_x64__8wekyb3d8bbwe\conhost.exe was observed running in an abnormal context. Malware often use this process name to masquerade its malicious activity.<br>
ACTIVITY TIME Thursday, October 31, 2019, 9:36:12 AM<br>
SEVERITY Medium<br>
STATE Active<br>
DETECTED BY Microsoft<br>
ENVIRONMENT Non-Azure<br>
RESOURCE TYPE Non-Azure Resource<br>
COMMAND LINE conhost.exe --headless --width 120 --height 27 --signal 0x7b8 -- pwsh.exe<br>
PARENT PROCESS windowsterminal.exe<br>
PROCESS ID 0x54b4<br>
PARENT PROCESS ID 0x9dd4<br>
SYSTEM PROCESS CONHOST.EXE</p> | <h1 dir="auto">Environment</h1>
<p dir="auto">windows 1909 build 18363</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: [run `[Environment]::OSVersion` for powershell, or `ver` for cmd]
Windows Terminal version (if applicable):
Any other software?"><pre lang="none" class="notranslate"><code class="notranslate">Windows build number: [run `[Environment]::OSVersion` for powershell, or `ver` for cmd]
Windows Terminal version (if applicable):
Any other software?
</code></pre></div>
<p dir="auto">no</p>
<h1 dir="auto">Steps to reproduce</h1>
<p dir="auto">I've added this to my profiles.json<br>
{<br>
"guid": "{00000000-0000-0000-ba54-000000000002}",<br>
"acrylicOpacity" : 0.75,<br>
"closeOnExit" : true,<br>
"colorScheme" : "Campbell",<br>
"commandline" : ""%PROGRAMFILES%\git\usr\bin\bash.exe" -i -l",<br>
"cursorColor" : "#FFFFFF",<br>
"cursorShape" : "bar",<br>
"fontFace" : "Consolas",<br>
"fontSize" : 10,<br>
"historySize" : 9001,<br>
"icon" : "ms-appx:///ProfileIcons/{0caa0dad-35be-5f56-a8ff-afceeeaa6101}.png",<br>
"name" : "Bash",<br>
"padding" : "0, 0, 0, 0",<br>
"snapOnInput" : true,<br>
"startingDirectory" : "%USERPROFILE%",<br>
"useAcrylic" : true<br>
}<br>
launch git bash with login option</p>
<h1 dir="auto">Expected behavior</h1>
<p dir="auto">Be able to see my normal stuff from my ~/.bash_profile. In my case aliases.</p>
<h1 dir="auto">Actual behavior</h1>
<p dir="auto">I dont see any of my aliases. It almost feels like the command line args are not being passed to bash. Or, the starting directory is not being passed. If there is a work around, i will do that. i tried creating a .bashrc but this didn't do anything either.</p> | 0 |
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have searched the <a href="https://github.com/apache/dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have checked the <a href="https://github.com/apache/dubbo/blob/master/FAQ.md">FAQ</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h3 dir="auto">Environment</h3>
<ul dir="auto">
<li>Dubbo version: dubbo2.7.x GenericInvoke dubbo2.5.x</li>
<li>Operating System version: all</li>
<li>Java version: 1.8/1.7</li>
</ul>
<p dir="auto">java serialization</p>
<h3 dir="auto">Steps to reproduce this issue</h3>
<p dir="auto">Too simple , we can make any exception</p>
<p dir="auto">In this code</p>
<div class="highlight highlight-source-java notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" if (result.hasException()
&& !(result.getException() instanceof GenericException)) {
return new RpcResult(new GenericException(result.getException()));
}"><pre class="notranslate"> <span class="pl-k">if</span> (<span class="pl-s1">result</span>.<span class="pl-en">hasException</span>()
&& !(<span class="pl-s1">result</span>.<span class="pl-en">getException</span>() <span class="pl-k">instanceof</span> <span class="pl-smi">GenericException</span>)) {
<span class="pl-k">return</span> <span class="pl-k">new</span> <span class="pl-smi">RpcResult</span>(<span class="pl-k">new</span> <span class="pl-smi">GenericException</span>(<span class="pl-s1">result</span>.<span class="pl-en">getException</span>()));
}</pre></div>
<p dir="auto">We wrap all exceptions to GenericException.<br>
But dubbo 2.7.x rename package to apache, so to make a new class like</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="@Deprecated
public class GenericException extends org.apache.dubbo.rpc.service.GenericException {
public GenericException() {
}
public GenericException(String exceptionClass, String exceptionMessage) {
super(exceptionClass, exceptionMessage);
}
public GenericException(Throwable cause) {
super(cause);
}
}"><pre class="notranslate"><code class="notranslate">@Deprecated
public class GenericException extends org.apache.dubbo.rpc.service.GenericException {
public GenericException() {
}
public GenericException(String exceptionClass, String exceptionMessage) {
super(exceptionClass, exceptionMessage);
}
public GenericException(Throwable cause) {
super(cause);
}
}
</code></pre></div>
<p dir="auto">No serialVersionUID is provided!</p>
<p dir="auto">Pls. provide [GitHub address] to reproduce this issue.</p>
<h3 dir="auto">Expected Result</h3>
<p dir="auto">GenericException can be handled by consumer!</p>
<h3 dir="auto">Actual Result</h3>
<p dir="auto">What actually happens?</p>
<p dir="auto">If there is an exception, please attach the exception trace:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Caused by: java.util.concurrent.ExecutionException: org.apache.dubbo.remoting.RemotingException: java.io.InvalidClassException: com.alibaba.dubbo.rpc.service.GenericException; local class incompatible: stream classdesc serialVersionUID = -1182299763306599962, local class serialVersionUID = -9195665492488780691
java.io.InvalidClassException: com.alibaba.dubbo.rpc.service.GenericException; local class incompatible: stream classdesc serialVersionUID = -1182299763306599962, local class serialVersionUID = -9195665492488780691
at java.io.ObjectStreamClass.initNonProxy(ObjectStreamClass.java:616)
at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1843)
at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1713)
at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:2000)
at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1535)
at java.io.ObjectInputStream.readObject(ObjectInputStream.java:422)
at org.apache.dubbo.common.serialize.java.JavaObjectInput.readObject(JavaObjectInput.java:75)
at org.apache.dubbo.rpc.protocol.dubbo.DecodeableRpcResult.handleException(DecodeableRpcResult.java:144)
at org.apache.dubbo.rpc.protocol.dubbo.DecodeableRpcResult.decode(DecodeableRpcResult.java:86)
at org.apache.dubbo.rpc.protocol.dubbo.DecodeableRpcResult.decode(DecodeableRpcResult.java:112)
at org.apache.dubbo.rpc.protocol.dubbo.DubboCodec.decodeBody(DubboCodec.java:92)
at org.apache.dubbo.remoting.exchange.codec.ExchangeCodec.decode(ExchangeCodec.java:122)
at org.apache.dubbo.remoting.exchange.codec.ExchangeCodec.decode(ExchangeCodec.java:82)
at org.apache.dubbo.rpc.protocol.dubbo.DubboCountCodec.decode(DubboCountCodec.java:48)
at org.apache.dubbo.remoting.transport.netty4.NettyCodecAdapter$InternalDecoder.decode(NettyCodecAdapter.java:90)
at io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:502)
at io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:441)
at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:278)
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:374)
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:360)
at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:352)
at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1408)
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:374)
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:360)
at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:930)
at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:163)
at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:682)
at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:617)
at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:534)
at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
at io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:906)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.lang.Thread.run(Thread.java:748)"><pre class="notranslate"><code class="notranslate">Caused by: java.util.concurrent.ExecutionException: org.apache.dubbo.remoting.RemotingException: java.io.InvalidClassException: com.alibaba.dubbo.rpc.service.GenericException; local class incompatible: stream classdesc serialVersionUID = -1182299763306599962, local class serialVersionUID = -9195665492488780691
java.io.InvalidClassException: com.alibaba.dubbo.rpc.service.GenericException; local class incompatible: stream classdesc serialVersionUID = -1182299763306599962, local class serialVersionUID = -9195665492488780691
at java.io.ObjectStreamClass.initNonProxy(ObjectStreamClass.java:616)
at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1843)
at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1713)
at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:2000)
at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1535)
at java.io.ObjectInputStream.readObject(ObjectInputStream.java:422)
at org.apache.dubbo.common.serialize.java.JavaObjectInput.readObject(JavaObjectInput.java:75)
at org.apache.dubbo.rpc.protocol.dubbo.DecodeableRpcResult.handleException(DecodeableRpcResult.java:144)
at org.apache.dubbo.rpc.protocol.dubbo.DecodeableRpcResult.decode(DecodeableRpcResult.java:86)
at org.apache.dubbo.rpc.protocol.dubbo.DecodeableRpcResult.decode(DecodeableRpcResult.java:112)
at org.apache.dubbo.rpc.protocol.dubbo.DubboCodec.decodeBody(DubboCodec.java:92)
at org.apache.dubbo.remoting.exchange.codec.ExchangeCodec.decode(ExchangeCodec.java:122)
at org.apache.dubbo.remoting.exchange.codec.ExchangeCodec.decode(ExchangeCodec.java:82)
at org.apache.dubbo.rpc.protocol.dubbo.DubboCountCodec.decode(DubboCountCodec.java:48)
at org.apache.dubbo.remoting.transport.netty4.NettyCodecAdapter$InternalDecoder.decode(NettyCodecAdapter.java:90)
at io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:502)
at io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:441)
at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:278)
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:374)
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:360)
at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:352)
at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1408)
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:374)
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:360)
at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:930)
at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:163)
at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:682)
at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:617)
at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:534)
at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
at io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:906)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.lang.Thread.run(Thread.java:748)
</code></pre></div> | <ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have searched the <a href="https://github.com/apache/dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have checked the <a href="https://github.com/apache/dubbo/blob/master/FAQ.md">FAQ</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h3 dir="auto">Environment</h3>
<ul dir="auto">
<li>Dubbo version: 2.7.2-SNAPSHOT</li>
<li>Operating System version: xxx</li>
<li>Java version: xxx</li>
</ul>
<h3 dir="auto">Steps to reproduce this issue</h3>
<p dir="auto">�the override rule logic is different between Provider and Consumer.</p>
<p dir="auto">Provider check ProviderConfigurationListener and then the ServiceConfigurationListener,</p>
<p dir="auto">Consumer check ConsumerConfigurationListener and then the ReferenceConfigurationListener</p>
<p dir="auto">i think we should keep them consistent and ServiceConfigurationListener should override ProviderConfigurationListener.</p>
<p dir="auto">provider:<br>
org.apache.dubbo.registry.integration.RegistryProtocol.OverrideListener#doOverrideIfNecessary</p>
<div class="highlight highlight-source-java notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="public synchronized void doOverrideIfNecessary() {
final Invoker<?> invoker;
if (originInvoker instanceof InvokerDelegate) {
invoker = ((InvokerDelegate<?>) originInvoker).getInvoker();
} else {
invoker = originInvoker;
}
//The origin invoker
URL originUrl = RegistryProtocol.this.getProviderUrl(invoker);
String key = getCacheKey(originInvoker);
ExporterChangeableWrapper<?> exporter = bounds.get(key);
if (exporter == null) {
logger.warn(new IllegalStateException("error state, exporter should not be null"));
return;
}
//The current, may have been merged many times
URL currentUrl = exporter.getInvoker().getUrl();
//Merged with this configuration
URL newUrl = getConfigedInvokerUrl(configurators, originUrl);
newUrl = getConfigedInvokerUrl(serviceConfigurationListeners.get(originUrl.getServiceKey())
.getConfigurators(), newUrl);
newUrl = getConfigedInvokerUrl(providerConfigurationListener.getConfigurators(), newUrl);
if (!currentUrl.equals(newUrl)) {
RegistryProtocol.this.reExport(originInvoker, newUrl);
logger.info("exported provider url changed, origin url: " + originUrl +
", old export url: " + currentUrl + ", new export url: " + newUrl);
}
}"><pre class="notranslate"><span class="pl-k">public</span> <span class="pl-k">synchronized</span> <span class="pl-smi">void</span> <span class="pl-s1">doOverrideIfNecessary</span>() {
<span class="pl-k">final</span> <span class="pl-smi">Invoker</span><?> <span class="pl-s1">invoker</span>;
<span class="pl-k">if</span> (<span class="pl-s1">originInvoker</span> <span class="pl-k">instanceof</span> <span class="pl-smi">InvokerDelegate</span>) {
<span class="pl-s1">invoker</span> = ((<span class="pl-smi">InvokerDelegate</span><?>) <span class="pl-s1">originInvoker</span>).<span class="pl-en">getInvoker</span>();
} <span class="pl-k">else</span> {
<span class="pl-s1">invoker</span> = <span class="pl-s1">originInvoker</span>;
}
<span class="pl-c">//The origin invoker</span>
<span class="pl-smi">URL</span> <span class="pl-s1">originUrl</span> = <span class="pl-smi">RegistryProtocol</span>.<span class="pl-smi">this</span>.<span class="pl-en">getProviderUrl</span>(<span class="pl-s1">invoker</span>);
<span class="pl-smi">String</span> <span class="pl-s1">key</span> = <span class="pl-en">getCacheKey</span>(<span class="pl-s1">originInvoker</span>);
<span class="pl-smi">ExporterChangeableWrapper</span><?> <span class="pl-s1">exporter</span> = <span class="pl-s1">bounds</span>.<span class="pl-en">get</span>(<span class="pl-s1">key</span>);
<span class="pl-k">if</span> (<span class="pl-s1">exporter</span> == <span class="pl-c1">null</span>) {
<span class="pl-s1">logger</span>.<span class="pl-en">warn</span>(<span class="pl-k">new</span> <span class="pl-smi">IllegalStateException</span>(<span class="pl-s">"error state, exporter should not be null"</span>));
<span class="pl-k">return</span>;
}
<span class="pl-c">//The current, may have been merged many times</span>
<span class="pl-smi">URL</span> <span class="pl-s1">currentUrl</span> = <span class="pl-s1">exporter</span>.<span class="pl-en">getInvoker</span>().<span class="pl-en">getUrl</span>();
<span class="pl-c">//Merged with this configuration</span>
<span class="pl-smi">URL</span> <span class="pl-s1">newUrl</span> = <span class="pl-en">getConfigedInvokerUrl</span>(<span class="pl-s1">configurators</span>, <span class="pl-s1">originUrl</span>);
<span class="pl-s1">newUrl</span> = <span class="pl-en">getConfigedInvokerUrl</span>(<span class="pl-s1">serviceConfigurationListeners</span>.<span class="pl-en">get</span>(<span class="pl-s1">originUrl</span>.<span class="pl-en">getServiceKey</span>())
.<span class="pl-en">getConfigurators</span>(), <span class="pl-s1">newUrl</span>);
<span class="pl-s1">newUrl</span> = <span class="pl-en">getConfigedInvokerUrl</span>(<span class="pl-s1">providerConfigurationListener</span>.<span class="pl-en">getConfigurators</span>(), <span class="pl-s1">newUrl</span>);
<span class="pl-k">if</span> (!<span class="pl-s1">currentUrl</span>.<span class="pl-en">equals</span>(<span class="pl-s1">newUrl</span>)) {
<span class="pl-smi">RegistryProtocol</span>.<span class="pl-smi">this</span>.<span class="pl-en">reExport</span>(<span class="pl-s1">originInvoker</span>, <span class="pl-s1">newUrl</span>);
<span class="pl-s1">logger</span>.<span class="pl-en">info</span>(<span class="pl-s">"exported provider url changed, origin url: "</span> + <span class="pl-s1">originUrl</span> +
<span class="pl-s">", old export url: "</span> + <span class="pl-s1">currentUrl</span> + <span class="pl-s">", new export url: "</span> + <span class="pl-s1">newUrl</span>);
}
}</pre></div>
<p dir="auto">consumer:<br>
org.apache.dubbo.registry.integration.RegistryDirectory#overrideWithConfigurator</p>
<div class="highlight highlight-source-java notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="private URL overrideWithConfigurator(URL providerUrl) {
// override url with configurator from "override://" URL for dubbo 2.6 and before
providerUrl = overrideWithConfigurators(this.configurators, providerUrl);
// override url with configurator from configurator from "app-name.configurators"
providerUrl = overrideWithConfigurators(CONSUMER_CONFIGURATION_LISTENER.getConfigurators(), providerUrl);
// override url with configurator from configurators from "service-name.configurators"
if (serviceConfigurationListener != null) {
providerUrl = overrideWithConfigurators(serviceConfigurationListener.getConfigurators(), providerUrl);
}
return providerUrl;
}"><pre class="notranslate"><span class="pl-k">private</span> <span class="pl-smi">URL</span> <span class="pl-s1">overrideWithConfigurator</span>(<span class="pl-smi">URL</span> <span class="pl-s1">providerUrl</span>) {
<span class="pl-c">// override url with configurator from "override://" URL for dubbo 2.6 and before</span>
<span class="pl-s1">providerUrl</span> = <span class="pl-en">overrideWithConfigurators</span>(<span class="pl-smi">this</span>.<span class="pl-s1">configurators</span>, <span class="pl-s1">providerUrl</span>);
<span class="pl-c">// override url with configurator from configurator from "app-name.configurators"</span>
<span class="pl-s1">providerUrl</span> = <span class="pl-en">overrideWithConfigurators</span>(<span class="pl-smi">CONSUMER_CONFIGURATION_LISTENER</span>.<span class="pl-en">getConfigurators</span>(), <span class="pl-s1">providerUrl</span>);
<span class="pl-c">// override url with configurator from configurators from "service-name.configurators"</span>
<span class="pl-k">if</span> (<span class="pl-s1">serviceConfigurationListener</span> != <span class="pl-c1">null</span>) {
<span class="pl-s1">providerUrl</span> = <span class="pl-en">overrideWithConfigurators</span>(<span class="pl-s1">serviceConfigurationListener</span>.<span class="pl-en">getConfigurators</span>(), <span class="pl-s1">providerUrl</span>);
}
<span class="pl-k">return</span> <span class="pl-s1">providerUrl</span>;
}</pre></div>
<p dir="auto">Pls. provide [GitHub address] to reproduce this issue.</p>
<h3 dir="auto">Expected Result</h3>
<p dir="auto">What do you expected from the above steps?</p>
<h3 dir="auto">Actual Result</h3>
<p dir="auto">What actually happens?</p>
<p dir="auto">If there is an exception, please attach the exception trace:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Just put your stack trace here!"><pre class="notranslate"><code class="notranslate">Just put your stack trace here!
</code></pre></div> | 0 |
<p dir="auto">My Travis CI builds started failing yesterday for a few very simple programs. Here's a sample:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="use std::os;
fn fact(n: int) -> int {
let mut result = 1;
let mut i = 1;
while i <= n {
result *= i;
i += 1;
}
result
}
fn main() {
let args = os::args();
if args.len() >= 2 {
let val = match from_str::<int>(args.get(1).as_slice()) {
Some(n) => { n}
_ => {
fail!("n must be an integer");
}
};
let val= fact(val);
println!("{}", val);
}
else {
println!("Usage: {} n", args.get(0));
}
}"><pre class="notranslate"><code class="notranslate">use std::os;
fn fact(n: int) -> int {
let mut result = 1;
let mut i = 1;
while i <= n {
result *= i;
i += 1;
}
result
}
fn main() {
let args = os::args();
if args.len() >= 2 {
let val = match from_str::<int>(args.get(1).as_slice()) {
Some(n) => { n}
_ => {
fail!("n must be an integer");
}
};
let val= fact(val);
println!("{}", val);
}
else {
println!("Usage: {} n", args.get(0));
}
}
</code></pre></div>
<p dir="auto">Here's the compiler version I'm using:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ rustc --version
rustc 0.11.0-pre (d64f18c 2014-06-14 10:36:46 +0000)
host: x86_64-unknown-linux-gnu"><pre class="notranslate"><code class="notranslate">$ rustc --version
rustc 0.11.0-pre (d64f18c 2014-06-14 10:36:46 +0000)
host: x86_64-unknown-linux-gnu
</code></pre></div>
<p dir="auto">Here's the output:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ RUST_BACKTRACE=1 make
rustc -L . -O -g fact.rs
error: internal compiler error: Type metadata for unique id '{&{&[]{struct c5265340fd5e95cf/2157e}}}' is already in the TypeMap!
note: the compiler hit an unexpected failure path. this is a bug.
note: we would appreciate a bug report: http://doc.rust-lang.org/complement-bugreport.html
note: run with `RUST_BACKTRACE=1` for a backtrace
task 'rustc' failed at 'Box<Any>', /home/a_m0d/workspace/rust/rust-git/src/libsyntax/diagnostic.rs:162
stack backtrace:
1: 0x7fd483b46b10 - rt::backtrace::imp::write::hcabbaed93b4a98e5BGp::v0.11.0.pre
2: 0x7fd483b4e240 - failure::on_fail::hbb978a5d8c60ba05O1p::v0.11.0.pre
3: 0x7fd483f5ebd0 - unwind::begin_unwind_inner::h44989725a2971cebQRd::v0.11.0.pre
4: 0x7fd482e3ba10 - unwind::begin_unwind::h14189599302266478606::v0.11.0.pre
5: 0x7fd482e3c450 - diagnostic::Handler::bug::h7c581c7c950ff91bW3b::v0.11.0.pre
6: 0x7fd4845c2a20 - driver::session::Session::bug::h0b37439c222facdbMkw::v0.11.0.pre
7: 0x7fd48471efd0 - middle::trans::debuginfo::TypeMap::register_unique_id_with_metadata::hd285f7ffd8d40948YpB::v0.11.0.pre
8: 0x7fd48472ad40 - middle::trans::debuginfo::type_metadata::h7e40fd5de8f2084c1ZD::v0.11.0.pre
9: 0x7fd48472fa00 - middle::trans::debuginfo::declare_local::h2ef60ae7ae4e79152DC::v0.11.0.pre
10: 0x7fd48472ed20 - middle::trans::debuginfo::create_local_var_metadata::closure.68299
11: 0x7fd484b247c0 - middle::pat_util::pat_bindings::closure.80677
12: 0x7fd482e83580 - ast_util::walk_pat::h986992b8f14168226Du::v0.11.0.pre
13: 0x7fd4845f3420 - middle::trans::controlflow::trans_stmt::h24d6d571b97ebc4aKdc::v0.11.0.pre
14: 0x7fd4845f50d0 - middle::trans::controlflow::trans_block::h591e39dcfd941e5e0ic::v0.11.0.pre
15: 0x7fd4846374c0 - middle::trans::expr::trans_rvalue_dps_unadjusted::hb6a52facd2ebe117umg::v0.11.0.pre
16: 0x7fd4845f4b30 - middle::trans::expr::trans_into::hf6cfd7b67570103dpvf::v0.11.0.pre
17: 0x7fd48464b410 - middle::trans::_match::trans_match::h32a62d3fd67945c7Kmu::v0.11.0.pre
18: 0x7fd4846374c0 - middle::trans::expr::trans_rvalue_dps_unadjusted::hb6a52facd2ebe117umg::v0.11.0.pre
19: 0x7fd4845f4b30 - middle::trans::expr::trans_into::hf6cfd7b67570103dpvf::v0.11.0.pre
20: 0x7fd4845f3e20 - middle::trans::controlflow::trans_stmt_semi::he15d494a96ca551a7hc::v0.11.0.pre
21: 0x7fd4845f3420 - middle::trans::controlflow::trans_stmt::h24d6d571b97ebc4aKdc::v0.11.0.pre
22: 0x7fd4845f50d0 - middle::trans::controlflow::trans_block::h591e39dcfd941e5e0ic::v0.11.0.pre
23: 0x7fd4845f54f0 - middle::trans::controlflow::trans_if::hcea473d2050d7403Dmc::v0.11.0.pre
24: 0x7fd4846374c0 - middle::trans::expr::trans_rvalue_dps_unadjusted::hb6a52facd2ebe117umg::v0.11.0.pre
25: 0x7fd4845f4b30 - middle::trans::expr::trans_into::hf6cfd7b67570103dpvf::v0.11.0.pre
26: 0x7fd4845f50d0 - middle::trans::controlflow::trans_block::h591e39dcfd941e5e0ic::v0.11.0.pre
27: 0x7fd4846b9630 - middle::trans::base::trans_closure::h02f596fb01b0b2e0Xkq::v0.11.0.pre
28: 0x7fd4845c3db0 - middle::trans::base::trans_fn::h6bc5ecdcaec1151aYsq::v0.11.0.pre
29: 0x7fd4845bc420 - middle::trans::base::trans_item::hfeeac4af1b332808nJq::v0.11.0.pre
30: 0x7fd4846ca8a0 - middle::trans::base::trans_crate::h74f6a3231c20c466PCr::v0.11.0.pre
31: 0x7fd484ef82a0 - driver::driver::phase_4_translate_to_llvm::h5468dd3223cb1730xvv::v0.11.0.pre
32: 0x7fd484eec5f0 - driver::driver::compile_input::h956ea0cfd2bc5873Bav::v0.11.0.pre
33: 0x7fd484fb70a0 - driver::run_compiler::hf66f8f8e8ba58aaa9Rx::v0.11.0.pre
34: 0x7fd484fb6fb0 - driver::main_args::closure.98523
35: 0x7fd484fd2b10 - driver::monitor::closure.99613
36: 0x7fd484fcda50 - task::TaskBuilder::try::closure.99376
37: 0x7fd487002cf0 - task::spawn_opts::closure.7149
38: 0x7fd483f5b780 - task::Task::run::closure.5303
39: 0x7fd483fc61b0 - rust_try
40: 0x7fd483f5e1c0 - unwind::try::h1607dd06ad9105b4fGd::v0.11.0.pre
41: 0x7fd483f5b600 - task::Task::run::hcb1447ce6c1c6534VVc::v0.11.0.pre
42: 0x7fd487002a90 - task::spawn_opts::closure.7122
43: 0x7fd483f5d790 - thread::thread_start::h88783297762ac3a3kdd::v0.11.0.pre
44: 0x3109007c40 - start_thread
45: 0x31088f2509 - clone
46: 0x0 - <unknown>
make: *** [fact] Error 101"><pre class="notranslate"><code class="notranslate">$ RUST_BACKTRACE=1 make
rustc -L . -O -g fact.rs
error: internal compiler error: Type metadata for unique id '{&{&[]{struct c5265340fd5e95cf/2157e}}}' is already in the TypeMap!
note: the compiler hit an unexpected failure path. this is a bug.
note: we would appreciate a bug report: http://doc.rust-lang.org/complement-bugreport.html
note: run with `RUST_BACKTRACE=1` for a backtrace
task 'rustc' failed at 'Box<Any>', /home/a_m0d/workspace/rust/rust-git/src/libsyntax/diagnostic.rs:162
stack backtrace:
1: 0x7fd483b46b10 - rt::backtrace::imp::write::hcabbaed93b4a98e5BGp::v0.11.0.pre
2: 0x7fd483b4e240 - failure::on_fail::hbb978a5d8c60ba05O1p::v0.11.0.pre
3: 0x7fd483f5ebd0 - unwind::begin_unwind_inner::h44989725a2971cebQRd::v0.11.0.pre
4: 0x7fd482e3ba10 - unwind::begin_unwind::h14189599302266478606::v0.11.0.pre
5: 0x7fd482e3c450 - diagnostic::Handler::bug::h7c581c7c950ff91bW3b::v0.11.0.pre
6: 0x7fd4845c2a20 - driver::session::Session::bug::h0b37439c222facdbMkw::v0.11.0.pre
7: 0x7fd48471efd0 - middle::trans::debuginfo::TypeMap::register_unique_id_with_metadata::hd285f7ffd8d40948YpB::v0.11.0.pre
8: 0x7fd48472ad40 - middle::trans::debuginfo::type_metadata::h7e40fd5de8f2084c1ZD::v0.11.0.pre
9: 0x7fd48472fa00 - middle::trans::debuginfo::declare_local::h2ef60ae7ae4e79152DC::v0.11.0.pre
10: 0x7fd48472ed20 - middle::trans::debuginfo::create_local_var_metadata::closure.68299
11: 0x7fd484b247c0 - middle::pat_util::pat_bindings::closure.80677
12: 0x7fd482e83580 - ast_util::walk_pat::h986992b8f14168226Du::v0.11.0.pre
13: 0x7fd4845f3420 - middle::trans::controlflow::trans_stmt::h24d6d571b97ebc4aKdc::v0.11.0.pre
14: 0x7fd4845f50d0 - middle::trans::controlflow::trans_block::h591e39dcfd941e5e0ic::v0.11.0.pre
15: 0x7fd4846374c0 - middle::trans::expr::trans_rvalue_dps_unadjusted::hb6a52facd2ebe117umg::v0.11.0.pre
16: 0x7fd4845f4b30 - middle::trans::expr::trans_into::hf6cfd7b67570103dpvf::v0.11.0.pre
17: 0x7fd48464b410 - middle::trans::_match::trans_match::h32a62d3fd67945c7Kmu::v0.11.0.pre
18: 0x7fd4846374c0 - middle::trans::expr::trans_rvalue_dps_unadjusted::hb6a52facd2ebe117umg::v0.11.0.pre
19: 0x7fd4845f4b30 - middle::trans::expr::trans_into::hf6cfd7b67570103dpvf::v0.11.0.pre
20: 0x7fd4845f3e20 - middle::trans::controlflow::trans_stmt_semi::he15d494a96ca551a7hc::v0.11.0.pre
21: 0x7fd4845f3420 - middle::trans::controlflow::trans_stmt::h24d6d571b97ebc4aKdc::v0.11.0.pre
22: 0x7fd4845f50d0 - middle::trans::controlflow::trans_block::h591e39dcfd941e5e0ic::v0.11.0.pre
23: 0x7fd4845f54f0 - middle::trans::controlflow::trans_if::hcea473d2050d7403Dmc::v0.11.0.pre
24: 0x7fd4846374c0 - middle::trans::expr::trans_rvalue_dps_unadjusted::hb6a52facd2ebe117umg::v0.11.0.pre
25: 0x7fd4845f4b30 - middle::trans::expr::trans_into::hf6cfd7b67570103dpvf::v0.11.0.pre
26: 0x7fd4845f50d0 - middle::trans::controlflow::trans_block::h591e39dcfd941e5e0ic::v0.11.0.pre
27: 0x7fd4846b9630 - middle::trans::base::trans_closure::h02f596fb01b0b2e0Xkq::v0.11.0.pre
28: 0x7fd4845c3db0 - middle::trans::base::trans_fn::h6bc5ecdcaec1151aYsq::v0.11.0.pre
29: 0x7fd4845bc420 - middle::trans::base::trans_item::hfeeac4af1b332808nJq::v0.11.0.pre
30: 0x7fd4846ca8a0 - middle::trans::base::trans_crate::h74f6a3231c20c466PCr::v0.11.0.pre
31: 0x7fd484ef82a0 - driver::driver::phase_4_translate_to_llvm::h5468dd3223cb1730xvv::v0.11.0.pre
32: 0x7fd484eec5f0 - driver::driver::compile_input::h956ea0cfd2bc5873Bav::v0.11.0.pre
33: 0x7fd484fb70a0 - driver::run_compiler::hf66f8f8e8ba58aaa9Rx::v0.11.0.pre
34: 0x7fd484fb6fb0 - driver::main_args::closure.98523
35: 0x7fd484fd2b10 - driver::monitor::closure.99613
36: 0x7fd484fcda50 - task::TaskBuilder::try::closure.99376
37: 0x7fd487002cf0 - task::spawn_opts::closure.7149
38: 0x7fd483f5b780 - task::Task::run::closure.5303
39: 0x7fd483fc61b0 - rust_try
40: 0x7fd483f5e1c0 - unwind::try::h1607dd06ad9105b4fGd::v0.11.0.pre
41: 0x7fd483f5b600 - task::Task::run::hcb1447ce6c1c6534VVc::v0.11.0.pre
42: 0x7fd487002a90 - task::spawn_opts::closure.7122
43: 0x7fd483f5d790 - thread::thread_start::h88783297762ac3a3kdd::v0.11.0.pre
44: 0x3109007c40 - start_thread
45: 0x31088f2509 - clone
46: 0x0 - <unknown>
make: *** [fact] Error 101
</code></pre></div>
<p dir="auto">Note that this just started happening last night, and occurs for a number of small programs - see sample output <a href="https://travis-ci.org/am0d/rust-projects/builds/27565687" rel="nofollow">here</a>.</p> | <p dir="auto">Compiling libcore with -g leads to the following error:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="error: internal compiler error: Type metadata for ty::t '&[core::fmt::rt::Piece<>]' is already in the TypeMap!"><pre class="notranslate"><code class="notranslate">error: internal compiler error: Type metadata for ty::t '&[core::fmt::rt::Piece<>]' is already in the TypeMap!
</code></pre></div>
<p dir="auto">This is due to the vec slice in question occurring multiple times along a type reference chain and the code path for vec slices doesn't take that possibility into account. This is also a potential problem for other kinds of types, e.g. fixed length vector types or function types. For regular pointer types this is already handled correctly.</p> | 1 |
<h1 dir="auto">Feature request</h1>
<h2 dir="auto">Is your feature request related to a problem?</h2>
<p dir="auto">Currently it's not possible to make async operations before exporting the handler from a API route.</p>
<h2 dir="auto">Describe the solution you'd like</h2>
<p dir="auto">I'd like to be able to use the same mecanism from <a href="https://zeit.co/blog/micro-9-1" rel="nofollow">micro</a> to be able to do async work before returning a handler.</p>
<h2 dir="auto">Additional context</h2>
<p dir="auto">I opened a discussion about it on spectrum : <a href="https://spectrum.chat/next-js/general/async-api-route~b1d7dddd-50fc-4f6f-a565-63fa68a725be" rel="nofollow">https://spectrum.chat/next-js/general/async-api-route~b1d7dddd-50fc-4f6f-a565-63fa68a725be</a></p> | <p dir="auto">Hi,<br>
Currently, we can pass the through the <code class="notranslate">renderPage</code> through the <code class="notranslate">_document.js</code> for decorating our components. This seems a bit restrictive, since I want to decorate one of my pages on the server side.</p>
<p dir="auto">I've looked into it, there seems no straightforward way of accomplishing this. Correct me if I'm wrong. If there isn't, then I'll start making a pull request.</p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/zeit/next.js/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
</ul> | 0 |
<p dir="auto">memoryview hasn't been backported to python 2.6, only 2.7.</p> | 1 |
|
<h3 dir="auto">Preflight Checklist</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the <a href="https://github.com/electron/electron/blob/master/CONTRIBUTING.md">Contributing Guidelines</a> for this project.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow the <a href="https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md">Code of Conduct</a> that this project adheres to.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the issue tracker for an issue that matches the one I want to file, without success.</li>
</ul>
<h3 dir="auto">Issue Details</h3>
<ul dir="auto">
<li><strong>Electron Version:</strong>
<ul dir="auto">
<li>5.0.0</li>
</ul>
</li>
<li><strong>Operating System:</strong>
<ul dir="auto">
<li>Manjaro 18.0.2 (also tested on 18.0.4)</li>
</ul>
</li>
<li><strong>Last Known Working Electron version:</strong>:
<ul dir="auto">
<li>4.1.4</li>
</ul>
</li>
</ul>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">Create a new Window and start the app.</p>
<h3 dir="auto">Actual Behavior</h3>
<p dir="auto">Exit with an error:<br>
[2543:0428/133247.138100:FATAL:setuid_sandbox_host.cc(157)] The SUID sandbox helper binary was found, but is not configured correctly. Rather than run without sandboxing I'm aborting now. You need to make sure that /home/user/myApp/node_modules/electron/dist/chrome-sandbox is owned by root and has mode 4755.</p>
<h3 dir="auto">To Reproduce</h3>
<p dir="auto">Just change the electron version in package.json to "5.0.0" and run <code class="notranslate">npm install [email protected] && npm start</code></p>
<h3 dir="auto">Screenshots</h3>
<p dir="auto">N/A</p>
<h3 dir="auto">Additional Information</h3>
<p dir="auto">The app runs perfectly on Ubuntu based distros.</p> | <h3 dir="auto">Preflight Checklist</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the <a href="https://github.com/electron/electron/blob/master/CONTRIBUTING.md">Contributing Guidelines</a> for this project.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow the <a href="https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md">Code of Conduct</a> that this project adheres to.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the issue tracker for an issue that matches the one I want to file, without success.</li>
</ul>
<h3 dir="auto">Issue Details</h3>
<ul dir="auto">
<li><strong>Electron Version:</strong>
<ul dir="auto">
<li>5.0.0</li>
</ul>
</li>
<li><strong>Operating System:</strong>
<ul dir="auto">
<li>Arch Linux x64</li>
</ul>
</li>
<li><strong>Last Known Working Electron version:</strong>:
<ul dir="auto">
<li>4.1.5</li>
</ul>
</li>
</ul>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">Running <code class="notranslate">node_modules/.bin/electron --version</code> should output <code class="notranslate">v5.0.0</code>.</p>
<p dir="auto">To be clear, <em>all</em> commands create this error, but I'm using the <code class="notranslate">--version</code> flag for simplicity.</p>
<h3 dir="auto">Actual Behavior</h3>
<div class="highlight highlight-text-shell-session notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$ node_modules/.bin/electron --version
[2720:0425/142001.775056:FATAL:setuid_sandbox_host.cc(157)] The SUID sandbox helper binary was found, but is not configured correctly. Rather than run without sandboxing I'm aborting now. You need to make sure that /home/christianbundy/src/ssbc/patchwork/node_modules/electron/dist/chrome-sandbox is owned by root and has mode 4755."><pre class="notranslate">$ <span class="pl-s1">node_modules/.bin/electron --version</span>
<span class="pl-c1">[2720:0425/142001.775056:FATAL:setuid_sandbox_host.cc(157)] The SUID sandbox helper binary was found, but is not configured correctly. Rather than run without sandboxing I'm aborting now. You need to make sure that /home/christianbundy/src/ssbc/patchwork/node_modules/electron/dist/chrome-sandbox is owned by root and has mode 4755.</span></pre></div>
<h3 dir="auto">Additional Information</h3>
<div class="highlight highlight-text-shell-session notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$ stat /home/christianbundy/src/ssbc/patchwork/node_modules/electron/dist/chrome-sandbox
Size: 5185424 Blocks: 10128 IO Block: 4096 regular file
Device: 802h/2050d Inode: 1465270 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/christianbundy) Gid: ( 1000/christianbundy)
Access: 2019-04-25 14:15:10.609279524 -0700
Modify: 2019-04-25 14:15:10.659278929 -0700
Change: 2019-04-25 14:15:10.659278929 -0700
Birth: 2019-04-25 14:15:10.609279524 -0700"><pre class="notranslate">$ <span class="pl-s1">stat /home/christianbundy/src/ssbc/patchwork/node_modules/electron/dist/chrome-sandbox</span>
<span class="pl-c1"> Size: 5185424 Blocks: 10128 IO Block: 4096 regular file</span>
<span class="pl-c1">Device: 802h/2050d Inode: 1465270 Links: 1</span>
<span class="pl-c1">Access: (0755/-rwxr-xr-x) Uid: ( 1000/christianbundy) Gid: ( 1000/christianbundy)</span>
<span class="pl-c1">Access: 2019-04-25 14:15:10.609279524 -0700</span>
<span class="pl-c1">Modify: 2019-04-25 14:15:10.659278929 -0700</span>
<span class="pl-c1">Change: 2019-04-25 14:15:10.659278929 -0700</span>
<span class="pl-c1"> Birth: 2019-04-25 14:15:10.609279524 -0700</span></pre></div>
<p dir="auto">If I <code class="notranslate">chown</code> and <code class="notranslate">chmod</code> the file then it works fine, but my intuition is that <code class="notranslate">npm install electron@latest</code> should work without those commands. Is this expected behavior?</p> | 1 |
<p dir="auto">A bug (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="20128173" data-permission-text="Title is private" data-url="https://github.com/rust-lang/rust/issues/9531" data-hovercard-type="issue" data-hovercard-url="/rust-lang/rust/issues/9531/hovercard" href="https://github.com/rust-lang/rust/issues/9531">#9531</a>) went undetected because I was careless and failed to put a variable definition before all of its uses (SHA: <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/rust-lang/rust/commit/b1a22518f0c687db008c4abf5e8e0411fb58c2f5/hovercard" href="https://github.com/rust-lang/rust/commit/b1a22518f0c687db008c4abf5e8e0411fb58c2f5"><tt>b1a2251</tt></a>).</p>
<p dir="auto">Further investigation revealed that make <em>does</em> offer an <code class="notranslate">--warn-undefined-variables</code> option that will list all variables that are expanded without being provided a definition.</p>
<p dir="auto">It might be good if we tried to minimize the number of warnings emitted by that flag, by putting explicit (even if empty) definitions up before their first use.</p>
<p dir="auto">(Here's the list of warnings emitted, with obvious duplicate entries removed.)</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="% make -j1 --warn-undefined-variables
Makefile:76: warning: undefined variable `MAKE_RESTARTS'
cfg: build triple x86_64-apple-darwin
cfg: host triples x86_64-apple-darwin
cfg: target triples x86_64-apple-darwin
Makefile:91: warning: undefined variable `RUSTFLAGS'
cfg: enabling more debugging (CFG_ENABLE_DEBUG)
cfg: host for x86_64-apple-darwin is x86_64
cfg: os for x86_64-apple-darwin is apple-darwin
cfg: using ccache clang
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/platform.mk:370: warning: undefined variable `CFG_LDPATH_i686-pc-mingw32'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/platform.mk:422: warning: undefined variable `CFG_LDPATH_x86_64-w64-mingw32'
Makefile:497: warning: undefined variable `RUSTFLAGS_STAGE0'
Makefile:497: warning: undefined variable `RUSTC_FLAGS_x86_64-apple-darwin'
Makefile:497: warning: undefined variable `CFG_PERF_TOOL'
Makefile:497: warning: undefined variable `RUSTFLAGS_STAGE0'
Makefile:497: warning: undefined variable `RUSTFLAGS_STAGE3'
Makefile:497: warning: undefined variable `RUSTFLAGS_STAGE3'
Makefile:518: warning: undefined variable `HLIBSYNTAX_DEFAULT1_H_x86_64-apple-darwin'
Makefile:518: warning: undefined variable `HLIBSYNTAX_DEFAULT2_H_x86_64-apple-darwin'
Makefile:518: warning: undefined variable `HLIBSYNTAX_DEFAULT3_H_x86_64-apple-darwin'
Makefile:548: warning: undefined variable `CFG_IN_TRANSITION'
Makefile:570: warning: undefined variable `HLIBSYNTAX_DEFAULT2_H_x86_64-apple-darwin'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/target.mk:134: warning: undefined variable `BORROWCK'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/target.mk:134: warning: undefined variable `CFG_PAXCTL'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/target.mk:134: warning: undefined variable `HLIBSYNTAX_DEFAULT0_H_x86_64-apple-darwin'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/target.mk:134: warning: undefined variable `HLIBSYNTAX_DEFAULT1_H_x86_64-apple-darwin'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/target.mk:134: warning: undefined variable `HLIBSYNTAX_DEFAULT2_H_x86_64-apple-darwin'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/target.mk:134: warning: undefined variable `HLIBSYNTAX_DEFAULT3_H_x86_64-apple-darwin'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/host.mk:148: warning: undefined variable `STDLIB_DSYM_GLOB'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/rt.mk:29: warning: undefined variable `1'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/rt.mk:29: warning: undefined variable `OSTYPE_'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/rt.mk:40: warning: undefined variable `MAKECMDGOALS'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/rt.mk:287: warning: undefined variable `,'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/rt.mk:287: warning: undefined variable `MORESTACK_OBJS_x86_64-apple-darwin_0'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/rt.mk:287: warning: undefined variable `,'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/rt.mk:287: warning: undefined variable `MORESTACK_OBJS_x86_64-apple-darwin_1'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/rt.mk:287: warning: undefined variable `,'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/rt.mk:287: warning: undefined variable `MORESTACK_OBJS_x86_64-apple-darwin_2'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/rt.mk:287: warning: undefined variable `,'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/rt.mk:287: warning: undefined variable `MORESTACK_OBJS_x86_64-apple-darwin_3'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/tools.mk:219: warning: undefined variable `HLIBSYNTAX_DEFAULT0_H_x86_64-apple-darwin'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/tools.mk:219: warning: undefined variable `HLIBSYNTAX_DEFAULT1_H_x86_64-apple-darwin'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/tools.mk:219: warning: undefined variable `HLIBSYNTAX_DEFAULT2_H_x86_64-apple-darwin'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/tools.mk:219: warning: undefined variable `HLIBSYNTAX_DEFAULT3_H_x86_64-apple-darwin'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/tools.mk:226: warning: undefined variable `LIBRUST_DSYM_GLOB'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/tools.mk:226: warning: undefined variable `HLIBSYNTAX_DEFAULT1_H_x86_64-apple-darwin'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/tools.mk:226: warning: undefined variable `HLIBSYNTAX_DEFAULT2_H_x86_64-apple-darwin'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/tools.mk:226: warning: undefined variable `HLIBSYNTAX_DEFAULT3_H_x86_64-apple-darwin'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/docs.mk:41: warning: undefined variable `NO_DOCS'
Makefile:628: warning: undefined variable `MAKECMDGOALS'
make: Nothing to be done for `all'."><pre class="notranslate"><code class="notranslate">% make -j1 --warn-undefined-variables
Makefile:76: warning: undefined variable `MAKE_RESTARTS'
cfg: build triple x86_64-apple-darwin
cfg: host triples x86_64-apple-darwin
cfg: target triples x86_64-apple-darwin
Makefile:91: warning: undefined variable `RUSTFLAGS'
cfg: enabling more debugging (CFG_ENABLE_DEBUG)
cfg: host for x86_64-apple-darwin is x86_64
cfg: os for x86_64-apple-darwin is apple-darwin
cfg: using ccache clang
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/platform.mk:370: warning: undefined variable `CFG_LDPATH_i686-pc-mingw32'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/platform.mk:422: warning: undefined variable `CFG_LDPATH_x86_64-w64-mingw32'
Makefile:497: warning: undefined variable `RUSTFLAGS_STAGE0'
Makefile:497: warning: undefined variable `RUSTC_FLAGS_x86_64-apple-darwin'
Makefile:497: warning: undefined variable `CFG_PERF_TOOL'
Makefile:497: warning: undefined variable `RUSTFLAGS_STAGE0'
Makefile:497: warning: undefined variable `RUSTFLAGS_STAGE3'
Makefile:497: warning: undefined variable `RUSTFLAGS_STAGE3'
Makefile:518: warning: undefined variable `HLIBSYNTAX_DEFAULT1_H_x86_64-apple-darwin'
Makefile:518: warning: undefined variable `HLIBSYNTAX_DEFAULT2_H_x86_64-apple-darwin'
Makefile:518: warning: undefined variable `HLIBSYNTAX_DEFAULT3_H_x86_64-apple-darwin'
Makefile:548: warning: undefined variable `CFG_IN_TRANSITION'
Makefile:570: warning: undefined variable `HLIBSYNTAX_DEFAULT2_H_x86_64-apple-darwin'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/target.mk:134: warning: undefined variable `BORROWCK'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/target.mk:134: warning: undefined variable `CFG_PAXCTL'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/target.mk:134: warning: undefined variable `HLIBSYNTAX_DEFAULT0_H_x86_64-apple-darwin'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/target.mk:134: warning: undefined variable `HLIBSYNTAX_DEFAULT1_H_x86_64-apple-darwin'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/target.mk:134: warning: undefined variable `HLIBSYNTAX_DEFAULT2_H_x86_64-apple-darwin'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/target.mk:134: warning: undefined variable `HLIBSYNTAX_DEFAULT3_H_x86_64-apple-darwin'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/host.mk:148: warning: undefined variable `STDLIB_DSYM_GLOB'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/rt.mk:29: warning: undefined variable `1'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/rt.mk:29: warning: undefined variable `OSTYPE_'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/rt.mk:40: warning: undefined variable `MAKECMDGOALS'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/rt.mk:287: warning: undefined variable `,'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/rt.mk:287: warning: undefined variable `MORESTACK_OBJS_x86_64-apple-darwin_0'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/rt.mk:287: warning: undefined variable `,'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/rt.mk:287: warning: undefined variable `MORESTACK_OBJS_x86_64-apple-darwin_1'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/rt.mk:287: warning: undefined variable `,'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/rt.mk:287: warning: undefined variable `MORESTACK_OBJS_x86_64-apple-darwin_2'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/rt.mk:287: warning: undefined variable `,'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/rt.mk:287: warning: undefined variable `MORESTACK_OBJS_x86_64-apple-darwin_3'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/tools.mk:219: warning: undefined variable `HLIBSYNTAX_DEFAULT0_H_x86_64-apple-darwin'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/tools.mk:219: warning: undefined variable `HLIBSYNTAX_DEFAULT1_H_x86_64-apple-darwin'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/tools.mk:219: warning: undefined variable `HLIBSYNTAX_DEFAULT2_H_x86_64-apple-darwin'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/tools.mk:219: warning: undefined variable `HLIBSYNTAX_DEFAULT3_H_x86_64-apple-darwin'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/tools.mk:226: warning: undefined variable `LIBRUST_DSYM_GLOB'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/tools.mk:226: warning: undefined variable `HLIBSYNTAX_DEFAULT1_H_x86_64-apple-darwin'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/tools.mk:226: warning: undefined variable `HLIBSYNTAX_DEFAULT2_H_x86_64-apple-darwin'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/tools.mk:226: warning: undefined variable `HLIBSYNTAX_DEFAULT3_H_x86_64-apple-darwin'
/Users/pnkfelix/Dev/Mozilla/rust.git/mk/docs.mk:41: warning: undefined variable `NO_DOCS'
Makefile:628: warning: undefined variable `MAKECMDGOALS'
make: Nothing to be done for `all'.
</code></pre></div> | <p dir="auto">I encountered this error while building "router" crate.</p>
<p dir="auto">/Users/.cargo/registry/src/github.com-1ecc6299db9ec823/router-0.0.9/src/router.rs:158:1: 158:45 error: internal compiler error: coherence failed to report ambiguity: cannot locate the impl of the trait <code class="notranslate">core::marker::MarkerTrait</code> for the type <code class="notranslate">iron::middleware::Handler</code><br>
/Users/biye/.cargo/registry/src/github.com-1ecc6299db9ec823/router-0.0.9/src/router.rs:158 impl Key for Router { type Value = Params; }<br>
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~<br>
note: the compiler unexpectedly panicked. this is a bug.<br>
note: we would appreciate a bug report: <a href="https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports">https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports</a><br>
note: run with <code class="notranslate">RUST_BACKTRACE=1</code> for a backtrace</p>
<p dir="auto">thread 'rustc' panicked at 'Box', /Users/rustbuild/src/rust-buildbot/slave/nightly-dist-rustc-mac/build/src/libsyntax/diagnostic.rs:130</p>
<p dir="auto">stack backtrace:<br>
1: 0x1090eddf7 - sys::backtrace::write::hcdd8cf990b8f0f0e1LC<br>
2: 0x10911bccd - panicking::on_panic::hbbf8c269bccad920HAI<br>
3: 0x10904015e - rt::unwind::begin_unwind_inner::h2f66a36e4dcc3e43iiI<br>
4: 0x1088174ee - rt::unwind::begin_unwind::h4366604798127356786<br>
5: 0x10881749b - diagnostic::SpanHandler::span_bug::h0e21e2a54cd366dbjnB<br>
6: 0x1062d2666 - middle::traits::error_reporting::report_fulfillment_error::h24e2f9dcf11073a7hTN<br>
7: 0x10613ede1 - middle::traits::error_reporting::report_fulfillment_errors::he23632a94223023axSN<br>
8: 0x10567f7c2 - check::vtable::select_all_fcx_obligations_or_error::hded438f3b654ae6bX1b<br>
9: 0x10570b76e - check::wf::CheckTypeWellFormedVisitor<'ccx, 'tcx>::check_item_well_formed::h50d40da11e7554f3mWk<br>
10: 0x105714261 - visit::walk_item::h17483634980229280695<br>
11: 0x105814569 - check_crate::closure.36302<br>
12: 0x10580ea37 - check_crate::hf2047274e19fe4f4bwC<br>
13: 0x10552c2d5 - driver::phase_3_run_analysis_passes::h7ac32f1d1ca0be7dgGa<br>
14: 0x105510a05 - driver::compile_input::haed712778d66caf6Qba<br>
15: 0x1055ce985 - run_compiler::h2df8296b9f7c362fV4b<br>
16: 0x1055cc152 - boxed::F.FnBox::call_box::h8968837061369711197<br>
17: 0x1055cb647 - rt::unwind::try::try_fn::h5695919628988619761<br>
18: 0x1091a5d28 - rust_try_inner<br>
19: 0x1091a5d15 - rust_try<br>
20: 0x1055cb93a - boxed::F.FnBox::call_box::h17367168855684310088<br>
21: 0x1091051fd - sys:<g-emoji class="g-emoji" alias="thread" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f9f5.png">🧵</g-emoji>:create::thread_start::he0d7c708bf73803bihH<br>
22: 0x7fff8c0a2267 - _pthread_body<br>
23: 0x7fff8c0a21e4 - _pthread_start</p> | 0 |
<p dir="auto">In current master:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="np.array(1, dtype=int) ** -2
Out[5]: 0"><pre class="notranslate"><code class="notranslate">np.array(1, dtype=int) ** -2
Out[5]: 0
</code></pre></div>
<p dir="auto">In 1.11 and earlier:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In [3]: np.array(1, dtype=int) ** -2
Out[3]: 1"><pre class="notranslate"><code class="notranslate">In [3]: np.array(1, dtype=int) ** -2
Out[3]: 1
</code></pre></div>
<p dir="auto">(Found in astropy testing; <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="155642213" data-permission-text="Title is private" data-url="https://github.com/astropy/astropy/issues/4950" data-hovercard-type="pull_request" data-hovercard-url="/astropy/astropy/pull/4950/hovercard" href="https://github.com/astropy/astropy/pull/4950">astropy/astropy#4950</a>)</p> | <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=">>> np.int64(2) ** -2
0.25
>>> np.int32(2) ** -2
0"><pre class="notranslate"><span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">np</span>.<span class="pl-en">int64</span>(<span class="pl-c1">2</span>) <span class="pl-c1">**</span> <span class="pl-c1">-</span><span class="pl-c1">2</span>
<span class="pl-c1">0.25</span>
<span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">np</span>.<span class="pl-en">int32</span>(<span class="pl-c1">2</span>) <span class="pl-c1">**</span> <span class="pl-c1">-</span><span class="pl-c1">2</span>
<span class="pl-c1">0</span></pre></div>
<p dir="auto">Tested on OSX 10.8.5 w/ numpy 1.10 on both Python 2.7 and 3.5.</p> | 1 |
<p dir="auto"><strong>Migrated issue, originally created by Michael Bayer (<a href="https://github.com/zzzeek">@zzzeek</a>)</strong></p>
<p dir="auto">this is related to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="384633460" data-permission-text="Title is private" data-url="https://github.com/sqlalchemy/sqlalchemy/issues/3365" data-hovercard-type="issue" data-hovercard-url="/sqlalchemy/sqlalchemy/issues/3365/hovercard" href="https://github.com/sqlalchemy/sqlalchemy/issues/3365">#3365</a> but is a more fundamental change.</p>
<p dir="auto">First, test case from <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="384633460" data-permission-text="Title is private" data-url="https://github.com/sqlalchemy/sqlalchemy/issues/3365" data-hovercard-type="issue" data-hovercard-url="/sqlalchemy/sqlalchemy/issues/3365/hovercard" href="https://github.com/sqlalchemy/sqlalchemy/issues/3365">#3365</a>:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="from sqlalchemy import Column, Integer, Text, ForeignKey, create_engine
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import Session, relationship
Base = declarative_base()
class Parent(Base):
__tablename__ = "parent"
id = Column(Integer, primary_key=True)
class Child(Base):
__tablename__ = "child"
_id_parent = Column(
"id_parent", Integer, ForeignKey(Parent.id), primary_key=True)
name = Column(Text, primary_key=True)
parent = relationship(Parent)
engine = create_engine('sqlite://')
Base.metadata.create_all(engine)
session = Session(engine)
p = Parent(id=1)
session.add(p)
session.commit()
c = Child(name="foo", parent=p)
session.add(c)
session.commit()
session.query(Child).filter(Child.parent == p).delete("evaluate")"><pre class="notranslate"><code class="notranslate">from sqlalchemy import Column, Integer, Text, ForeignKey, create_engine
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import Session, relationship
Base = declarative_base()
class Parent(Base):
__tablename__ = "parent"
id = Column(Integer, primary_key=True)
class Child(Base):
__tablename__ = "child"
_id_parent = Column(
"id_parent", Integer, ForeignKey(Parent.id), primary_key=True)
name = Column(Text, primary_key=True)
parent = relationship(Parent)
engine = create_engine('sqlite://')
Base.metadata.create_all(engine)
session = Session(engine)
p = Parent(id=1)
session.add(p)
session.commit()
c = Child(name="foo", parent=p)
session.add(c)
session.commit()
session.query(Child).filter(Child.parent == p).delete("evaluate")
</code></pre></div>
<p dir="auto">raises: "AttributeError: 'Child' object has no attribute 'id_parent'"</p>
<p dir="auto">with the fix, raises: "sqlalchemy.exc.InvalidRequestError: Could not evaluate current criteria in Python. Specify 'fetch' or False for the synchronize_session parameter."</p>
<p dir="auto">the patch involves adding ORM context to the primaryjoin/secondaryjoin:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="diff --git a/lib/sqlalchemy/orm/evaluator.py b/lib/sqlalchemy/orm/evaluator.py
index 1e828ff..fb59186 100644
--- a/lib/sqlalchemy/orm/evaluator.py
+++ b/lib/sqlalchemy/orm/evaluator.py
@@ -59,7 +59,9 @@ class EvaluatorCompiler(object):
)
key = parentmapper._columntoproperty[clause].key
else:
- key = clause.key
+ raise UnevaluatableError(
+ "Cannot evaluate column: %s" % clause
+ )
get_corresponding_attr = operator.attrgetter(key)
return lambda obj: get_corresponding_attr(obj)
diff --git a/lib/sqlalchemy/orm/relationships.py b/lib/sqlalchemy/orm/relationships.py
index b649c9e..291af09 100644
--- a/lib/sqlalchemy/orm/relationships.py
+++ b/lib/sqlalchemy/orm/relationships.py
@@ -1942,6 +1942,7 @@ class JoinCondition(object):
self._annotate_fks()
self._annotate_remote()
self._annotate_local()
+ self._annotate_parentmapper()
self._setup_pairs()
self._check_foreign_cols(self.primaryjoin, True)
if self.secondaryjoin is not None:
@@ -2405,6 +2406,19 @@ class JoinCondition(object):
self.primaryjoin, {}, locals_
)
+ def _annotate_parentmapper(self):
+ if self.prop is None:
+ return
+
+ def parentmappers_(elem):
+ if "remote" in elem._annotations:
+ return elem._annotate({"parentmapper": self.prop.mapper})
+ elif "local" in elem._annotations:
+ return elem._annotate({"parentmapper": self.prop.parent})
+ self.primaryjoin = visitors.replacement_traverse(
+ self.primaryjoin, {}, parentmappers_
+ )
+
def _check_remote_side(self):
if not self.local_remote_pairs:
raise sa_exc.ArgumentError(
@@ -2811,9 +2825,6 @@ class JoinCondition(object):
bind_to_col = dict((binds[col].key, col) for col in binds)
- # this is probably not necessary
- lazywhere = _deep_deannotate(lazywhere)
-
return lazywhere, bind_to_col, equated_columns
"><pre class="notranslate"><code class="notranslate">diff --git a/lib/sqlalchemy/orm/evaluator.py b/lib/sqlalchemy/orm/evaluator.py
index 1e828ff..fb59186 100644
--- a/lib/sqlalchemy/orm/evaluator.py
+++ b/lib/sqlalchemy/orm/evaluator.py
@@ -59,7 +59,9 @@ class EvaluatorCompiler(object):
)
key = parentmapper._columntoproperty[clause].key
else:
- key = clause.key
+ raise UnevaluatableError(
+ "Cannot evaluate column: %s" % clause
+ )
get_corresponding_attr = operator.attrgetter(key)
return lambda obj: get_corresponding_attr(obj)
diff --git a/lib/sqlalchemy/orm/relationships.py b/lib/sqlalchemy/orm/relationships.py
index b649c9e..291af09 100644
--- a/lib/sqlalchemy/orm/relationships.py
+++ b/lib/sqlalchemy/orm/relationships.py
@@ -1942,6 +1942,7 @@ class JoinCondition(object):
self._annotate_fks()
self._annotate_remote()
self._annotate_local()
+ self._annotate_parentmapper()
self._setup_pairs()
self._check_foreign_cols(self.primaryjoin, True)
if self.secondaryjoin is not None:
@@ -2405,6 +2406,19 @@ class JoinCondition(object):
self.primaryjoin, {}, locals_
)
+ def _annotate_parentmapper(self):
+ if self.prop is None:
+ return
+
+ def parentmappers_(elem):
+ if "remote" in elem._annotations:
+ return elem._annotate({"parentmapper": self.prop.mapper})
+ elif "local" in elem._annotations:
+ return elem._annotate({"parentmapper": self.prop.parent})
+ self.primaryjoin = visitors.replacement_traverse(
+ self.primaryjoin, {}, parentmappers_
+ )
+
def _check_remote_side(self):
if not self.local_remote_pairs:
raise sa_exc.ArgumentError(
@@ -2811,9 +2825,6 @@ class JoinCondition(object):
bind_to_col = dict((binds[col].key, col) for col in binds)
- # this is probably not necessary
- lazywhere = _deep_deannotate(lazywhere)
-
return lazywhere, bind_to_col, equated_columns
</code></pre></div>
<p dir="auto">We'd just start tracking "parentmapper" throughout all PJ/SJ conditions.</p> | <p dir="auto">I have this code.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="def save_all_allowed_fields():
AllowedFieldsModel.query.delete()
db.session.commit()
db.session.add_all(set(
AllowedFieldsModel(field_name=n)
for n in request.json.get('fields')
))
db.session.commit()
return '', 204"><pre class="notranslate"><code class="notranslate">def save_all_allowed_fields():
AllowedFieldsModel.query.delete()
db.session.commit()
db.session.add_all(set(
AllowedFieldsModel(field_name=n)
for n in request.json.get('fields')
))
db.session.commit()
return '', 204
</code></pre></div>
<p dir="auto">and get error</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="sqlalchemy.exc.IntegrityError: (psycopg2.IntegrityError) duplicate key value violates unique constraint "allowed_fields_pkey"
DETAIL: Key (field_name)=(profileType) already exists."><pre class="notranslate"><code class="notranslate">sqlalchemy.exc.IntegrityError: (psycopg2.IntegrityError) duplicate key value violates unique constraint "allowed_fields_pkey"
DETAIL: Key (field_name)=(profileType) already exists.
</code></pre></div>
<p dir="auto">Way it is heppens if I deleted all rows?<br>
version of alchemy 1.2.15, python 3.7</p> | 0 |
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Client Version: version.Info{Major:"1", Minor:"4", GitVersion:"v1.4.3", GitCommit:"4957b090e9a4f6a68b4a40375408fdc74a212260", GitTreeState:"clean", BuildDate:"2016-10-16T06:36:33Z", GoVersion:"go1.7.1", Compiler:"gc", Platform:"darwin/amd64"}
Server Version: version.Info{Major:"1", Minor:"4", GitVersion:"v1.4.3", GitCommit:"4957b090e9a4f6a68b4a40375408fdc74a212260", GitTreeState:"clean", BuildDate:"2016-10-16T06:20:04Z", GoVersion:"go1.6.3", Compiler:"gc", Platform:"linux/amd64"}"><pre class="notranslate"><code class="notranslate">Client Version: version.Info{Major:"1", Minor:"4", GitVersion:"v1.4.3", GitCommit:"4957b090e9a4f6a68b4a40375408fdc74a212260", GitTreeState:"clean", BuildDate:"2016-10-16T06:36:33Z", GoVersion:"go1.7.1", Compiler:"gc", Platform:"darwin/amd64"}
Server Version: version.Info{Major:"1", Minor:"4", GitVersion:"v1.4.3", GitCommit:"4957b090e9a4f6a68b4a40375408fdc74a212260", GitTreeState:"clean", BuildDate:"2016-10-16T06:20:04Z", GoVersion:"go1.6.3", Compiler:"gc", Platform:"linux/amd64"}
</code></pre></div>
<p dir="auto"><strong>Environment</strong>:</p>
<ul dir="auto">
<li><strong>Cloud provider or hardware configuration</strong>: kops-deployed running on aws</li>
<li><strong>OS</strong> (e.g. from /etc/os-release): debian</li>
</ul>
<p dir="auto"><strong>What happened</strong>: when I do <code class="notranslate">kubectl -f apply my-scheduled-job.yml</code> without that job being present, everything works ok, but when I apply an already existing job, I get a "no kind "ScheduledJob" is registered for version "batch/v1"".</p>
<p dir="auto">If you are not able to reproduce it, I can provide my job, but it's a pretty straightforward one, not a lot of options</p> | <p dir="auto"><strong>Is this a request for help?</strong> (If yes, you should use our troubleshooting guide and community support channels, see <a href="http://kubernetes.io/docs/troubleshooting/" rel="nofollow">http://kubernetes.io/docs/troubleshooting/</a>.):</p>
<p dir="auto">Nope!</p>
<p dir="auto"><strong>What keywords did you search in Kubernetes issues before filing this one?</strong> (If you have found any duplicates, you should instead reply there.):</p>
<p dir="auto">kubectl, apply, scheduledjob, batch/v1</p>
<hr>
<p dir="auto"><strong>Is this a BUG REPORT or FEATURE REQUEST?</strong> (choose one):</p>
<p dir="auto">BUG REPORT</p>
<p dir="auto"><strong>Kubernetes version</strong> (use <code class="notranslate">kubectl version</code>):</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Client Version: version.Info{Major:"1", Minor:"4", GitVersion:"v1.4.1", GitCommit:"33cf7b9acbb2cb7c9c72a10d6636321fb180b159", GitTreeState:"clean", BuildDate:"2016-10-10T18:19:49Z", GoVersion:"go1.6.3", Compiler:"gc", Platform:"linux/amd64"}
Server Version: version.Info{Major:"1", Minor:"4", GitVersion:"v1.4.1", GitCommit:"33cf7b9acbb2cb7c9c72a10d6636321fb180b159", GitTreeState:"clean", BuildDate:"2016-10-10T18:13:36Z", GoVersion:"go1.6.3", Compiler:"gc", Platform:"linux/amd64"}"><pre class="notranslate"><code class="notranslate">Client Version: version.Info{Major:"1", Minor:"4", GitVersion:"v1.4.1", GitCommit:"33cf7b9acbb2cb7c9c72a10d6636321fb180b159", GitTreeState:"clean", BuildDate:"2016-10-10T18:19:49Z", GoVersion:"go1.6.3", Compiler:"gc", Platform:"linux/amd64"}
Server Version: version.Info{Major:"1", Minor:"4", GitVersion:"v1.4.1", GitCommit:"33cf7b9acbb2cb7c9c72a10d6636321fb180b159", GitTreeState:"clean", BuildDate:"2016-10-10T18:13:36Z", GoVersion:"go1.6.3", Compiler:"gc", Platform:"linux/amd64"}
</code></pre></div>
<p dir="auto"><strong>Environment</strong>:</p>
<ul dir="auto">
<li><strong>Cloud provider or hardware configuration</strong>: AWS</li>
<li><strong>OS</strong> (e.g. from /etc/os-release): <code class="notranslate">Debian GNU/Linux 8 (jessie)</code></li>
<li><strong>Kernel</strong> (e.g. <code class="notranslate">uname -a</code>): <code class="notranslate">Linux ip-172-20-61-42 3.16.0-4-amd64 #1 SMP Debian 3.16.7-ckt25-2 (2016-04-08) x86_64 GNU/Linux</code></li>
<li><strong>Install tools</strong>: <code class="notranslate">kops</code></li>
<li><strong>Others</strong>: n/a</li>
</ul>
<p dir="auto"><strong>What happened</strong>:</p>
<p dir="auto"><code class="notranslate">kubectl apply</code> emits an error when applying changes to an existing <code class="notranslate">ScheduledJob</code>.</p>
<p dir="auto"><strong>What you expected to happen</strong>:</p>
<p dir="auto"><code class="notranslate">kubectl apply</code> should have successfully applied changes to the existing <code class="notranslate">ScheduledJob</code>.</p>
<p dir="auto"><strong>How to reproduce it</strong> (as minimally and precisely as possible):</p>
<p dir="auto">Given this <code class="notranslate">ScheduledJob</code> manifest:</p>
<div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="# scheduledjob.yaml
# From http://kubernetes.io/docs/user-guide/scheduled-jobs/#creating-a-scheduled-job
apiVersion: batch/v2alpha1
kind: ScheduledJob
metadata:
name: hello
spec:
schedule: 0/1 * * * ?
jobTemplate:
spec:
template:
spec:
containers:
- name: hello
image: busybox
args:
- /bin/sh
- -c
- date; echo Hello from the Kubernetes cluster
restartPolicy: OnFailure"><pre class="notranslate"><span class="pl-c"><span class="pl-c">#</span> scheduledjob.yaml</span>
<span class="pl-c"><span class="pl-c">#</span> From http://kubernetes.io/docs/user-guide/scheduled-jobs/#creating-a-scheduled-job</span>
<span class="pl-ent">apiVersion</span>: <span class="pl-s">batch/v2alpha1</span>
<span class="pl-ent">kind</span>: <span class="pl-s">ScheduledJob</span>
<span class="pl-ent">metadata</span>:
<span class="pl-ent">name</span>: <span class="pl-s">hello</span>
<span class="pl-ent">spec</span>:
<span class="pl-ent">schedule</span>: <span class="pl-s">0/1 * * * ?</span>
<span class="pl-ent">jobTemplate</span>:
<span class="pl-ent">spec</span>:
<span class="pl-ent">template</span>:
<span class="pl-ent">spec</span>:
<span class="pl-ent">containers</span>:
- <span class="pl-ent">name</span>: <span class="pl-s">hello</span>
<span class="pl-ent">image</span>: <span class="pl-s">busybox</span>
<span class="pl-ent">args</span>:
- <span class="pl-s">/bin/sh</span>
- <span class="pl-s">-c</span>
- <span class="pl-s">date; echo Hello from the Kubernetes cluster</span>
<span class="pl-ent">restartPolicy</span>: <span class="pl-s">OnFailure</span></pre></div>
<p dir="auto">The first apply succeeds:</p>
<div class="highlight highlight-text-shell-session notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$ kubectl apply -f scheduledjob.yaml
scheduledjob "hello" created"><pre class="notranslate">$ <span class="pl-s1">kubectl apply -f scheduledjob.yaml </span>
<span class="pl-c1">scheduledjob "hello" created</span></pre></div>
<p dir="auto">The second one fails:</p>
<div class="highlight highlight-text-shell-session notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$ kubectl apply -f scheduledjob.yaml
error: error when applying patch:
to:
&{0xc8200bd740 0xc8202f8ee0 sandbox hello scheduledjob.yaml &ScheduledJob{ObjectMeta:k8s_io_kubernetes_pkg_api_v1.ObjectMeta{Name:hello,GenerateName:,Namespace:,SelfLink:,UID:,ResourceVersion:,Generation:0,CreationTimestamp:0001-01-01 00:00:00 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{},Annotations:map[string]string{kubectl.kubernetes.io/last-applied-configuration: ,},OwnerReferences:[],Finalizers:[],ClusterName:,},Spec:ScheduledJobSpec{Schedule:0/1 * * * ?,StartingDeadlineSeconds:nil,ConcurrencyPolicy:,Suspend:nil,JobTemplate:JobTemplateSpec{ObjectMeta:k8s_io_kubernetes_pkg_api_v1.ObjectMeta{Name:,GenerateName:,Namespace:,SelfLink:,UID:,ResourceVersion:,Generation:0,CreationTimestamp:0001-01-01 00:00:00 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{},Annotations:map[string]string{},OwnerReferences:[],Finalizers:[],ClusterName:,},Spec:JobSpec{Parallelism:nil,Completions:nil,ActiveDeadlineSeconds:nil,Selector:nil,ManualSelector:nil,Template:k8s_io_kubernetes_pkg_api_v1.PodTemplateSpec{ObjectMeta:ObjectMeta{Name:,GenerateName:,Namespace:,SelfLink:,UID:,ResourceVersion:,Generation:0,CreationTimestamp:0001-01-01 00:00:00 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{},Annotations:map[string]string{},OwnerReferences:[],Finalizers:[],ClusterName:,},Spec:PodSpec{Volumes:[],Containers:[{hello busybox [] [/bin/sh -c date; echo Hello from the Kubernetes cluster] [] [] {map[] map[]} [] nil nil nil nil false false false}],RestartPolicy:OnFailure,TerminationGracePeriodSeconds:nil,ActiveDeadlineSeconds:nil,DNSPolicy:,NodeSelector:map[string]string{},ServiceAccountName:,DeprecatedServiceAccount:,NodeName:,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:nil,ImagePullSecrets:[],Hostname:,Subdomain:,},},},},},Status:ScheduledJobStatus{Active:[],LastScheduleTime:<nil>,},} &TypeMeta{Kind:,APIVersion:,} 12601558 false}
for: "scheduledjob.yaml": error when serializing current configuration from:
&TypeMeta{Kind:,APIVersion:,}
for: "scheduledjob.yaml": no kind "ScheduledJob" is registered for version "batch/v1""><pre class="notranslate">$ <span class="pl-s1">kubectl apply -f scheduledjob.yaml</span>
<span class="pl-c1">error: error when applying patch:</span>
<span class="pl-c1">to:</span>
&{0xc8200bd740 0xc8202f8ee0 sandbox hello scheduledjob.yaml &ScheduledJob{ObjectMeta:k8s_io_kubernetes_pkg_api_v1.ObjectMeta{Name:hello,GenerateName:,Namespace:,SelfLink:,UID:,ResourceVersion:,Generation:0,CreationTimestamp:0001-01-01 00:00:00 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{},Annotations:map[string]string{kubectl.kubernetes.io/last-applied-configuration: ,},OwnerReferences:[],Finalizers:[],ClusterName:,},Spec:ScheduledJobSpec{Schedule:0/1 * * * ?,StartingDeadlineSeconds:nil,ConcurrencyPolicy:,Suspend:nil,JobTemplate:JobTemplateSpec{ObjectMeta:k8s_io_kubernetes_pkg_api_v1.ObjectMeta{Name:,GenerateName:,Namespace:,SelfLink:,UID:,ResourceVersion:,Generation:0,CreationTimestamp:0001-01-01 00:00:00 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{},Annotations:map[string]string{},OwnerReferences:[],Finalizers:[],ClusterName:,},Spec:JobSpec{Parallelism:nil,Completions:nil,ActiveDeadlineSeconds:nil,Selector:nil,ManualSelector:nil,Template:k8s_io_kubernetes_pkg_api_v1.PodTemplateSpec{ObjectMeta:ObjectMeta{Name:,GenerateName:,Namespace:,SelfLink:,UID:,ResourceVersion:,Generation:0,CreationTimestamp:0001-01-01 00:00:00 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{},Annotations:map[string]string{},OwnerReferences:[],Finalizers:[],ClusterName:,},Spec:PodSpec{Volumes:[],Containers:[{hello busybox [] [/bin/sh -c date; echo Hello from the Kubernetes cluster] [] [] {map[] map[]} [] nil nil nil nil false false false}],RestartPolicy:OnFailure,TerminationGracePeriodSeconds:nil,ActiveDeadlineSeconds:nil,DNSPolicy:,NodeSelector:map[string]string{},ServiceAccountName:,DeprecatedServiceAccount:,NodeName:,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:nil,ImagePullSecrets:[],Hostname:,Subdomain:,},},},},},Status:ScheduledJobStatus{Active:[],LastScheduleTime:<nil>,},} &TypeMeta{Kind:,APIVersion:,} 12601558 false}
<span class="pl-c1">for: "scheduledjob.yaml": error when serializing current configuration from:</span>
<span class="pl-c1">&TypeMeta{Kind:,APIVersion:,}</span>
<span class="pl-c1">for: "scheduledjob.yaml": no kind "ScheduledJob" is registered for version "batch/v1"</span></pre></div>
<p dir="auto"><strong>Anything else do we need to know</strong>:</p>
<ul dir="auto">
<li><code class="notranslate">ScheduledJob</code> is enabled on the apiserver via <code class="notranslate">--runtime-config=batch/v2alpha1=true</code></li>
<li>first reported downstream at <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="183827268" data-permission-text="Title is private" data-url="https://github.com/helm/helm/issues/1408" data-hovercard-type="issue" data-hovercard-url="/helm/helm/issues/1408/hovercard" href="https://github.com/helm/helm/issues/1408">helm/helm#1408</a></li>
</ul> | 1 |
<p dir="auto">Navbar child items work fine in desktop view, but in mobile/tablet devices, collapsed child items does not link to what is defined in href and will remain on the same page.</p>
<p dir="auto">Use any mobile devices to open below jsFiddle, and click on any link under dropdown menu.</p>
<p dir="auto"><a href="http://jsfiddle.net/wXuqU/5/" rel="nofollow">http://jsfiddle.net/wXuqU/5/</a></p> | <p dir="auto">I had a project using more or less the same menu and it worked. Found out it was using Bootstrap version 2.3.1. Compared version 2.3.2 and 2.3.1 and found that in version 2.3.2 there's this snippet of CSS that reads:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=".dropdown-backdrop {
position: fixed;
left: 0;
right: 0;
bottom: 0;
top: 0;
z-index: 990;
}"><pre class="notranslate"><code class="notranslate">.dropdown-backdrop {
position: fixed;
left: 0;
right: 0;
bottom: 0;
top: 0;
z-index: 990;
}
</code></pre></div>
<p dir="auto">and the rule: <code class="notranslate">position: fixed;</code> seems to cause all the problems.</p>
<p dir="auto">I still don't undertand the point of the markup that is added by the bootstrap dropdown plugin:</p>
<p dir="auto"><code class="notranslate"><div class="dropdown-backdrop"></div></code></p>
<p dir="auto">So I've temporarily fixed the bug on my end by adding a style to override the style causing the problem:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=".dropdown-backdrop {
position: static;
}"><pre class="notranslate"><code class="notranslate">.dropdown-backdrop {
position: static;
}
</code></pre></div>
<p dir="auto">To me this looks like a bug introduced from version 2.3.1 to 2.3.2. Maybe I'm wrong. If someone could explain the purpose of the empty div, it would be helpful.</p> | 1 |
<h1 dir="auto">Checklist</h1>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have verified that the issue exists against the <code class="notranslate">master</code> branch of Celery.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> This has already been asked to the <a href="https://groups.google.com/forum/#!forum/celery-users" rel="nofollow">discussion group</a> first.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the relevant section in the<br>
<a href="http://docs.celeryproject.org/en/latest/contributing.html#other-bugs" rel="nofollow">contribution guide</a><br>
on reporting bugs.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/issues?q=is%3Aissue+label%3A%22Issue+Type%3A+Bug+Report%22+-label%3A%22Category%3A+Documentation%22">issues list</a><br>
for similar or identical bug reports.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/pulls?q=is%3Apr+label%3A%22PR+Type%3A+Bugfix%22+-label%3A%22Category%3A+Documentation%22">pull requests list</a><br>
for existing proposed fixes.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/commits/master">commit log</a><br>
to find out if the bug was already fixed in the master branch.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have included all related issues and possible duplicate issues<br>
in this issue (If there are none, check this box anyway).</li>
</ul>
<h2 dir="auto">Mandatory Debugging Information</h2>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have included the output of <code class="notranslate">celery -A proj report</code> in the issue.<br>
(if you are not able to do this, then at least specify the Celery<br>
version affected).</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have verified that the issue exists against the <code class="notranslate">master</code> branch of Celery.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have included the contents of <code class="notranslate">pip freeze</code> in the issue.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have included all the versions of all the external dependencies required<br>
to reproduce this bug.</li>
</ul>
<h2 dir="auto">Optional Debugging Information</h2>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue on more than one Python version<br>
and/or implementation.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue on more than one message broker and/or<br>
result backend.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue on more than one version of the message<br>
broker and/or result backend.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue on more than one operating system.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue on more than one workers pool.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue with autoscaling, retries,<br>
ETA/Countdown & rate limits disabled.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue after downgrading<br>
and/or upgrading Celery and its dependencies.</li>
</ul>
<h2 dir="auto">Related Issues and Possible Duplicates</h2>
<h4 dir="auto">Related Issues</h4>
<ul dir="auto">
<li>None</li>
</ul>
<h4 dir="auto">Possible Duplicates</h4>
<ul dir="auto">
<li>None</li>
</ul>
<h2 dir="auto">Environment & Settings</h2>
<p dir="auto"><strong>Celery version</strong>: 5.1.2</p>
<details>
<summary><b><code class="notranslate">celery report</code> Output:</b></summary>
<p dir="auto">
</p><div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="software -> celery:5.1.2 (sun-harmonics) kombu:5.1.0 py:3.8.11
billiard:3.6.4.0 py-amqp:5.0.6
platform -> system:Linux arch:64bit, ELF
kernel version:5.4.0-77-generic imp:CPython
loader -> celery.loaders.app.AppLoader
settings -> transport:amqp results:disabled
ABSOLUTE_URL_OVERRIDES: {}
ADMINS: []
ALLOWED_HOSTS: []
APPEND_SLASH: True
AUTHENTICATION_BACKENDS: ['django.contrib.auth.backends.ModelBackend']
AUTH_PASSWORD_VALIDATORS: '********'
AUTH_USER_MODEL: 'auth.User'
BASE_DIR: PosixPath('/var/local/tmp/testing_celery/proj')
CACHES: {'default': {'BACKEND': 'django.core.cache.backends.locmem.LocMemCache'}}
CACHE_MIDDLEWARE_ALIAS: 'default'
CACHE_MIDDLEWARE_KEY_PREFIX: '********'
CACHE_MIDDLEWARE_SECONDS: 600
CELERY_TASK_TIME_LIMIT: 1800
CELERY_TASK_TRACK_STARTED: True
CELERY_TIMEZONE: 'Australia/Tasmania'
CSRF_COOKIE_AGE: 31449600
CSRF_COOKIE_DOMAIN: None
CSRF_COOKIE_HTTPONLY: False
CSRF_COOKIE_NAME: 'csrftoken'
CSRF_COOKIE_PATH: '/'
CSRF_COOKIE_SAMESITE: 'Lax'
CSRF_COOKIE_SECURE: False
CSRF_FAILURE_VIEW: 'django.views.csrf.csrf_failure'
CSRF_HEADER_NAME: 'HTTP_X_CSRFTOKEN'
CSRF_TRUSTED_ORIGINS: []
CSRF_USE_SESSIONS: False
DATABASES: {
'default': { 'ATOMIC_REQUESTS': False,
'AUTOCOMMIT': True,
'CONN_MAX_AGE': 0,
'ENGINE': 'django.db.backends.sqlite3',
'HOST': '',
'NAME': PosixPath('/var/local/tmp/testing_celery/proj/db.sqlite3'),
'OPTIONS': {},
'PASSWORD': '********',
'PORT': '',
'TEST': { 'CHARSET': None,
'COLLATION': None,
'MIGRATE': True,
'MIRROR': None,
'NAME': None},
'TIME_ZONE': None,
'USER': ''}}
DATABASE_ROUTERS: '********'
DATA_UPLOAD_MAX_MEMORY_SIZE: 2621440
DATA_UPLOAD_MAX_NUMBER_FIELDS: 1000
DATETIME_FORMAT: 'N j, Y, P'
DATETIME_INPUT_FORMATS: ['%Y-%m-%d %H:%M:%S',
'%Y-%m-%d %H:%M:%S.%f',
'%Y-%m-%d %H:%M',
'%m/%d/%Y %H:%M:%S',
'%m/%d/%Y %H:%M:%S.%f',
'%m/%d/%Y %H:%M',
'%m/%d/%y %H:%M:%S',
'%m/%d/%y %H:%M:%S.%f',
'%m/%d/%y %H:%M']
DATE_FORMAT: 'N j, Y'
DATE_INPUT_FORMATS: ['%Y-%m-%d',
'%m/%d/%Y',
'%m/%d/%y',
'%b %d %Y',
'%b %d, %Y',
'%d %b %Y',
'%d %b, %Y',
'%B %d %Y',
'%B %d, %Y',
'%d %B %Y',
'%d %B, %Y']
DEBUG: True
DEBUG_PROPAGATE_EXCEPTIONS: False
DECIMAL_SEPARATOR: '.'
DEFAULT_AUTO_FIELD: 'django.db.models.BigAutoField'
DEFAULT_CHARSET: 'utf-8'
DEFAULT_EXCEPTION_REPORTER: 'django.views.debug.ExceptionReporter'
DEFAULT_EXCEPTION_REPORTER_FILTER: 'django.views.debug.SafeExceptionReporterFilter'
DEFAULT_FILE_STORAGE: 'django.core.files.storage.FileSystemStorage'
DEFAULT_FROM_EMAIL: 'webmaster@localhost'
DEFAULT_HASHING_ALGORITHM: 'sha256'
DEFAULT_INDEX_TABLESPACE: ''
DEFAULT_TABLESPACE: ''
DISALLOWED_USER_AGENTS: []
EMAIL_BACKEND: 'django.core.mail.backends.smtp.EmailBackend'
EMAIL_HOST: 'localhost'
EMAIL_HOST_PASSWORD: '********'
EMAIL_HOST_USER: ''
EMAIL_PORT: 25
EMAIL_SSL_CERTFILE: None
EMAIL_SSL_KEYFILE: '********'
EMAIL_SUBJECT_PREFIX: '[Django] '
EMAIL_TIMEOUT: None
EMAIL_USE_LOCALTIME: False
EMAIL_USE_SSL: False
EMAIL_USE_TLS: False
FILE_UPLOAD_DIRECTORY_PERMISSIONS: None
FILE_UPLOAD_HANDLERS: ['django.core.files.uploadhandler.MemoryFileUploadHandler',
'django.core.files.uploadhandler.TemporaryFileUploadHandler']
FILE_UPLOAD_MAX_MEMORY_SIZE: 2621440
FILE_UPLOAD_PERMISSIONS: 420
FILE_UPLOAD_TEMP_DIR: None
FIRST_DAY_OF_WEEK: 0
FIXTURE_DIRS: []
FORCE_SCRIPT_NAME: None
FORMAT_MODULE_PATH: None
FORM_RENDERER: 'django.forms.renderers.DjangoTemplates'
IGNORABLE_404_URLS: []
INSTALLED_APPS: ['django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'polls.apps.PollsConfig']
INTERNAL_IPS: []
LANGUAGES: [('af', 'Afrikaans'),
('ar', 'Arabic'),
('ar-dz', 'Algerian Arabic'),
('ast', 'Asturian'),
('az', 'Azerbaijani'),
('bg', 'Bulgarian'),
('be', 'Belarusian'),
('bn', 'Bengali'),
('br', 'Breton'),
('bs', 'Bosnian'),
('ca', 'Catalan'),
('cs', 'Czech'),
('cy', 'Welsh'),
('da', 'Danish'),
('de', 'German'),
('dsb', 'Lower Sorbian'),
('el', 'Greek'),
('en', 'English'),
('en-au', 'Australian English'),
('en-gb', 'British English'),
('eo', 'Esperanto'),
('es', 'Spanish'),
('es-ar', 'Argentinian Spanish'),
('es-co', 'Colombian Spanish'),
('es-mx', 'Mexican Spanish'),
('es-ni', 'Nicaraguan Spanish'),
('es-ve', 'Venezuelan Spanish'),
('et', 'Estonian'),
('eu', 'Basque'),
('fa', 'Persian'),
('fi', 'Finnish'),
('fr', 'French'),
('fy', 'Frisian'),
('ga', 'Irish'),
('gd', 'Scottish Gaelic'),
('gl', 'Galician'),
('he', 'Hebrew'),
('hi', 'Hindi'),
('hr', 'Croatian'),
('hsb', 'Upper Sorbian'),
('hu', 'Hungarian'),
('hy', 'Armenian'),
('ia', 'Interlingua'),
('id', 'Indonesian'),
('ig', 'Igbo'),
('io', 'Ido'),
('is', 'Icelandic'),
('it', 'Italian'),
('ja', 'Japanese'),
('ka', 'Georgian'),
('kab', 'Kabyle'),
('kk', 'Kazakh'),
('km', 'Khmer'),
('kn', 'Kannada'),
('ko', 'Korean'),
('ky', 'Kyrgyz'),
('lb', 'Luxembourgish'),
('lt', 'Lithuanian'),
('lv', 'Latvian'),
('mk', 'Macedonian'),
('ml', 'Malayalam'),
('mn', 'Mongolian'),
('mr', 'Marathi'),
('my', 'Burmese'),
('nb', 'Norwegian Bokmål'),
('ne', 'Nepali'),
('nl', 'Dutch'),
('nn', 'Norwegian Nynorsk'),
('os', 'Ossetic'),
('pa', 'Punjabi'),
('pl', 'Polish'),
('pt', 'Portuguese'),
('pt-br', 'Brazilian Portuguese'),
('ro', 'Romanian'),
('ru', 'Russian'),
('sk', 'Slovak'),
('sl', 'Slovenian'),
('sq', 'Albanian'),
('sr', 'Serbian'),
('sr-latn', 'Serbian Latin'),
('sv', 'Swedish'),
('sw', 'Swahili'),
('ta', 'Tamil'),
('te', 'Telugu'),
('tg', 'Tajik'),
('th', 'Thai'),
('tk', 'Turkmen'),
('tr', 'Turkish'),
('tt', 'Tatar'),
('udm', 'Udmurt'),
('uk', 'Ukrainian'),
('ur', 'Urdu'),
('uz', 'Uzbek'),
('vi', 'Vietnamese'),
('zh-hans', 'Simplified Chinese'),
('zh-hant', 'Traditional Chinese')]
LANGUAGES_BIDI: ['he', 'ar', 'ar-dz', 'fa', 'ur']
LANGUAGE_CODE: 'en-us'
LANGUAGE_COOKIE_AGE: None
LANGUAGE_COOKIE_DOMAIN: None
LANGUAGE_COOKIE_HTTPONLY: False
LANGUAGE_COOKIE_NAME: 'django_language'
LANGUAGE_COOKIE_PATH: '/'
LANGUAGE_COOKIE_SAMESITE: None
LANGUAGE_COOKIE_SECURE: False
LOCALE_PATHS: []
LOGGING: {
}
LOGGING_CONFIG: 'logging.config.dictConfig'
LOGIN_REDIRECT_URL: '/accounts/profile/'
LOGIN_URL: '/accounts/login/'
LOGOUT_REDIRECT_URL: None
MANAGERS: []
MEDIA_ROOT: ''
MEDIA_URL: '/'
MESSAGE_STORAGE: 'django.contrib.messages.storage.fallback.FallbackStorage'
MIDDLEWARE: ['django.middleware.security.SecurityMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware']
MIGRATION_MODULES: {
}
MONTH_DAY_FORMAT: 'F j'
NUMBER_GROUPING: 0
PASSWORD_HASHERS: '********'
PASSWORD_RESET_TIMEOUT: '********'
PASSWORD_RESET_TIMEOUT_DAYS: '********'
PREPEND_WWW: False
ROOT_URLCONF: 'proj.urls'
SECRET_KEY: '********'
SECURE_BROWSER_XSS_FILTER: False
SECURE_CONTENT_TYPE_NOSNIFF: True
SECURE_HSTS_INCLUDE_SUBDOMAINS: False
SECURE_HSTS_PRELOAD: False
SECURE_HSTS_SECONDS: 0
SECURE_PROXY_SSL_HEADER: None
SECURE_REDIRECT_EXEMPT: []
SECURE_REFERRER_POLICY: 'same-origin'
SECURE_SSL_HOST: None
SECURE_SSL_REDIRECT: False
SERVER_EMAIL: 'root@localhost'
SESSION_CACHE_ALIAS: 'default'
SESSION_COOKIE_AGE: 1209600
SESSION_COOKIE_DOMAIN: None
SESSION_COOKIE_HTTPONLY: True
SESSION_COOKIE_NAME: 'sessionid'
SESSION_COOKIE_PATH: '/'
SESSION_COOKIE_SAMESITE: 'Lax'
SESSION_COOKIE_SECURE: False
SESSION_ENGINE: 'django.contrib.sessions.backends.db'
SESSION_EXPIRE_AT_BROWSER_CLOSE: False
SESSION_FILE_PATH: None
SESSION_SAVE_EVERY_REQUEST: False
SESSION_SERIALIZER: 'django.contrib.sessions.serializers.JSONSerializer'
SETTINGS_MODULE: 'proj.settings'
SHORT_DATETIME_FORMAT: 'm/d/Y P'
SHORT_DATE_FORMAT: 'm/d/Y'
SIGNING_BACKEND: 'django.core.signing.TimestampSigner'
SILENCED_SYSTEM_CHECKS: []
STATICFILES_DIRS: []
STATICFILES_FINDERS: ['django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder']
STATICFILES_STORAGE: 'django.contrib.staticfiles.storage.StaticFilesStorage'
STATIC_ROOT: None
STATIC_URL: '/static/'
TEMPLATES: [{'APP_DIRS': True,
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [],
'OPTIONS': {'context_processors': ['django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages']}}]
TEST_NON_SERIALIZED_APPS: []
TEST_RUNNER: 'django.test.runner.DiscoverRunner'
THOUSAND_SEPARATOR: ','
TIME_FORMAT: 'P'
TIME_INPUT_FORMATS: ['%H:%M:%S', '%H:%M:%S.%f', '%H:%M']
TIME_ZONE: 'UTC'
USE_I18N: True
USE_L10N: True
USE_THOUSAND_SEPARATOR: False
USE_TZ: True
USE_X_FORWARDED_HOST: False
USE_X_FORWARDED_PORT: False
WSGI_APPLICATION: 'proj.wsgi.application'
X_FRAME_OPTIONS: 'DENY'
YEAR_MONTH_FORMAT: 'F Y'
is_overridden: <bound method Settings.is_overridden of <Settings "proj.settings">>
deprecated_settings: None"><pre class="notranslate"><code class="notranslate">software -> celery:5.1.2 (sun-harmonics) kombu:5.1.0 py:3.8.11
billiard:3.6.4.0 py-amqp:5.0.6
platform -> system:Linux arch:64bit, ELF
kernel version:5.4.0-77-generic imp:CPython
loader -> celery.loaders.app.AppLoader
settings -> transport:amqp results:disabled
ABSOLUTE_URL_OVERRIDES: {}
ADMINS: []
ALLOWED_HOSTS: []
APPEND_SLASH: True
AUTHENTICATION_BACKENDS: ['django.contrib.auth.backends.ModelBackend']
AUTH_PASSWORD_VALIDATORS: '********'
AUTH_USER_MODEL: 'auth.User'
BASE_DIR: PosixPath('/var/local/tmp/testing_celery/proj')
CACHES: {'default': {'BACKEND': 'django.core.cache.backends.locmem.LocMemCache'}}
CACHE_MIDDLEWARE_ALIAS: 'default'
CACHE_MIDDLEWARE_KEY_PREFIX: '********'
CACHE_MIDDLEWARE_SECONDS: 600
CELERY_TASK_TIME_LIMIT: 1800
CELERY_TASK_TRACK_STARTED: True
CELERY_TIMEZONE: 'Australia/Tasmania'
CSRF_COOKIE_AGE: 31449600
CSRF_COOKIE_DOMAIN: None
CSRF_COOKIE_HTTPONLY: False
CSRF_COOKIE_NAME: 'csrftoken'
CSRF_COOKIE_PATH: '/'
CSRF_COOKIE_SAMESITE: 'Lax'
CSRF_COOKIE_SECURE: False
CSRF_FAILURE_VIEW: 'django.views.csrf.csrf_failure'
CSRF_HEADER_NAME: 'HTTP_X_CSRFTOKEN'
CSRF_TRUSTED_ORIGINS: []
CSRF_USE_SESSIONS: False
DATABASES: {
'default': { 'ATOMIC_REQUESTS': False,
'AUTOCOMMIT': True,
'CONN_MAX_AGE': 0,
'ENGINE': 'django.db.backends.sqlite3',
'HOST': '',
'NAME': PosixPath('/var/local/tmp/testing_celery/proj/db.sqlite3'),
'OPTIONS': {},
'PASSWORD': '********',
'PORT': '',
'TEST': { 'CHARSET': None,
'COLLATION': None,
'MIGRATE': True,
'MIRROR': None,
'NAME': None},
'TIME_ZONE': None,
'USER': ''}}
DATABASE_ROUTERS: '********'
DATA_UPLOAD_MAX_MEMORY_SIZE: 2621440
DATA_UPLOAD_MAX_NUMBER_FIELDS: 1000
DATETIME_FORMAT: 'N j, Y, P'
DATETIME_INPUT_FORMATS: ['%Y-%m-%d %H:%M:%S',
'%Y-%m-%d %H:%M:%S.%f',
'%Y-%m-%d %H:%M',
'%m/%d/%Y %H:%M:%S',
'%m/%d/%Y %H:%M:%S.%f',
'%m/%d/%Y %H:%M',
'%m/%d/%y %H:%M:%S',
'%m/%d/%y %H:%M:%S.%f',
'%m/%d/%y %H:%M']
DATE_FORMAT: 'N j, Y'
DATE_INPUT_FORMATS: ['%Y-%m-%d',
'%m/%d/%Y',
'%m/%d/%y',
'%b %d %Y',
'%b %d, %Y',
'%d %b %Y',
'%d %b, %Y',
'%B %d %Y',
'%B %d, %Y',
'%d %B %Y',
'%d %B, %Y']
DEBUG: True
DEBUG_PROPAGATE_EXCEPTIONS: False
DECIMAL_SEPARATOR: '.'
DEFAULT_AUTO_FIELD: 'django.db.models.BigAutoField'
DEFAULT_CHARSET: 'utf-8'
DEFAULT_EXCEPTION_REPORTER: 'django.views.debug.ExceptionReporter'
DEFAULT_EXCEPTION_REPORTER_FILTER: 'django.views.debug.SafeExceptionReporterFilter'
DEFAULT_FILE_STORAGE: 'django.core.files.storage.FileSystemStorage'
DEFAULT_FROM_EMAIL: 'webmaster@localhost'
DEFAULT_HASHING_ALGORITHM: 'sha256'
DEFAULT_INDEX_TABLESPACE: ''
DEFAULT_TABLESPACE: ''
DISALLOWED_USER_AGENTS: []
EMAIL_BACKEND: 'django.core.mail.backends.smtp.EmailBackend'
EMAIL_HOST: 'localhost'
EMAIL_HOST_PASSWORD: '********'
EMAIL_HOST_USER: ''
EMAIL_PORT: 25
EMAIL_SSL_CERTFILE: None
EMAIL_SSL_KEYFILE: '********'
EMAIL_SUBJECT_PREFIX: '[Django] '
EMAIL_TIMEOUT: None
EMAIL_USE_LOCALTIME: False
EMAIL_USE_SSL: False
EMAIL_USE_TLS: False
FILE_UPLOAD_DIRECTORY_PERMISSIONS: None
FILE_UPLOAD_HANDLERS: ['django.core.files.uploadhandler.MemoryFileUploadHandler',
'django.core.files.uploadhandler.TemporaryFileUploadHandler']
FILE_UPLOAD_MAX_MEMORY_SIZE: 2621440
FILE_UPLOAD_PERMISSIONS: 420
FILE_UPLOAD_TEMP_DIR: None
FIRST_DAY_OF_WEEK: 0
FIXTURE_DIRS: []
FORCE_SCRIPT_NAME: None
FORMAT_MODULE_PATH: None
FORM_RENDERER: 'django.forms.renderers.DjangoTemplates'
IGNORABLE_404_URLS: []
INSTALLED_APPS: ['django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'polls.apps.PollsConfig']
INTERNAL_IPS: []
LANGUAGES: [('af', 'Afrikaans'),
('ar', 'Arabic'),
('ar-dz', 'Algerian Arabic'),
('ast', 'Asturian'),
('az', 'Azerbaijani'),
('bg', 'Bulgarian'),
('be', 'Belarusian'),
('bn', 'Bengali'),
('br', 'Breton'),
('bs', 'Bosnian'),
('ca', 'Catalan'),
('cs', 'Czech'),
('cy', 'Welsh'),
('da', 'Danish'),
('de', 'German'),
('dsb', 'Lower Sorbian'),
('el', 'Greek'),
('en', 'English'),
('en-au', 'Australian English'),
('en-gb', 'British English'),
('eo', 'Esperanto'),
('es', 'Spanish'),
('es-ar', 'Argentinian Spanish'),
('es-co', 'Colombian Spanish'),
('es-mx', 'Mexican Spanish'),
('es-ni', 'Nicaraguan Spanish'),
('es-ve', 'Venezuelan Spanish'),
('et', 'Estonian'),
('eu', 'Basque'),
('fa', 'Persian'),
('fi', 'Finnish'),
('fr', 'French'),
('fy', 'Frisian'),
('ga', 'Irish'),
('gd', 'Scottish Gaelic'),
('gl', 'Galician'),
('he', 'Hebrew'),
('hi', 'Hindi'),
('hr', 'Croatian'),
('hsb', 'Upper Sorbian'),
('hu', 'Hungarian'),
('hy', 'Armenian'),
('ia', 'Interlingua'),
('id', 'Indonesian'),
('ig', 'Igbo'),
('io', 'Ido'),
('is', 'Icelandic'),
('it', 'Italian'),
('ja', 'Japanese'),
('ka', 'Georgian'),
('kab', 'Kabyle'),
('kk', 'Kazakh'),
('km', 'Khmer'),
('kn', 'Kannada'),
('ko', 'Korean'),
('ky', 'Kyrgyz'),
('lb', 'Luxembourgish'),
('lt', 'Lithuanian'),
('lv', 'Latvian'),
('mk', 'Macedonian'),
('ml', 'Malayalam'),
('mn', 'Mongolian'),
('mr', 'Marathi'),
('my', 'Burmese'),
('nb', 'Norwegian Bokmål'),
('ne', 'Nepali'),
('nl', 'Dutch'),
('nn', 'Norwegian Nynorsk'),
('os', 'Ossetic'),
('pa', 'Punjabi'),
('pl', 'Polish'),
('pt', 'Portuguese'),
('pt-br', 'Brazilian Portuguese'),
('ro', 'Romanian'),
('ru', 'Russian'),
('sk', 'Slovak'),
('sl', 'Slovenian'),
('sq', 'Albanian'),
('sr', 'Serbian'),
('sr-latn', 'Serbian Latin'),
('sv', 'Swedish'),
('sw', 'Swahili'),
('ta', 'Tamil'),
('te', 'Telugu'),
('tg', 'Tajik'),
('th', 'Thai'),
('tk', 'Turkmen'),
('tr', 'Turkish'),
('tt', 'Tatar'),
('udm', 'Udmurt'),
('uk', 'Ukrainian'),
('ur', 'Urdu'),
('uz', 'Uzbek'),
('vi', 'Vietnamese'),
('zh-hans', 'Simplified Chinese'),
('zh-hant', 'Traditional Chinese')]
LANGUAGES_BIDI: ['he', 'ar', 'ar-dz', 'fa', 'ur']
LANGUAGE_CODE: 'en-us'
LANGUAGE_COOKIE_AGE: None
LANGUAGE_COOKIE_DOMAIN: None
LANGUAGE_COOKIE_HTTPONLY: False
LANGUAGE_COOKIE_NAME: 'django_language'
LANGUAGE_COOKIE_PATH: '/'
LANGUAGE_COOKIE_SAMESITE: None
LANGUAGE_COOKIE_SECURE: False
LOCALE_PATHS: []
LOGGING: {
}
LOGGING_CONFIG: 'logging.config.dictConfig'
LOGIN_REDIRECT_URL: '/accounts/profile/'
LOGIN_URL: '/accounts/login/'
LOGOUT_REDIRECT_URL: None
MANAGERS: []
MEDIA_ROOT: ''
MEDIA_URL: '/'
MESSAGE_STORAGE: 'django.contrib.messages.storage.fallback.FallbackStorage'
MIDDLEWARE: ['django.middleware.security.SecurityMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware']
MIGRATION_MODULES: {
}
MONTH_DAY_FORMAT: 'F j'
NUMBER_GROUPING: 0
PASSWORD_HASHERS: '********'
PASSWORD_RESET_TIMEOUT: '********'
PASSWORD_RESET_TIMEOUT_DAYS: '********'
PREPEND_WWW: False
ROOT_URLCONF: 'proj.urls'
SECRET_KEY: '********'
SECURE_BROWSER_XSS_FILTER: False
SECURE_CONTENT_TYPE_NOSNIFF: True
SECURE_HSTS_INCLUDE_SUBDOMAINS: False
SECURE_HSTS_PRELOAD: False
SECURE_HSTS_SECONDS: 0
SECURE_PROXY_SSL_HEADER: None
SECURE_REDIRECT_EXEMPT: []
SECURE_REFERRER_POLICY: 'same-origin'
SECURE_SSL_HOST: None
SECURE_SSL_REDIRECT: False
SERVER_EMAIL: 'root@localhost'
SESSION_CACHE_ALIAS: 'default'
SESSION_COOKIE_AGE: 1209600
SESSION_COOKIE_DOMAIN: None
SESSION_COOKIE_HTTPONLY: True
SESSION_COOKIE_NAME: 'sessionid'
SESSION_COOKIE_PATH: '/'
SESSION_COOKIE_SAMESITE: 'Lax'
SESSION_COOKIE_SECURE: False
SESSION_ENGINE: 'django.contrib.sessions.backends.db'
SESSION_EXPIRE_AT_BROWSER_CLOSE: False
SESSION_FILE_PATH: None
SESSION_SAVE_EVERY_REQUEST: False
SESSION_SERIALIZER: 'django.contrib.sessions.serializers.JSONSerializer'
SETTINGS_MODULE: 'proj.settings'
SHORT_DATETIME_FORMAT: 'm/d/Y P'
SHORT_DATE_FORMAT: 'm/d/Y'
SIGNING_BACKEND: 'django.core.signing.TimestampSigner'
SILENCED_SYSTEM_CHECKS: []
STATICFILES_DIRS: []
STATICFILES_FINDERS: ['django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder']
STATICFILES_STORAGE: 'django.contrib.staticfiles.storage.StaticFilesStorage'
STATIC_ROOT: None
STATIC_URL: '/static/'
TEMPLATES: [{'APP_DIRS': True,
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [],
'OPTIONS': {'context_processors': ['django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages']}}]
TEST_NON_SERIALIZED_APPS: []
TEST_RUNNER: 'django.test.runner.DiscoverRunner'
THOUSAND_SEPARATOR: ','
TIME_FORMAT: 'P'
TIME_INPUT_FORMATS: ['%H:%M:%S', '%H:%M:%S.%f', '%H:%M']
TIME_ZONE: 'UTC'
USE_I18N: True
USE_L10N: True
USE_THOUSAND_SEPARATOR: False
USE_TZ: True
USE_X_FORWARDED_HOST: False
USE_X_FORWARDED_PORT: False
WSGI_APPLICATION: 'proj.wsgi.application'
X_FRAME_OPTIONS: 'DENY'
YEAR_MONTH_FORMAT: 'F Y'
is_overridden: <bound method Settings.is_overridden of <Settings "proj.settings">>
deprecated_settings: None
</code></pre></div>
<p dir="auto"></p>
</details>
<h1 dir="auto">Steps to Reproduce</h1>
<ul dir="auto">
<li>create a virtual environment with Python 3.8.11</li>
<li>install 2 packages</li>
</ul>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="pip install Django==3.2.6
pip install celery==5.1.2"><pre class="notranslate"><code class="notranslate">pip install Django==3.2.6
pip install celery==5.1.2
</code></pre></div>
<ul dir="auto">
<li>follow Django Tutorial to create a new project (<a href="https://docs.djangoproject.com/en/3.2/intro/tutorial01/" rel="nofollow">https://docs.djangoproject.com/en/3.2/intro/tutorial01/</a>)</li>
</ul>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="django-admin startproject proj
python manage.py migrate
python manage.py runserver 0.0.0.0:8000 (optional to test that it's starting, stop it afterwards)"><pre class="notranslate"><code class="notranslate">django-admin startproject proj
python manage.py migrate
python manage.py runserver 0.0.0.0:8000 (optional to test that it's starting, stop it afterwards)
</code></pre></div>
<ul dir="auto">
<li>follow First steps with Django (<a href="https://docs.celeryproject.org/en/stable/django/first-steps-with-django.html" rel="nofollow">https://docs.celeryproject.org/en/stable/django/first-steps-with-django.html</a>)</li>
<li>added proj/__init__.py</li>
</ul>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="# This will make sure the app is always imported when
# Django starts so that shared_task will use this app.
from .celery import app as celery_app
__all__ = ('celery_app',)"><pre class="notranslate"><code class="notranslate"># This will make sure the app is always imported when
# Django starts so that shared_task will use this app.
from .celery import app as celery_app
__all__ = ('celery_app',)
</code></pre></div>
<ul dir="auto">
<li>
<p dir="auto">added proj/celery.py and defined 2 tasks</p>
<p dir="auto">import os</p>
<p dir="auto">from celery import Celery, Task</p>
<h1 dir="auto">Set the default Django settings module for the 'celery' program.</h1>
<p dir="auto">os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'proj.settings')</p>
<p dir="auto">app = Celery('proj')</p>
<h1 dir="auto">Using a string here means the worker doesn't have to serialize</h1>
<h1 dir="auto">the configuration object to child processes.</h1>
<h1 dir="auto">- namespace='CELERY' means all celery-related configuration keys</h1>
<h1 dir="auto">should have a <code class="notranslate">CELERY_</code> prefix.</h1>
<p dir="auto">app.config_from_object('django.conf:settings', namespace='CELERY')</p>
<h1 dir="auto">Load task modules from all registered Django apps.</h1>
<p dir="auto">app.autodiscover_tasks()</p>
<p dir="auto">@app.task(bind=True)<br>
def debug_task(self):<br>
print(f'Request: {self.request!r}')</p>
<p dir="auto">class DebugTask(Task):<br>
def run(self, *args, *<em>kwargs):<br>
print('it's working')</em> start celery worker with <em>celery -A proj worker -l info</em></p>
</li>
</ul>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="(testing-celery) ➜ proj celery -A proj worker -l info
[2021-08-05 04:58:44,212: WARNING/MainProcess] No hostname was supplied. Reverting to default 'localhost'
-------------- celery@dragos-tali v5.1.2 (sun-harmonics)
--- ***** -----
-- ******* ---- Linux-5.4.0-77-generic-x86_64-with-glibc2.27 2021-08-05 04:58:44
- *** --- * ---
- ** ---------- [config]
- ** ---------- .> app: proj:0x7f7a8929d580
- ** ---------- .> transport: amqp://guest:**@localhost:5672//
- ** ---------- .> results: disabled://
- *** --- * --- .> concurrency: 12 (prefork)
-- ******* ---- .> task events: OFF (enable -E to monitor tasks in this worker)
--- ***** -----
-------------- [queues]
.> celery exchange=celery(direct) key=celery
[tasks]
. proj.celery.debug_task
[2021-08-05 04:58:44,531: ERROR/MainProcess] consumer: Cannot connect to amqp://guest:**@127.0.0.1:5672//: [Errno 111] Connection refused.
Trying again in 2.00 seconds... (1/100)"><pre class="notranslate"><code class="notranslate">(testing-celery) ➜ proj celery -A proj worker -l info
[2021-08-05 04:58:44,212: WARNING/MainProcess] No hostname was supplied. Reverting to default 'localhost'
-------------- celery@dragos-tali v5.1.2 (sun-harmonics)
--- ***** -----
-- ******* ---- Linux-5.4.0-77-generic-x86_64-with-glibc2.27 2021-08-05 04:58:44
- *** --- * ---
- ** ---------- [config]
- ** ---------- .> app: proj:0x7f7a8929d580
- ** ---------- .> transport: amqp://guest:**@localhost:5672//
- ** ---------- .> results: disabled://
- *** --- * --- .> concurrency: 12 (prefork)
-- ******* ---- .> task events: OFF (enable -E to monitor tasks in this worker)
--- ***** -----
-------------- [queues]
.> celery exchange=celery(direct) key=celery
[tasks]
. proj.celery.debug_task
[2021-08-05 04:58:44,531: ERROR/MainProcess] consumer: Cannot connect to amqp://guest:**@127.0.0.1:5672//: [Errno 111] Connection refused.
Trying again in 2.00 seconds... (1/100)
</code></pre></div>
<h2 dir="auto">Required Dependencies</h2>
<ul dir="auto">
<li><strong>Minimal Python Version</strong>: 3.8.11</li>
<li><strong>Minimal Celery Version</strong>: 5.1.2</li>
<li><strong>Minimal Kombu Version</strong>: 5.1.0</li>
<li><strong>Minimal Broker Version</strong>: N/A or Unknown</li>
<li><strong>Minimal Result Backend Version</strong>: N/A or Unknown</li>
<li><strong>Minimal OS and/or Kernel Version</strong>: Ubuntu 18.04.5 LTS</li>
<li><strong>Minimal Broker Client Version</strong>: N/A or Unknown</li>
<li><strong>Minimal Result Backend Client Version</strong>: N/A or Unknown</li>
</ul>
<h3 dir="auto">Python Packages</h3>
<details>
<summary><b><code class="notranslate">pip freeze</code> Output:</b></summary>
<p dir="auto">
</p><div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="amqp==5.0.6
asgiref==3.4.1
billiard==3.6.4.0
celery==5.1.2
click==7.1.2
click-didyoumean==0.0.3
click-plugins==1.1.1
click-repl==0.2.0
Django==3.2.6
kombu==5.1.0
prompt-toolkit==3.0.19
pytz==2021.1
six==1.16.0
sqlparse==0.4.1
vine==5.0.0
wcwidth==0.2.5"><pre class="notranslate"><code class="notranslate">amqp==5.0.6
asgiref==3.4.1
billiard==3.6.4.0
celery==5.1.2
click==7.1.2
click-didyoumean==0.0.3
click-plugins==1.1.1
click-repl==0.2.0
Django==3.2.6
kombu==5.1.0
prompt-toolkit==3.0.19
pytz==2021.1
six==1.16.0
sqlparse==0.4.1
vine==5.0.0
wcwidth==0.2.5
</code></pre></div>
<p dir="auto"></p>
</details>
<h3 dir="auto">Other Dependencies</h3>
<details>
<p dir="auto">
N/A
</p>
</details>
<h2 dir="auto">Minimally Reproducible Test Case</h2>
<details>
<p dir="auto">
</p><div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=""><pre class="notranslate"></pre></div>
<p dir="auto"></p>
</details>
<h1 dir="auto">Expected Behavior</h1>
<p dir="auto">The class based task <strong>DebugTask</strong> must also be discovered.</p>
<h1 dir="auto">Actual Behavior</h1>
<p dir="auto">Only the <strong>debug_task</strong> is discovered.</p> | <h1 dir="auto">Checklist</h1>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have verified that the issue exists against the <code class="notranslate">master</code> branch of Celery. <g-emoji class="g-emoji" alias="arrow_right" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/27a1.png">➡️</g-emoji> <strong>My project does not run on the master branch. Still considering 5.0.5 fairly new and did/could not upgrade my dependencies</strong></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> This has already been asked to the <a href="https://groups.google.com/forum/#!forum/celery-users" rel="nofollow">discussion group</a> first. <g-emoji class="g-emoji" alias="arrow_right" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/27a1.png">➡️</g-emoji> <strong>Nobody replies there</strong></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the relevant section in the<br>
<a href="http://docs.celeryproject.org/en/latest/contributing.html#other-bugs" rel="nofollow">contribution guide</a><br>
on reporting bugs.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/issues?q=is%3Aissue+label%3A%22Issue+Type%3A+Bug+Report%22+-label%3A%22Category%3A+Documentation%22">issues list</a><br>
for similar or identical bug reports.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/pulls?q=is%3Apr+label%3A%22PR+Type%3A+Bugfix%22+-label%3A%22Category%3A+Documentation%22">pull requests list</a><br>
for existing proposed fixes.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/commits/master">commit log</a><br>
to find out if the bug was already fixed in the master branch.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have included all related issues and possible duplicate issues<br>
in this issue (If there are none, check this box anyway).</li>
</ul>
<h2 dir="auto">Mandatory Debugging Information</h2>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have included the output of <code class="notranslate">celery -A proj report</code> in the issue.<br>
(if you are not able to do this, then at least specify the Celery<br>
version affected).</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have verified that the issue exists against the <code class="notranslate">master</code> branch of Celery. <g-emoji class="g-emoji" alias="arrow_right" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/27a1.png">➡️</g-emoji> <strong>Still version 5.0.5. Tried upgrading once and broke everything</strong></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have included the contents of <code class="notranslate">pip freeze</code> in the issue.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have included all the versions of all the external dependencies required<br>
to reproduce this bug.</li>
</ul>
<h2 dir="auto">Related Issues and Possible Duplicates</h2>
<h4 dir="auto">Related Issues</h4>
<ul dir="auto">
<li>None</li>
</ul>
<h4 dir="auto">Possible Duplicates</h4>
<ul dir="auto">
<li>None</li>
</ul>
<h2 dir="auto">Environment & Settings</h2>
<p dir="auto"><strong>Celery version</strong>: 5.0.5</p>
<details>
<summary><b><code class="notranslate">celery report</code> Output:</b></summary>
<p dir="auto">
</p><div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="software -> celery:5.0.5 (singularity) kombu:5.1.0 py:3.9.4
billiard:3.6.4.0 redis:3.5.3
platform -> system:Windows arch:64bit, WindowsPE
kernel version:10 imp:CPython
loader -> celery.loaders.app.AppLoader
settings -> transport:redis results:django-db
broker_url: 'redis://127.0.0.1:6379//'
result_backend: 'django-db'
include: ['nttracker.tasks']
deprecated_settings: None
timezone: 'Asia/Taipei'
cache_backend: 'default'
beat_schedule: {
'add-every-10-seconds': { 'args': (16, 16),
'schedule': 10.0,
'task': 'nttracker.tasks.add'}} "><pre class="notranslate"><code class="notranslate">software -> celery:5.0.5 (singularity) kombu:5.1.0 py:3.9.4
billiard:3.6.4.0 redis:3.5.3
platform -> system:Windows arch:64bit, WindowsPE
kernel version:10 imp:CPython
loader -> celery.loaders.app.AppLoader
settings -> transport:redis results:django-db
broker_url: 'redis://127.0.0.1:6379//'
result_backend: 'django-db'
include: ['nttracker.tasks']
deprecated_settings: None
timezone: 'Asia/Taipei'
cache_backend: 'default'
beat_schedule: {
'add-every-10-seconds': { 'args': (16, 16),
'schedule': 10.0,
'task': 'nttracker.tasks.add'}}
</code></pre></div>
<p dir="auto"></p>
</details>
<h1 dir="auto">Steps to Reproduce</h1>
<h2 dir="auto">Required Dependencies</h2>
<ul dir="auto">
<li><strong>Minimal Python Version</strong>: Python 3.9.4</li>
<li><strong>Minimal Celery Version</strong>: Celery 5.0.5</li>
<li><strong>Minimal Kombu Version</strong>: Unknown</li>
<li><strong>Minimal Broker Version</strong>: Unknown</li>
<li><strong>Minimal Result Backend Version</strong>: Unknown</li>
<li><strong>Minimal OS and/or Kernel Version</strong>: Unknown</li>
<li><strong>Minimal Broker Client Version</strong>: Unknown</li>
<li><strong>Minimal Result Backend Client Version</strong>: Unknown</li>
</ul>
<h3 dir="auto">Python Packages</h3>
<details>
<summary><b><code class="notranslate">pip freeze</code> Output:</b></summary>
<p dir="auto">
</p><div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="amqp==5.0.6
asgiref==3.3.4
astroid==2.5.7
billiard==3.6.4.0
celery==5.0.5
click==7.1.2
click-didyoumean==0.0.3
click-plugins==1.1.1
click-repl==0.2.0
colorama==0.4.4
Django==3.2.3
django-celery-beat==2.2.0
django-celery-results==2.0.1
django-cors-headers==3.7.0
django-timezone-field==4.1.2
djangorestframework==3.12.4
greenlet==1.1.0
isort==5.8.0
kombu==5.1.0
lazy-object-proxy==1.6.0
mccabe==0.6.1
pep8==1.7.1
Pillow==8.2.0
prompt-toolkit==3.0.18
psycopg2==2.8.6
pylint==2.8.2
python-crontab==2.5.1
python-dateutil==2.8.1
pytz==2021.1
redis==3.5.3
six==1.16.0
SQLAlchemy==1.4.17
sqlparse==0.4.1
toml==0.10.2
vine==5.0.0
wcwidth==0.2.5
wrapt==1.12.1"><pre class="notranslate"><code class="notranslate">amqp==5.0.6
asgiref==3.3.4
astroid==2.5.7
billiard==3.6.4.0
celery==5.0.5
click==7.1.2
click-didyoumean==0.0.3
click-plugins==1.1.1
click-repl==0.2.0
colorama==0.4.4
Django==3.2.3
django-celery-beat==2.2.0
django-celery-results==2.0.1
django-cors-headers==3.7.0
django-timezone-field==4.1.2
djangorestframework==3.12.4
greenlet==1.1.0
isort==5.8.0
kombu==5.1.0
lazy-object-proxy==1.6.0
mccabe==0.6.1
pep8==1.7.1
Pillow==8.2.0
prompt-toolkit==3.0.18
psycopg2==2.8.6
pylint==2.8.2
python-crontab==2.5.1
python-dateutil==2.8.1
pytz==2021.1
redis==3.5.3
six==1.16.0
SQLAlchemy==1.4.17
sqlparse==0.4.1
toml==0.10.2
vine==5.0.0
wcwidth==0.2.5
wrapt==1.12.1
</code></pre></div>
<p dir="auto"></p>
</details>
<h3 dir="auto">Other Dependencies</h3>
<details>
<p dir="auto">
N/A
</p>
</details>
<h2 dir="auto">Minimally Reproducible Test Case</h2>
<details>
<p dir="auto">
</p><p dir="auto"><strong>nttracker\tests.py</strong></p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from __future__ import absolute_import
import django
django.setup()
from celery import Celery
app = Celery()
@app.task
def add(x, y):
z = x + y
print(z)"><pre class="notranslate"><span class="pl-k">from</span> __future__ <span class="pl-k">import</span> <span class="pl-s1">absolute_import</span>
<span class="pl-k">import</span> <span class="pl-s1">django</span>
<span class="pl-s1">django</span>.<span class="pl-en">setup</span>()
<span class="pl-k">from</span> <span class="pl-s1">celery</span> <span class="pl-k">import</span> <span class="pl-v">Celery</span>
<span class="pl-s1">app</span> <span class="pl-c1">=</span> <span class="pl-v">Celery</span>()
<span class="pl-en">@<span class="pl-s1">app</span>.<span class="pl-s1">task</span></span>
<span class="pl-k">def</span> <span class="pl-en">add</span>(<span class="pl-s1">x</span>, <span class="pl-s1">y</span>):
<span class="pl-s1">z</span> <span class="pl-c1">=</span> <span class="pl-s1">x</span> <span class="pl-c1">+</span> <span class="pl-s1">y</span>
<span class="pl-en">print</span>(<span class="pl-s1">z</span>)</pre></div>
<p dir="auto"><strong>nttracker\celery.py</strong></p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from __future__ import absolute_import
import os
from celery import Celery
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'nttracker.settings')
postgres_broker = 'sqla+postgresql://crimsonpython24:_16064Coding4Life@host/nttracker'
app = Celery('nttracker', broker='amqp://', backend='rpc://', include=['nttracker.tasks'])
app.autodiscover_tasks()
app.conf.update(
timezone = "Asia/Taipei",
result_backend = 'django-db',
broker_url = 'redis://127.0.0.1:6379',
cache_backend = 'default',
beat_schedule = {
'add-every-10-seconds': {
'task': 'nttracker.tasks.add',
'schedule': 10.0,
'args': (16, 16)
},
}
)
if __name__ == '__main__':
app.start()"><pre class="notranslate"><span class="pl-k">from</span> __future__ <span class="pl-k">import</span> <span class="pl-s1">absolute_import</span>
<span class="pl-k">import</span> <span class="pl-s1">os</span>
<span class="pl-k">from</span> <span class="pl-s1">celery</span> <span class="pl-k">import</span> <span class="pl-v">Celery</span>
<span class="pl-s1">os</span>.<span class="pl-s1">environ</span>.<span class="pl-en">setdefault</span>(<span class="pl-s">'DJANGO_SETTINGS_MODULE'</span>, <span class="pl-s">'nttracker.settings'</span>)
<span class="pl-s1">postgres_broker</span> <span class="pl-c1">=</span> <span class="pl-s">'sqla+postgresql://crimsonpython24:_16064Coding4Life@host/nttracker'</span>
<span class="pl-s1">app</span> <span class="pl-c1">=</span> <span class="pl-v">Celery</span>(<span class="pl-s">'nttracker'</span>, <span class="pl-s1">broker</span><span class="pl-c1">=</span><span class="pl-s">'amqp://'</span>, <span class="pl-s1">backend</span><span class="pl-c1">=</span><span class="pl-s">'rpc://'</span>, <span class="pl-s1">include</span><span class="pl-c1">=</span>[<span class="pl-s">'nttracker.tasks'</span>])
<span class="pl-s1">app</span>.<span class="pl-en">autodiscover_tasks</span>()
<span class="pl-s1">app</span>.<span class="pl-s1">conf</span>.<span class="pl-en">update</span>(
<span class="pl-s1">timezone</span> <span class="pl-c1">=</span> <span class="pl-s">"Asia/Taipei"</span>,
<span class="pl-s1">result_backend</span> <span class="pl-c1">=</span> <span class="pl-s">'django-db'</span>,
<span class="pl-s1">broker_url</span> <span class="pl-c1">=</span> <span class="pl-s">'redis://127.0.0.1:6379'</span>,
<span class="pl-s1">cache_backend</span> <span class="pl-c1">=</span> <span class="pl-s">'default'</span>,
<span class="pl-s1">beat_schedule</span> <span class="pl-c1">=</span> {
<span class="pl-s">'add-every-10-seconds'</span>: {
<span class="pl-s">'task'</span>: <span class="pl-s">'nttracker.tasks.add'</span>,
<span class="pl-s">'schedule'</span>: <span class="pl-c1">10.0</span>,
<span class="pl-s">'args'</span>: (<span class="pl-c1">16</span>, <span class="pl-c1">16</span>)
},
}
)
<span class="pl-k">if</span> <span class="pl-s1">__name__</span> <span class="pl-c1">==</span> <span class="pl-s">'__main__'</span>:
<span class="pl-s1">app</span>.<span class="pl-en">start</span>()</pre></div>
<p dir="auto"></p>
</details>
<h1 dir="auto">Expected Behavior</h1>
<p dir="auto">Log 32 every ten seconds (from <code class="notranslate">add(16, 16)</code>)</p>
<h1 dir="auto">Actual Behavior</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="-------------- celery@LAPTOP-A0OM125L v5.0.5 (singularity)
--- ***** -----
-- ******* ---- Windows-10-10.0.19041-SP0 2021-06-04 23:02:25
- *** --- * ---
- ** ---------- [config]
- ** ---------- .> app: nttracker:0x1a520896400
- ** ---------- .> transport: redis://127.0.0.1:6379//
- ** ---------- .> results:
- *** --- * --- .> concurrency: 12 (solo)
-- ******* ---- .> task events: OFF (enable -E to monitor tasks in this worker)
--- ***** -----
-------------- [queues]
.> celery exchange=celery(direct) key=celery
[2021-06-04 23:02:26,607: WARNING/MainProcess] c:\users\xxx\onedrive\desktop\github_new\nttracker\venv\lib\site-packages\celery\fixups\django.py:203: UserWarning: Using settings.DEBUG leads to a memory
leak, never use this setting in production environments!
warnings.warn('''Using settings.DEBUG leads to a memory
[2021-06-04 23:02:26,611: WARNING/MainProcess] 32
[2021-06-04 23:02:26,695: ERROR/MainProcess] Received unregistered task of type 'tasks.add'.
The message has been ignored and discarded.
Did you remember to import the module containing this task?
Or maybe you're using relative imports?
Please see
http://docs.celeryq.org/en/latest/internals/protocol.html
for more information.
The full contents of the message body was:
b'[[16, 16], {}, {"callbacks": null, "errbacks": null, "chain": null, "chord": null}]' (83b)
Traceback (most recent call last):
File "c:\users\xxx\onedrive\desktop\github_new\nttracker\venv\lib\site-packages\celery\worker\consumer\consumer.py", line 555, in on_task_received
strategy = strategies[type_]
KeyError: 'tasks.add'
[2021-06-04 23:02:26,755: WARNING/MainProcess] 32
[2021-06-04 23:02:26,817: WARNING/MainProcess] 32
[2021-06-04 23:02:26,883: WARNING/MainProcess] 32
[2021-06-04 23:02:26,951: ERROR/MainProcess] Received unregistered task of type 'tasks.add'.
The message has been ignored and discarded.
worker: Hitting Ctrl+C again will terminate all running tasks!
worker: Warm shutdown (MainProcess)"><pre class="notranslate"><code class="notranslate">-------------- celery@LAPTOP-A0OM125L v5.0.5 (singularity)
--- ***** -----
-- ******* ---- Windows-10-10.0.19041-SP0 2021-06-04 23:02:25
- *** --- * ---
- ** ---------- [config]
- ** ---------- .> app: nttracker:0x1a520896400
- ** ---------- .> transport: redis://127.0.0.1:6379//
- ** ---------- .> results:
- *** --- * --- .> concurrency: 12 (solo)
-- ******* ---- .> task events: OFF (enable -E to monitor tasks in this worker)
--- ***** -----
-------------- [queues]
.> celery exchange=celery(direct) key=celery
[2021-06-04 23:02:26,607: WARNING/MainProcess] c:\users\xxx\onedrive\desktop\github_new\nttracker\venv\lib\site-packages\celery\fixups\django.py:203: UserWarning: Using settings.DEBUG leads to a memory
leak, never use this setting in production environments!
warnings.warn('''Using settings.DEBUG leads to a memory
[2021-06-04 23:02:26,611: WARNING/MainProcess] 32
[2021-06-04 23:02:26,695: ERROR/MainProcess] Received unregistered task of type 'tasks.add'.
The message has been ignored and discarded.
Did you remember to import the module containing this task?
Or maybe you're using relative imports?
Please see
http://docs.celeryq.org/en/latest/internals/protocol.html
for more information.
The full contents of the message body was:
b'[[16, 16], {}, {"callbacks": null, "errbacks": null, "chain": null, "chord": null}]' (83b)
Traceback (most recent call last):
File "c:\users\xxx\onedrive\desktop\github_new\nttracker\venv\lib\site-packages\celery\worker\consumer\consumer.py", line 555, in on_task_received
strategy = strategies[type_]
KeyError: 'tasks.add'
[2021-06-04 23:02:26,755: WARNING/MainProcess] 32
[2021-06-04 23:02:26,817: WARNING/MainProcess] 32
[2021-06-04 23:02:26,883: WARNING/MainProcess] 32
[2021-06-04 23:02:26,951: ERROR/MainProcess] Received unregistered task of type 'tasks.add'.
The message has been ignored and discarded.
worker: Hitting Ctrl+C again will terminate all running tasks!
worker: Warm shutdown (MainProcess)
</code></pre></div>
<p dir="auto">Somehow <code class="notranslate">KeyError: 'tasks.add'</code> is still present in the code. It may be from a previous version, but I'm positive that I removed the malfunctioning code from my end.</p>
<p dir="auto">If you look closer:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[2021-06-04 23:02:26,755: WARNING/MainProcess] 32
[2021-06-04 23:02:26,817: WARNING/MainProcess] 32
[2021-06-04 23:02:26,883: WARNING/MainProcess] 32
[2021-06-04 23:02:26,951: ERROR..."><pre class="notranslate"><code class="notranslate">[2021-06-04 23:02:26,755: WARNING/MainProcess] 32
[2021-06-04 23:02:26,817: WARNING/MainProcess] 32
[2021-06-04 23:02:26,883: WARNING/MainProcess] 32
[2021-06-04 23:02:26,951: ERROR...
</code></pre></div>
<p dir="auto">The interval between the last "32" and error is less than ten seconds, which suggests that there might be some sort of remaining processes from previous executions. I used ctrl+C several times and restarted the redis server but didn't do anything.</p>
<p dir="auto">Issues 3821, 4081 are all from previous versions of Celery.</p> | 0 |
<p dir="auto">We currently only check for object safety when coercing a concrete object to a trait object. We should prevent the programmer writing object types which are not object safe.</p> | <p dir="auto">The following definition compiles fine:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="fn two<V>(f: &mut FnMut(V) -> V, v: V) -> V {
let temp = f(v);
f(temp)
}"><pre class="notranslate"><code class="notranslate">fn two<V>(f: &mut FnMut(V) -> V, v: V) -> V {
let temp = f(v);
f(temp)
}
</code></pre></div>
<p dir="auto">whereas the more direct version does not:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="fn two<V>(f: &mut FnMut(V) -> V, v: V) -> V {
f(f(v))
}"><pre class="notranslate"><code class="notranslate">fn two<V>(f: &mut FnMut(V) -> V, v: V) -> V {
f(f(v))
}
</code></pre></div>
<p dir="auto">The error we get here is:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="error: cannot borrow `*f` as mutable more than once at a time
f(f(v))
^
note: previous borrow of `*f` occurs here; the mutable borrow prevents subsequent moves, borrows, or modification of `*f` until the borrow ends
f(f(v))
^
note: previous borrow ends here
f(f(v))
^
error: cannot borrow `*f` as mutable more than once at a time
f(f(v))
^
note: previous borrow of `*f` occurs here; the mutable borrow prevents subsequent moves, borrows, or modification of `*f` until the borrow ends
f(f(v))
^
note: previous borrow ends here
f(f(v))
^"><pre class="notranslate"><code class="notranslate">error: cannot borrow `*f` as mutable more than once at a time
f(f(v))
^
note: previous borrow of `*f` occurs here; the mutable borrow prevents subsequent moves, borrows, or modification of `*f` until the borrow ends
f(f(v))
^
note: previous borrow ends here
f(f(v))
^
error: cannot borrow `*f` as mutable more than once at a time
f(f(v))
^
note: previous borrow of `*f` occurs here; the mutable borrow prevents subsequent moves, borrows, or modification of `*f` until the borrow ends
f(f(v))
^
note: previous borrow ends here
f(f(v))
^
</code></pre></div>
<p dir="auto">(The repetition is in the original.)</p>
<p dir="auto">If I'm reading the notes here correctly, it seems that a call like <code class="notranslate">closure(args...)</code> borrows <code class="notranslate">closure</code> before evaluating <code class="notranslate">args...</code>, so that <code class="notranslate">args...</code> itself is not allowed to refer to <code class="notranslate">closure</code>. Is it really necessary to borrow closure so early? Can't we give the borrow a scope that starts after the arguments have been evaluated?</p>
<p dir="auto">Using: rustc 1.2.0-nightly (<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/rust-lang/rust/commit/d6c8028ce0eaf18abb67e4e2dafc5aae2e6e91de/hovercard" href="https://github.com/rust-lang/rust/commit/d6c8028ce0eaf18abb67e4e2dafc5aae2e6e91de"><tt>d6c8028</tt></a> 2015-06-09)</p> | 0 |
<p dir="auto">Sorry, long issue :-)</p>
<p dir="auto">In issue <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="37810421" data-permission-text="Title is private" data-url="https://github.com/pandas-dev/pandas/issues/7750" data-hovercard-type="issue" data-hovercard-url="/pandas-dev/pandas/issues/7750/hovercard" href="https://github.com/pandas-dev/pandas/issues/7750">#7750</a> there was some heated discussion about backwards compatibility and the fact we did or did not care enough about it. I don't want to start a new discussion on that topic again, rest assured (or not now :-)), but notwithstanding the at some point rather personal attacks in that discussion, I think we still should look at what we can learn from it.<br>
And what I learned is that we can do a <em>better</em> job at documenting <em>backward incompatible changes</em>.</p>
<ul dir="auto">
<li>We have no clear overview of these changes (and I am really speaking about 'changes for which users will have to change their code to keep it running/working correctly')</li>
<li>In the whatsnew docs, there is the "API changes" section, which you could assume is about such kind of changes. In practice however, we made it a mix of enhancements (which are of course also api changes in se, as they 'change (add to) the api', but that fact is not really relevant) and breaking api changes.
<ul dir="auto">
<li>eg the current api changes section: <a href="http://pandas-docs.github.io/pandas-docs-travis/whatsnew.html#api-changes" rel="nofollow">http://pandas-docs.github.io/pandas-docs-travis/whatsnew.html#api-changes</a>. Second point (addition of <code class="notranslate">level</code> keyword) is an enhancement, not a breaking api change, as with a lot of the other bullet points. For this reason, the 'real' breaking api changes disappear a bit between all the others.</li>
</ul>
</li>
<li>deprecations are in a seperate section, but are also a kind of api changes</li>
</ul>
<hr>
<p dir="auto"><strong>What I propose</strong>:</p>
<ol dir="auto">
<li>a better stuctured whatsnew, with a more strict structure</li>
<li>limit the 'API changes' section to backwards incompatible changes, the rest are new features/enhancements (keep a clear distinction)</li>
<li>for each backwards incompatible change, very clearly explain: what was the previous behaviour? what is the new behaviour? How can I keep the old behaviour? What should I do to update my code to keep it working?</li>
</ol>
<p dir="auto">Some examples of other libraries: Scipy speaks about "<em>Backwards incompatible changes</em>" (<a href="http://docs.scipy.org/doc/scipy-0.14.0/reference/release.0.14.0.html" rel="nofollow">http://docs.scipy.org/doc/scipy-0.14.0/reference/release.0.14.0.html</a>), scikit-learn about "<em>API changes summary</em>" (<a href="http://scikit-learn.org/stable/whats_new.html" rel="nofollow">http://scikit-learn.org/stable/whats_new.html</a>), sqlalchemy about "<em>Behavioral changes</em>" (<a href="http://docs.sqlalchemy.org/en/rel_0_9/changelog/migration_09.html#behavioral-changes-orm-09" rel="nofollow">http://docs.sqlalchemy.org/en/rel_0_9/changelog/migration_09.html#behavioral-changes-orm-09</a>) and matlab about "<em>Compatibility considerations</em>" (<a href="http://www.mathworks.nl/help/matlab/release-notes.html" rel="nofollow">http://www.mathworks.nl/help/matlab/release-notes.html</a>).</p>
<p dir="auto">A possible structure (in the past, in pandas there was also a more rigid structure with new features/api changes):</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="1. New features
1.1 ... (subsections highlighting bigger new features)
1.2 Categoricals
1.3 Timedelta(Index)
1.4 .dt accessor
1.5 ....
2. Backwards incompatible API changes
2.1 Breaking changes
2.2 Deprecations
2.3 Removal previously deprecated (prior version deprecations)
3. Other enhancements
4. Performance improvements
5. Bug fixes"><pre class="notranslate"><code class="notranslate">1. New features
1.1 ... (subsections highlighting bigger new features)
1.2 Categoricals
1.3 Timedelta(Index)
1.4 .dt accessor
1.5 ....
2. Backwards incompatible API changes
2.1 Breaking changes
2.2 Deprecations
2.3 Removal previously deprecated (prior version deprecations)
3. Other enhancements
4. Performance improvements
5. Bug fixes
</code></pre></div>
<p dir="auto">For comparison, the current table of contents for 0.15 whatsnew</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="API changes
Memory Usage
.dt accessor
Timezone API changes
Rolling/Expanding Moments API changes
Internal Refactoring
Categoricals in Series/DataFrame
TimedeltaIndex/Scalar
Prior Version Deprecations/Changes
Deprecations
Enhancements
Performance
Bug Fixes"><pre class="notranslate"><code class="notranslate">API changes
Memory Usage
.dt accessor
Timezone API changes
Rolling/Expanding Moments API changes
Internal Refactoring
Categoricals in Series/DataFrame
TimedeltaIndex/Scalar
Prior Version Deprecations/Changes
Deprecations
Enhancements
Performance
Bug Fixes
</code></pre></div>
<p dir="auto">Some points of dicussion:</p>
<ul dir="auto">
<li>'api changes' section before new features instead of after?</li>
<li>'other enhancements' as subsection in 'new features'</li>
<li>how to name the 'backwards incompatible API changes' (other options like behavioral changes, compatibility considerations, breaking API changes, ...)</li>
<li>and of course the general idea I describe in this issue</li>
</ul>
<p dir="auto">Thoughts?</p> | <p dir="auto">When you are working with a large array, it is not printed out in its entirety in the console, but when you have grouped them with <code class="notranslate">groupby('key')</code>, the groups are all printed out. Would it be possible to also restrict the output of <code class="notranslate">groupby('key').groups</code> to eg the first and last groups?</p>
<p dir="auto">I was working with a rather large dataframe (around 80000 rows), and first it took a long time to print it all, and second the console got stuck for a while (but that could also be an issue with spyder).<br>
I know it is not very useful to print out the groups, but I was curious to see what it would look like, but it was not a very good idea with such a large array.</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=">>> import numpy as np
>>> import pandas as pd
>>> df = pd.DataFrame(np.random.randn(100000, 4), columns=list('abcd'))
>>> df['g'] = np.random.randint(0, 100, 100000)
>>> df.groupby('g').groups # this repr should be truncated"><pre class="notranslate"><span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-k">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span>
<span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-k">import</span> <span class="pl-s1">pandas</span> <span class="pl-k">as</span> <span class="pl-s1">pd</span>
<span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">df</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">DataFrame</span>(<span class="pl-s1">np</span>.<span class="pl-s1">random</span>.<span class="pl-en">randn</span>(<span class="pl-c1">100000</span>, <span class="pl-c1">4</span>), <span class="pl-s1">columns</span><span class="pl-c1">=</span><span class="pl-en">list</span>(<span class="pl-s">'abcd'</span>))
<span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">df</span>[<span class="pl-s">'g'</span>] <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-s1">random</span>.<span class="pl-en">randint</span>(<span class="pl-c1">0</span>, <span class="pl-c1">100</span>, <span class="pl-c1">100000</span>)
<span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">df</span>.<span class="pl-en">groupby</span>(<span class="pl-s">'g'</span>).<span class="pl-s1">groups</span> <span class="pl-c"># this repr should be truncated</span></pre></div> | 0 |
<pre class="notranslate">For example,
--- PASS: TestConnectionlessWriteTooLongError (0.00 seconds)
write_test.go:89: 65536 bytes write udp4: message too long
write_test.go:110: 65536 bytes write udp4: message too long
write_test.go:89: 65536 bytes write udp6: message too long
write_test.go:110: 65536 bytes write udp6: message too long
write_test.go:89: 1048576 bytes write unixgram: message too long
write_test.go:110: 1048576 bytes write unixgram: message too long
instead of
--- PASS: TestConnectionlessWriteTooLongError (0.00 seconds)
write_test.go:89: 65536 bytes write udp4 127.0.0.1:33494: message too long
write_test.go:110: 65536 bytes write udp4 127.0.0.1:33494: message too long
write_test.go:89: 65536 bytes write udp6 [::1]:42353: message too long
write_test.go:110: 65536 bytes write udp6 [::1]:42353: message too long
write_test.go:89: 1048576 bytes write unixgram /tmp/nettest925274809:: message too long
write_test.go:110: 1048576 bytes write unixgram /tmp/nettest925274809:: message too long
The root cause is <a href="https://golang.org/issue/4856" rel="nofollow">issue #4856</a>.</pre> | <p dir="auto">by <strong>dean.w.schulze</strong>:</p>
<pre class="notranslate">1. Create a package and a test for the package in a deep directory structure (for me
this happens with 127 character path)
2. Run "go test" in that directory from the DOS prompt
What is the expected output?
Success or failure from the go test
What do you see instead?
An error from DOS indicating that the temporary directory structure is too deep.
Which compiler are you using (5g, 6g, 8g, gccgo)?
Which operating system are you using?
Windows 7 Pro 64-bit
Which version are you using? (run 'go version')
go version go1.1.2 windows/amd64
Please provide any additional information below.
Here is my command line and the output:
c:\dean\courses\algorithms-stanford\design.and.analysis.of.algorithms.1\programm
ing-questions\common\code\golang\src\algoutils>go test
# _/c_/dean/courses/algorithms-stanford/design.and.analysis.of.algorithms.1/prog
ramming-questions/common/code/golang/src/algoutils
mkdir C:\Users\dean\AppData\Local\Temp\go-build651070751\_\c_\dean\courses\algor
ithms-stanford\design.and.analysis.of.algorithms.1\programming-questions\common\
code\golang\src\algoutils\_test\_\c_\dean\courses\algorithms-stanford\design.and
.analysis.of.algorithms.1: The filename or extension is too long.
The Windows API has a problem with path names longer than 255 characters, unless the
path starts with "\\?\"
<a href="http://msdn.microsoft.com/en-us/library/windows/desktop/aa365247(v=vs.85).aspx#maxpath" rel="nofollow">http://msdn.microsoft.com/en-us/library/windows/desktop/aa365247(v=vs.85).aspx#maxpath</a></pre> | 0 |
<h2 dir="auto">Steps to Reproduce</h2>
<p dir="auto">I selected text in a multi line Text Field and tested copy and pasting text and I moved the selection handles than I got this exception:<br>
Note: The textfield is in scrollView and grows when lines are added until it reaches maxheights. Than it starts scrolling.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" Scrollbar _renderInputField(BuildContext context) => new Scrollbar(
child: new SingleChildScrollView(
scrollDirection: Axis.vertical,
reverse: true,
child: new TextField(
focusNode: _textFieldFocusNode,
style: _appContext.customTheme.textInputStyle,
autofocus: true,
controller: _textController,
autocorrect: true,
onChanged: (text) {
// The first future does not have the
// updated height value of the text input field.
// On the second one the size is
// correctly updated. The height
// is necessary to update the
// scroll offset in the [ChatMessageListWidget]
new Future.delayed(
const Duration(milliseconds: 60),
() => setState(() {
updateAppContext(context);
})).then((_) => new Future.delayed(
const Duration(milliseconds: 60),
() => setState(() {
updateAppContext(context);
})));
groupController.messageComposeController.textChanged(text);
},
onSubmitted: _submitTextMessage,
maxLines: null, //unlimited lines
decoration: new InputDecoration.collapsed(
hintText:
/* _textFieldFocusNode.hasFocus
? 'has focus'
: */
'Send a message',
hintStyle: _customTheme.textInputHintStyle))));"><pre class="notranslate"><code class="notranslate"> Scrollbar _renderInputField(BuildContext context) => new Scrollbar(
child: new SingleChildScrollView(
scrollDirection: Axis.vertical,
reverse: true,
child: new TextField(
focusNode: _textFieldFocusNode,
style: _appContext.customTheme.textInputStyle,
autofocus: true,
controller: _textController,
autocorrect: true,
onChanged: (text) {
// The first future does not have the
// updated height value of the text input field.
// On the second one the size is
// correctly updated. The height
// is necessary to update the
// scroll offset in the [ChatMessageListWidget]
new Future.delayed(
const Duration(milliseconds: 60),
() => setState(() {
updateAppContext(context);
})).then((_) => new Future.delayed(
const Duration(milliseconds: 60),
() => setState(() {
updateAppContext(context);
})));
groupController.messageComposeController.textChanged(text);
},
onSubmitted: _submitTextMessage,
maxLines: null, //unlimited lines
decoration: new InputDecoration.collapsed(
hintText:
/* _textFieldFocusNode.hasFocus
? 'has focus'
: */
'Send a message',
hintStyle: _customTheme.textInputHintStyle))));
</code></pre></div>
<h2 dir="auto">Logs</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[ +1 ms] W/IInputConnectionWrapper(23423): getTextAfterCursor on inactive InputConnection
[ ] W/IInputConnectionWrapper(23423): getSelectedText on inactive InputConnection
[ ] W/IInputConnectionWrapper(23423): endBatchEdit on inactive InputConnection
[ +35 ms] W/IInputConnectionWrapper(23423): getCursorCapsMode on inactive InputConnection
[ ] W/IInputConnectionWrapper(23423): beginBatchEdit on inactive InputConnection
[ ] W/IInputConnectionWrapper(23423): getTextBeforeCursor on inactive InputConnection
[ ] W/IInputConnectionWrapper(23423): getTextAfterCursor on inactive InputConnection
[ ] W/IInputConnectionWrapper(23423): getSelectedText on inactive InputConnection
[ ] W/IInputConnectionWrapper(23423): endBatchEdit on inactive InputConnection
[+17637 ms] W/IInputConnectionWrapper(23423): getCursorCapsMode on inactive InputConnection
[+6977 ms] W/IInputConnectionWrapper(23423): getCursorCapsMode on inactive InputConnection
[+7686 ms] W/IInputConnectionWrapper(23423): getCursorCapsMode on inactive InputConnection
[+18498 ms] W/IInputConnectionWrapper(23423): getCursorCapsMode on inactive InputConnection
[+30263 ms] I/flutter (23423): 1973 2018-01-31 21:40:37.134404 SEVERE lookatmybaby_flutter.sentry_error_reporter: Context: building _OverlayEntry-[LabeledGlobalKey<_OverlayEntryState>#5b2d4](dirty, state: _OverlayEntryState#da995), library: widgets library
[ ] I/flutter (23423): error: 'package:flutter/src/rendering/box.dart': Failed assertion: line 1457 pos 18: 'debugDoingThisResize || debugDoingThisLayout ||
[ ] I/flutter (23423): (RenderObject.debugActiveLayout == parent && _size._canBeUsedByParent)': is not true.
[ +624 ms] I/flutter (23423): #0 _AssertionError._doThrowNew (dart:core-patch/dart:core/errors_patch.dart:37)
[ ] I/flutter (23423): #1 _AssertionError._throwNew (dart:core-patch/dart:core/errors_patch.dart:33)
[ ] I/flutter (23423): #2 RenderBox.size.<anonymous closure> (package:flutter/src/rendering/box.dart:1457:18)
[ ] I/flutter (23423): #3 RenderBox.size (package:flutter/src/rendering/box.dart:1463:6)
[ ] I/flutter (23423): #4 RenderFractionalTranslation.applyPaintTransform (package:flutter/src/rendering/proxy_box.dart:2309:24)
[ ] I/flutter (23423): #5 RenderObject.getTransformTo (package:flutter/src/rendering/object.dart:2094:24)
[ ] I/flutter (23423): #6 RenderBox.localToGlobal (package:flutter/src/rendering/box.dart:1955:39)
[ ] I/flutter (23423): #7 TextSelectionOverlay._buildToolbar (package:flutter/src/widgets/text_selection.dart:365:20)
[ ] I/flutter (23423): #8 _OverlayEntryState.build (package:flutter/src/widgets/overlay.dart:170:25)
[ ] I/flutter (23423): #9 StatefulElement.build (package:flutter/src/widgets/framework.dart:3690:27)
[ ] I/flutter (23423): #10 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3602:15)
[ ] I/flutter (23423): #11 Element.rebuild (package:flutter/src/widgets/
[+3001 ms] I/flutter (23423): 1979 2018-01-31 21:40:40.763189 SEVERE lookatmybaby_flutter.sentry_error_reporter: Context: building _OverlayEntry-[LabeledGlobalKey<_OverlayEntryState>#5b2d4](dirty, state: _OverlayEntryState#da995), library: widgets library
[ ] I/flutter (23423): error: 'package:flutter/src/rendering/box.dart': Failed assertion: line 1457 pos 18: 'debugDoingThisResize || debugDoingThisLayout ||
[ ] I/flutter (23423): (RenderObject.debugActiveLayout == parent && _size._canBeUsedByParent)': is not true.
[ +789 ms] I/flutter (23423): #0 _AssertionError._doThrowNew (dart:core-patch/dart:core/errors_patch.dart:37)
[ ] I/flutter (23423): #1 _AssertionError._throwNew (dart:core-patch/dart:core/errors_patch.dart:33)
[ ] I/flutter (23423): #2 RenderBox.size.<anonymous closure> (package:flutter/src/rendering/box.dart:1457:18)
[ ] I/flutter (23423): #3 RenderBox.size (package:flutter/src/rendering/box.dart:1463:6)
[ ] I/flutter (23423): #4 RenderFractionalTranslation.applyPaintTransform (package:flutter/src/rendering/proxy_box.dart:2309:24)
[ ] I/flutter (23423): #5 RenderObject.getTransformTo (package:flutter/src/rendering/object.dart:2094:24)
[ ] I/flutter (23423): #6 RenderBox.localToGlobal (package:flutter/src/rendering/box.dart:1955:39)
[ ] I/flutter (23423): #7 TextSelectionOverlay._buildToolbar (package:flutter/src/widgets/text_selection.dart:365:20)
[ ] I/flutter (23423): #8 _OverlayEntryState.build (package:flutter/src/widgets/overlay.dart:170:25)
[ ] I/flutter (23423): #9 StatefulElement.build (package:flutter/src/widgets/framework.dart:3690:27)
[ ] I/flutter (23423): #10 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3602:15)
[ ] I/flutter (23423): #11 Element.rebuild (package:flutter/src/widgets/
[ +795 ms] I/flutter (23423): 1982 2018-01-31 21:40:42.349744 SEVERE lookatmybaby_flutter.sentry_error_reporter: Context: during layout, library: rendering library
[ ] I/flutter (23423): error: A RenderFlex overflowed by 128 pixels on the bottom."><pre class="notranslate"><code class="notranslate">[ +1 ms] W/IInputConnectionWrapper(23423): getTextAfterCursor on inactive InputConnection
[ ] W/IInputConnectionWrapper(23423): getSelectedText on inactive InputConnection
[ ] W/IInputConnectionWrapper(23423): endBatchEdit on inactive InputConnection
[ +35 ms] W/IInputConnectionWrapper(23423): getCursorCapsMode on inactive InputConnection
[ ] W/IInputConnectionWrapper(23423): beginBatchEdit on inactive InputConnection
[ ] W/IInputConnectionWrapper(23423): getTextBeforeCursor on inactive InputConnection
[ ] W/IInputConnectionWrapper(23423): getTextAfterCursor on inactive InputConnection
[ ] W/IInputConnectionWrapper(23423): getSelectedText on inactive InputConnection
[ ] W/IInputConnectionWrapper(23423): endBatchEdit on inactive InputConnection
[+17637 ms] W/IInputConnectionWrapper(23423): getCursorCapsMode on inactive InputConnection
[+6977 ms] W/IInputConnectionWrapper(23423): getCursorCapsMode on inactive InputConnection
[+7686 ms] W/IInputConnectionWrapper(23423): getCursorCapsMode on inactive InputConnection
[+18498 ms] W/IInputConnectionWrapper(23423): getCursorCapsMode on inactive InputConnection
[+30263 ms] I/flutter (23423): 1973 2018-01-31 21:40:37.134404 SEVERE lookatmybaby_flutter.sentry_error_reporter: Context: building _OverlayEntry-[LabeledGlobalKey<_OverlayEntryState>#5b2d4](dirty, state: _OverlayEntryState#da995), library: widgets library
[ ] I/flutter (23423): error: 'package:flutter/src/rendering/box.dart': Failed assertion: line 1457 pos 18: 'debugDoingThisResize || debugDoingThisLayout ||
[ ] I/flutter (23423): (RenderObject.debugActiveLayout == parent && _size._canBeUsedByParent)': is not true.
[ +624 ms] I/flutter (23423): #0 _AssertionError._doThrowNew (dart:core-patch/dart:core/errors_patch.dart:37)
[ ] I/flutter (23423): #1 _AssertionError._throwNew (dart:core-patch/dart:core/errors_patch.dart:33)
[ ] I/flutter (23423): #2 RenderBox.size.<anonymous closure> (package:flutter/src/rendering/box.dart:1457:18)
[ ] I/flutter (23423): #3 RenderBox.size (package:flutter/src/rendering/box.dart:1463:6)
[ ] I/flutter (23423): #4 RenderFractionalTranslation.applyPaintTransform (package:flutter/src/rendering/proxy_box.dart:2309:24)
[ ] I/flutter (23423): #5 RenderObject.getTransformTo (package:flutter/src/rendering/object.dart:2094:24)
[ ] I/flutter (23423): #6 RenderBox.localToGlobal (package:flutter/src/rendering/box.dart:1955:39)
[ ] I/flutter (23423): #7 TextSelectionOverlay._buildToolbar (package:flutter/src/widgets/text_selection.dart:365:20)
[ ] I/flutter (23423): #8 _OverlayEntryState.build (package:flutter/src/widgets/overlay.dart:170:25)
[ ] I/flutter (23423): #9 StatefulElement.build (package:flutter/src/widgets/framework.dart:3690:27)
[ ] I/flutter (23423): #10 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3602:15)
[ ] I/flutter (23423): #11 Element.rebuild (package:flutter/src/widgets/
[+3001 ms] I/flutter (23423): 1979 2018-01-31 21:40:40.763189 SEVERE lookatmybaby_flutter.sentry_error_reporter: Context: building _OverlayEntry-[LabeledGlobalKey<_OverlayEntryState>#5b2d4](dirty, state: _OverlayEntryState#da995), library: widgets library
[ ] I/flutter (23423): error: 'package:flutter/src/rendering/box.dart': Failed assertion: line 1457 pos 18: 'debugDoingThisResize || debugDoingThisLayout ||
[ ] I/flutter (23423): (RenderObject.debugActiveLayout == parent && _size._canBeUsedByParent)': is not true.
[ +789 ms] I/flutter (23423): #0 _AssertionError._doThrowNew (dart:core-patch/dart:core/errors_patch.dart:37)
[ ] I/flutter (23423): #1 _AssertionError._throwNew (dart:core-patch/dart:core/errors_patch.dart:33)
[ ] I/flutter (23423): #2 RenderBox.size.<anonymous closure> (package:flutter/src/rendering/box.dart:1457:18)
[ ] I/flutter (23423): #3 RenderBox.size (package:flutter/src/rendering/box.dart:1463:6)
[ ] I/flutter (23423): #4 RenderFractionalTranslation.applyPaintTransform (package:flutter/src/rendering/proxy_box.dart:2309:24)
[ ] I/flutter (23423): #5 RenderObject.getTransformTo (package:flutter/src/rendering/object.dart:2094:24)
[ ] I/flutter (23423): #6 RenderBox.localToGlobal (package:flutter/src/rendering/box.dart:1955:39)
[ ] I/flutter (23423): #7 TextSelectionOverlay._buildToolbar (package:flutter/src/widgets/text_selection.dart:365:20)
[ ] I/flutter (23423): #8 _OverlayEntryState.build (package:flutter/src/widgets/overlay.dart:170:25)
[ ] I/flutter (23423): #9 StatefulElement.build (package:flutter/src/widgets/framework.dart:3690:27)
[ ] I/flutter (23423): #10 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3602:15)
[ ] I/flutter (23423): #11 Element.rebuild (package:flutter/src/widgets/
[ +795 ms] I/flutter (23423): 1982 2018-01-31 21:40:42.349744 SEVERE lookatmybaby_flutter.sentry_error_reporter: Context: during layout, library: rendering library
[ ] I/flutter (23423): error: A RenderFlex overflowed by 128 pixels on the bottom.
</code></pre></div>
<h2 dir="auto">Flutter Doctor</h2>
<p dir="auto">I used the Moto5 G below</p>
<p dir="auto">C:\Projects\lambDev\lookatmybaby_flutter>flutter doctor<br>
[√] Flutter (on Microsoft Windows [Version 10.0.16299.192], locale en-US, channel dev)<br>
• Flutter version 0.0.21 at c:\sdks\flutter<br>
• Framework revision <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/flutter/flutter/commit/2e449f06f0a3be076e336ad6b30b0e9ec99dbdfe/hovercard" href="https://github.com/flutter/flutter/commit/2e449f06f0a3be076e336ad6b30b0e9ec99dbdfe"><tt>2e449f0</tt></a> (2 days ago), 2018-01-29 14:26:51 -0800<br>
• Engine revision <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/flutter/flutter/commit/6921873c71e700235c0f68f0359be2332f93c8bc/hovercard" href="https://github.com/flutter/flutter/commit/6921873c71e700235c0f68f0359be2332f93c8bc"><tt>6921873</tt></a><br>
• Tools Dart version 2.0.0-dev.16.0<br>
• Engine Dart version 2.0.0-edge.da1f52592ef73fe3afa485385cb995b9aec0181a</p>
<p dir="auto">[√] Android toolchain - develop for Android devices (Android SDK 27.0.2)<br>
• Android SDK at C:\Users\ride4\AppData\Local\Android\sdk<br>
• Android NDK location not configured (optional; useful for native profiling support)<br>
• Platform android-27, build-tools 27.0.2<br>
• Java binary at: C:\Program Files\Android\Android Studio\jre\bin\java<br>
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-915-b01)</p>
<p dir="auto">[√] Android Studio (version 3.0)<br>
• Android Studio at C:\Program Files\Android\Android Studio<br>
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-915-b01)</p>
<p dir="auto">[√] IntelliJ IDEA Community Edition (version 2017.2)<br>
• Flutter plugin version 19.1<br>
• Dart plugin version 172.4343.25</p>
<p dir="auto">[√] Connected devices<br>
• Moto G 5 Plus • ZY224DHFWG • android-arm • Android 7.0 (API 24)<br>
• Android SDK built for x86 • emulator-5554 • android-x86 • Android 7.1.1 (API 25) (emulator)</p> | <h2 dir="auto">Steps to Reproduce</h2>
<p dir="auto">Resizing a flutter app in large amounts most of the time causes a crash.<br>
Starting in freeform mode and resizing small amounts seems to be ok, but larger amounts or changing an app from fullscreen to split/freeform causes a crash.</p>
<h2 dir="auto">Flutter Doctor</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[✓] Flutter (on Linux, channel alpha)
• Flutter at /home/dakun/dev/git/flutter/flutter
• Framework revision 9a0a0d9903 (13 days ago), engine revision f8d80c4617
[✓] Android toolchain - develop for Android devices (Android SDK 24.0.1)
• Android SDK at /home/dakun/dev/android-sdk-linux
• Platform android-24, build-tools 24.0.1
• OpenJDK Runtime Environment (build 9-internal+0-2016-04-14-195246.buildd.src)"><pre class="notranslate"><code class="notranslate">[✓] Flutter (on Linux, channel alpha)
• Flutter at /home/dakun/dev/git/flutter/flutter
• Framework revision 9a0a0d9903 (13 days ago), engine revision f8d80c4617
[✓] Android toolchain - develop for Android devices (Android SDK 24.0.1)
• Android SDK at /home/dakun/dev/android-sdk-linux
• Platform android-24, build-tools 24.0.1
• OpenJDK Runtime Environment (build 9-internal+0-2016-04-14-195246.buildd.src)
</code></pre></div>
<h2 dir="auto">Logs and Crash Reports</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="E/AndroidRuntime: FATAL EXCEPTION: main
E/AndroidRuntime: Process: com.yourcompany.myapp, PID: 28749
E/AndroidRuntime: java.lang.RuntimeException: Unable to start activity ComponentInfo{com.yourcompany.myapp/org.domokit.sky.shell.SkyActivity}: java.lang.NullPointerException: Attempt to invoke interface method 'void org.chromium.mojom.mojo.ServiceProvider$Proxy.connectToService(java.lang.String, org.chromium.mojo.system.MessagePipeHandle)' on a null object reference
E/AndroidRuntime: at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2646)
E/AndroidRuntime: at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2707)
E/AndroidRuntime: at android.app.ActivityThread.handleRelaunchActivity(ActivityThread.java:4483)
E/AndroidRuntime: at android.app.ActivityThread.-wrap19(ActivityThread.java)
E/AndroidRuntime: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1466)
E/AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:102)
E/AndroidRuntime: at android.os.Looper.loop(Looper.java:154)
E/AndroidRuntime: at android.app.ActivityThread.main(ActivityThread.java:6077)
E/AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method)
E/AndroidRuntime: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:865)
E/AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:755)
E/AndroidRuntime: Caused by: java.lang.NullPointerException: Attempt to invoke interface method 'void org.chromium.mojom.mojo.ServiceProvider$Proxy.connectToService(java.lang.String, org.chromium.mojo.system.MessagePipeHandle)' on a null object reference
E/AndroidRuntime: at io.flutter.view.FlutterView.createSemanticsServer(FlutterView.java:563)
E/AndroidRuntime: at io.flutter.view.FlutterView.ensureAccessibilityEnabled(FlutterView.java:555)
E/AndroidRuntime: at io.flutter.view.FlutterView.onAttachedToWindow(FlutterView.java:500)
E/AndroidRuntime: at android.view.View.dispatchAttachedToWindow(View.java:15391)
E/AndroidRuntime: at android.view.ViewGroup.addViewInner(ViewGroup.java:4493)
E/AndroidRuntime: at android.view.ViewGroup.addView(ViewGroup.java:4295)
E/AndroidRuntime: at android.view.ViewGroup.addView(ViewGroup.java:4267)
E/AndroidRuntime: at com.android.internal.policy.PhoneWindow.setContentView(PhoneWindow.java:445)
E/AndroidRuntime: at com.android.internal.policy.PhoneWindow.setContentView(PhoneWindow.java:426)
E/AndroidRuntime: at android.app.Activity.setContentView(Activity.java:2434)
E/AndroidRuntime: at org.domokit.sky.shell.SkyActivity.onCreate(SkyActivity.java:74)
E/AndroidRuntime: at android.app.Activity.performCreate(Activity.java:6664)
E/AndroidRuntime: at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1118)
E/AndroidRuntime: at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2599)
E/AndroidRuntime: ... 10 more
W/ActivityManager: Force finishing activity com.yourcompany.myapp/org.domokit.sky.shell.SkyActivity
W/ActivityManager: Force finishing activity com.yourcompany.myapp/org.domokit.sky.shell.SkyActivity
W/ActivityManager: Duplicate finish request for ActivityRecord{8610e5f u0 com.yourcompany.myapp/org.domokit.sky.shell.SkyActivity t6845 f}
W/ActivityManager: Activity pause timeout for ActivityRecord{8610e5f u0 com.yourcompany.myapp/org.domokit.sky.shell.SkyActivity t6845 f}"><pre class="notranslate"><code class="notranslate">E/AndroidRuntime: FATAL EXCEPTION: main
E/AndroidRuntime: Process: com.yourcompany.myapp, PID: 28749
E/AndroidRuntime: java.lang.RuntimeException: Unable to start activity ComponentInfo{com.yourcompany.myapp/org.domokit.sky.shell.SkyActivity}: java.lang.NullPointerException: Attempt to invoke interface method 'void org.chromium.mojom.mojo.ServiceProvider$Proxy.connectToService(java.lang.String, org.chromium.mojo.system.MessagePipeHandle)' on a null object reference
E/AndroidRuntime: at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2646)
E/AndroidRuntime: at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2707)
E/AndroidRuntime: at android.app.ActivityThread.handleRelaunchActivity(ActivityThread.java:4483)
E/AndroidRuntime: at android.app.ActivityThread.-wrap19(ActivityThread.java)
E/AndroidRuntime: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1466)
E/AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:102)
E/AndroidRuntime: at android.os.Looper.loop(Looper.java:154)
E/AndroidRuntime: at android.app.ActivityThread.main(ActivityThread.java:6077)
E/AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method)
E/AndroidRuntime: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:865)
E/AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:755)
E/AndroidRuntime: Caused by: java.lang.NullPointerException: Attempt to invoke interface method 'void org.chromium.mojom.mojo.ServiceProvider$Proxy.connectToService(java.lang.String, org.chromium.mojo.system.MessagePipeHandle)' on a null object reference
E/AndroidRuntime: at io.flutter.view.FlutterView.createSemanticsServer(FlutterView.java:563)
E/AndroidRuntime: at io.flutter.view.FlutterView.ensureAccessibilityEnabled(FlutterView.java:555)
E/AndroidRuntime: at io.flutter.view.FlutterView.onAttachedToWindow(FlutterView.java:500)
E/AndroidRuntime: at android.view.View.dispatchAttachedToWindow(View.java:15391)
E/AndroidRuntime: at android.view.ViewGroup.addViewInner(ViewGroup.java:4493)
E/AndroidRuntime: at android.view.ViewGroup.addView(ViewGroup.java:4295)
E/AndroidRuntime: at android.view.ViewGroup.addView(ViewGroup.java:4267)
E/AndroidRuntime: at com.android.internal.policy.PhoneWindow.setContentView(PhoneWindow.java:445)
E/AndroidRuntime: at com.android.internal.policy.PhoneWindow.setContentView(PhoneWindow.java:426)
E/AndroidRuntime: at android.app.Activity.setContentView(Activity.java:2434)
E/AndroidRuntime: at org.domokit.sky.shell.SkyActivity.onCreate(SkyActivity.java:74)
E/AndroidRuntime: at android.app.Activity.performCreate(Activity.java:6664)
E/AndroidRuntime: at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1118)
E/AndroidRuntime: at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2599)
E/AndroidRuntime: ... 10 more
W/ActivityManager: Force finishing activity com.yourcompany.myapp/org.domokit.sky.shell.SkyActivity
W/ActivityManager: Force finishing activity com.yourcompany.myapp/org.domokit.sky.shell.SkyActivity
W/ActivityManager: Duplicate finish request for ActivityRecord{8610e5f u0 com.yourcompany.myapp/org.domokit.sky.shell.SkyActivity t6845 f}
W/ActivityManager: Activity pause timeout for ActivityRecord{8610e5f u0 com.yourcompany.myapp/org.domokit.sky.shell.SkyActivity t6845 f}
</code></pre></div> | 0 |
<div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="enum FingerTree<A> {
Empty,
Single(A),
Deep(Node<A>)
}
struct Node<A> {
count: int,
front: Digit<A>,
inner: ~FingerTree<(A,A)>,
back: Digit<A>
}
struct Digit<A> {
count: int,
content: [Option<A>, ..4]
}
fn FingerTree<A>() -> FingerTree<A> { Empty }"><pre class="notranslate"><span class="pl-k">enum</span> <span class="pl-smi">FingerTree</span><span class="pl-kos"><</span><span class="pl-smi">A</span><span class="pl-kos">></span> <span class="pl-kos">{</span>
<span class="pl-v">Empty</span><span class="pl-kos">,</span>
<span class="pl-v">Single</span><span class="pl-kos">(</span><span class="pl-smi">A</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-v">Deep</span><span class="pl-kos">(</span><span class="pl-smi">Node</span><span class="pl-kos"><</span><span class="pl-smi">A</span><span class="pl-kos">></span><span class="pl-kos">)</span>
<span class="pl-kos">}</span>
<span class="pl-k">struct</span> <span class="pl-smi">Node</span><span class="pl-kos"><</span><span class="pl-smi">A</span><span class="pl-kos">></span> <span class="pl-kos">{</span>
<span class="pl-c1">count</span><span class="pl-kos">:</span> <span class="pl-smi">int</span><span class="pl-kos">,</span>
<span class="pl-c1">front</span><span class="pl-kos">:</span> <span class="pl-smi">Digit</span><span class="pl-kos"><</span><span class="pl-smi">A</span><span class="pl-kos">></span><span class="pl-kos">,</span>
<span class="pl-c1">inner</span><span class="pl-kos">:</span> ~<span class="pl-smi">FingerTree</span><span class="pl-kos"><</span><span class="pl-kos">(</span><span class="pl-smi">A</span><span class="pl-kos">,</span><span class="pl-smi">A</span><span class="pl-kos">)</span><span class="pl-kos">></span><span class="pl-kos">,</span>
<span class="pl-c1">back</span><span class="pl-kos">:</span> <span class="pl-smi">Digit</span><span class="pl-kos"><</span><span class="pl-smi">A</span><span class="pl-kos">></span>
<span class="pl-kos">}</span>
<span class="pl-k">struct</span> <span class="pl-smi">Digit</span><span class="pl-kos"><</span><span class="pl-smi">A</span><span class="pl-kos">></span> <span class="pl-kos">{</span>
<span class="pl-c1">count</span><span class="pl-kos">:</span> <span class="pl-smi">int</span><span class="pl-kos">,</span>
<span class="pl-c1">content</span><span class="pl-kos">:</span> <span class="pl-kos">[</span><span class="pl-smi">Option</span><span class="pl-kos"><</span><span class="pl-smi">A</span><span class="pl-kos">></span><span class="pl-kos">,</span> ..<span class="pl-c1">4</span><span class="pl-kos">]</span>
<span class="pl-kos">}</span>
<span class="pl-k">fn</span> <span class="pl-v">FingerTree</span><span class="pl-kos"><</span><span class="pl-smi">A</span><span class="pl-kos">></span><span class="pl-kos">(</span><span class="pl-kos">)</span> -> <span class="pl-smi">FingerTree</span><span class="pl-kos"><</span><span class="pl-smi">A</span><span class="pl-kos">></span> <span class="pl-kos">{</span> <span class="pl-v">Empty</span> <span class="pl-kos">}</span></pre></div>
<p dir="auto">Note: <code class="notranslate">inner: ~FingerTree<(A,A)>,</code> seems to be the problematic bit. If I make it <code class="notranslate">inner: ~FingerTree<A>,</code> it will compile.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="rust: task 7f01a0105d80 ran out of stack
/usr/local/bin/../lib/librustrt.so(_ZN9rust_task13begin_failureEPKcS1_m+0x4b)[0x7f01a68cf4fb]
/usr/local/bin/../lib/librustrt.so(_ZN9rust_task9new_stackEm+0x158)[0x7f01a68cf9c8]
/usr/local/bin/../lib/librustrt.so(+0x2d0f9)[0x7f01a68e30f9]
/usr/local/bin/../lib/librustrt.so(upcall_new_stack+0x280)[0x7f01a68d3060]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(+0x782792)[0x7f01a7294792]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty14__extensions__10meth_3566210iter_bytes15_abfbbb3dea17df3_05E+0x85)[0x7f01a6ddda35]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(+0x2ddcb7)[0x7f01a6defcb7]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(+0x2db57d)[0x7f01a6ded57d]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty14fold_sty_to_ty13_f379ae3486733_05E+0xa5)[0x7f01a6df4985]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty19fold_regions_and_ty17_3db05a7d86315db93_05E+0x4cb)[0x7f01a6df668b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(+0x2e6c54)[0x7f01a6df8c54]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(+0x112a01)[0x7f01a6c24a01]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(+0x2e50ea)[0x7f01a6df70ea]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty19fold_regions_and_ty17_3db05a7d86315db93_05E+0x26a)[0x7f01a6df642a]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(+0x2e6c54)[0x7f01a6df8c54]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(+0x2e2b64)[0x7f01a6df4b64]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty14fold_sty_to_ty13_f379ae3486733_05E+0x5a)[0x7f01a6df493a]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty19fold_regions_and_ty17_3db05a7d86315db93_05E+0x4cb)[0x7f01a6df668b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(+0x2e6c54)[0x7f01a6df8c54]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty5subst17_6886f1198945c8923_05E+0x2fb)[0x7f01a6cc770b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty17lookup_field_type17_20ec4ec279466ae73_05E+0x1bb)[0x7f01a6d24e6b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(+0x30b842)[0x7f01a6e1d842]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x5e1)[0x7f01a6e00311]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
error: internal compiler error: unexpected failure
note: the compiler hit an unexpected failure path. this is a bug
note: try running with RUST_LOG=rustc=1,::rt::backtrace to get further details and report the results to github.com/mozilla/rust/issues
rust: task failed at 'explicit failure', /home/david/rust/src/librustc/rustc.rc:425
/usr/local/bin/../lib/librustrt.so(_ZN9rust_task13begin_failureEPKcS1_m+0x4b)[0x7f01a68cf4fb]
/usr/local/bin/../lib/librustrt.so(+0x2d0f9)[0x7f01a68e30f9]
/usr/local/bin/../lib/librustrt.so(upcall_fail+0x1b0)[0x7f01a68d1cb0]
/usr/local/bin/../lib/libcore-c3ca5d77d81b46c1-0.5.so(+0xa2dbb)[0x7f01a807ddbb]
/usr/local/bin/../lib/libcore-c3ca5d77d81b46c1-0.5.so(+0x37b6e)[0x7f01a8012b6e]
/usr/local/bin/../lib/libcore-c3ca5d77d81b46c1-0.5.so(+0xb34d0)[0x7f01a808e4d0]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN7monitor17_3dc9d53d274031c13_05E+0x29de)[0x7f01a729153e]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(+0x7827fc)[0x7f01a72947fc]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN4main16_2fb85b4a659c4103_05E+0x86)[0x7f01a7294406]
/usr/local/bin/../lib/librustrt.so(_Z18task_start_wrapperP10spawn_args+0x24)[0x7f01a68cfd64]
rust: domain main @0xe0f1f0 root task failed
rust: task failed at 'killed', /home/david/rust/src/libcore/task/mod.rs:570
/usr/local/bin/../lib/librustrt.so(_ZN9rust_task13begin_failureEPKcS1_m+0x4b)[0x7f01a68cf4fb]
/usr/local/bin/../lib/librustrt.so(+0x2d0f9)[0x7f01a68e30f9]
/usr/local/bin/../lib/librustrt.so(upcall_fail+0x1b0)[0x7f01a68d1cb0]
/usr/local/bin/../lib/libcore-c3ca5d77d81b46c1-0.5.so(+0xa2dbb)[0x7f01a807ddbb]
/usr/local/bin/../lib/libcore-c3ca5d77d81b46c1-0.5.so(+0x37b6e)[0x7f01a8012b6e]
/usr/local/bin/../lib/libcore-c3ca5d77d81b46c1-0.5.so(_ZN4task5yield17_56812fae66173efd3_05E+0xbd)[0x7f01a803fe9d]
/usr/local/bin/../lib/libcore-c3ca5d77d81b46c1-0.5.so(+0x91c56)[0x7f01a806cc56]
/usr/local/bin/../lib/libcore-c3ca5d77d81b46c1-0.5.so(+0xb34d0)[0x7f01a808e4d0]
/usr/local/bin/../lib/libcore-c3ca5d77d81b46c1-0.5.so(_ZN7private11weaken_task17_ababfc7d1239606c3_05E+0xd9)[0x7f01a806ca99]
/usr/local/bin/../lib/libcore-c3ca5d77d81b46c1-0.5.so(+0x9198b)[0x7f01a806c98b]
/usr/local/bin/../lib/libcore-c3ca5d77d81b46c1-0.5.so(+0x8c563)[0x7f01a8067563]
/usr/local/bin/../lib/libcore-c3ca5d77d81b46c1-0.5.so(+0x7c29f)[0x7f01a805729f]
/usr/local/bin/../lib/libcore-c3ca5d77d81b46c1-0.5.so(+0xb34d0)[0x7f01a808e4d0]
/usr/local/bin/../lib/librustrt.so(_Z18task_start_wrapperP10spawn_args+0x24)[0x7f01a68cfd64]"><pre class="notranslate"><code class="notranslate">rust: task 7f01a0105d80 ran out of stack
/usr/local/bin/../lib/librustrt.so(_ZN9rust_task13begin_failureEPKcS1_m+0x4b)[0x7f01a68cf4fb]
/usr/local/bin/../lib/librustrt.so(_ZN9rust_task9new_stackEm+0x158)[0x7f01a68cf9c8]
/usr/local/bin/../lib/librustrt.so(+0x2d0f9)[0x7f01a68e30f9]
/usr/local/bin/../lib/librustrt.so(upcall_new_stack+0x280)[0x7f01a68d3060]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(+0x782792)[0x7f01a7294792]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty14__extensions__10meth_3566210iter_bytes15_abfbbb3dea17df3_05E+0x85)[0x7f01a6ddda35]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(+0x2ddcb7)[0x7f01a6defcb7]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(+0x2db57d)[0x7f01a6ded57d]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty14fold_sty_to_ty13_f379ae3486733_05E+0xa5)[0x7f01a6df4985]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty19fold_regions_and_ty17_3db05a7d86315db93_05E+0x4cb)[0x7f01a6df668b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(+0x2e6c54)[0x7f01a6df8c54]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(+0x112a01)[0x7f01a6c24a01]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(+0x2e50ea)[0x7f01a6df70ea]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty19fold_regions_and_ty17_3db05a7d86315db93_05E+0x26a)[0x7f01a6df642a]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(+0x2e6c54)[0x7f01a6df8c54]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(+0x2e2b64)[0x7f01a6df4b64]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty14fold_sty_to_ty13_f379ae3486733_05E+0x5a)[0x7f01a6df493a]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty19fold_regions_and_ty17_3db05a7d86315db93_05E+0x4cb)[0x7f01a6df668b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(+0x2e6c54)[0x7f01a6df8c54]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty5subst17_6886f1198945c8923_05E+0x2fb)[0x7f01a6cc770b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty17lookup_field_type17_20ec4ec279466ae73_05E+0x1bb)[0x7f01a6d24e6b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(+0x30b842)[0x7f01a6e1d842]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x5e1)[0x7f01a6e00311]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x3bd)[0x7f01a6e000ed]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x679)[0x7f01a6e003a9]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN6middle2ty13type_kind_ext17_a99988bff92221c13_05E+0x2fb)[0x7f01a6e0002b]
error: internal compiler error: unexpected failure
note: the compiler hit an unexpected failure path. this is a bug
note: try running with RUST_LOG=rustc=1,::rt::backtrace to get further details and report the results to github.com/mozilla/rust/issues
rust: task failed at 'explicit failure', /home/david/rust/src/librustc/rustc.rc:425
/usr/local/bin/../lib/librustrt.so(_ZN9rust_task13begin_failureEPKcS1_m+0x4b)[0x7f01a68cf4fb]
/usr/local/bin/../lib/librustrt.so(+0x2d0f9)[0x7f01a68e30f9]
/usr/local/bin/../lib/librustrt.so(upcall_fail+0x1b0)[0x7f01a68d1cb0]
/usr/local/bin/../lib/libcore-c3ca5d77d81b46c1-0.5.so(+0xa2dbb)[0x7f01a807ddbb]
/usr/local/bin/../lib/libcore-c3ca5d77d81b46c1-0.5.so(+0x37b6e)[0x7f01a8012b6e]
/usr/local/bin/../lib/libcore-c3ca5d77d81b46c1-0.5.so(+0xb34d0)[0x7f01a808e4d0]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN7monitor17_3dc9d53d274031c13_05E+0x29de)[0x7f01a729153e]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(+0x7827fc)[0x7f01a72947fc]
/usr/local/bin/../lib/librustc-c84825241471686d-0.5.so(_ZN4main16_2fb85b4a659c4103_05E+0x86)[0x7f01a7294406]
/usr/local/bin/../lib/librustrt.so(_Z18task_start_wrapperP10spawn_args+0x24)[0x7f01a68cfd64]
rust: domain main @0xe0f1f0 root task failed
rust: task failed at 'killed', /home/david/rust/src/libcore/task/mod.rs:570
/usr/local/bin/../lib/librustrt.so(_ZN9rust_task13begin_failureEPKcS1_m+0x4b)[0x7f01a68cf4fb]
/usr/local/bin/../lib/librustrt.so(+0x2d0f9)[0x7f01a68e30f9]
/usr/local/bin/../lib/librustrt.so(upcall_fail+0x1b0)[0x7f01a68d1cb0]
/usr/local/bin/../lib/libcore-c3ca5d77d81b46c1-0.5.so(+0xa2dbb)[0x7f01a807ddbb]
/usr/local/bin/../lib/libcore-c3ca5d77d81b46c1-0.5.so(+0x37b6e)[0x7f01a8012b6e]
/usr/local/bin/../lib/libcore-c3ca5d77d81b46c1-0.5.so(_ZN4task5yield17_56812fae66173efd3_05E+0xbd)[0x7f01a803fe9d]
/usr/local/bin/../lib/libcore-c3ca5d77d81b46c1-0.5.so(+0x91c56)[0x7f01a806cc56]
/usr/local/bin/../lib/libcore-c3ca5d77d81b46c1-0.5.so(+0xb34d0)[0x7f01a808e4d0]
/usr/local/bin/../lib/libcore-c3ca5d77d81b46c1-0.5.so(_ZN7private11weaken_task17_ababfc7d1239606c3_05E+0xd9)[0x7f01a806ca99]
/usr/local/bin/../lib/libcore-c3ca5d77d81b46c1-0.5.so(+0x9198b)[0x7f01a806c98b]
/usr/local/bin/../lib/libcore-c3ca5d77d81b46c1-0.5.so(+0x8c563)[0x7f01a8067563]
/usr/local/bin/../lib/libcore-c3ca5d77d81b46c1-0.5.so(+0x7c29f)[0x7f01a805729f]
/usr/local/bin/../lib/libcore-c3ca5d77d81b46c1-0.5.so(+0xb34d0)[0x7f01a808e4d0]
/usr/local/bin/../lib/librustrt.so(_Z18task_start_wrapperP10spawn_args+0x24)[0x7f01a68cfd64]
</code></pre></div> | <p dir="auto"><strong>Motivation:</strong> The <a href="http://doc.rust-lang.org/std/str/trait.StrSlice.html" rel="nofollow">StrSlice</a> trait currently has a bunch of string convenience methods, implemented for <code class="notranslate">&str</code> but not the owned <code class="notranslate">String</code>. To use them on an owned string, you need e.g. <code class="notranslate">s.as_slice().contains(needle)</code> where it seems like <code class="notranslate">s.contains(needle)</code> should be enough.</p>
<p dir="auto">It’d be nice if these methods were available on <code class="notranslate">String</code>. I’d told the answer is DST, and implementing <code class="notranslate">Deref</code> on <code class="notranslate">String</code>. But DST is not there yet. Instead…</p>
<p dir="auto"><strong>Proposal:</strong> Move all the <code class="notranslate">StrSlice</code> methods into the <a href="http://doc.rust-lang.org/std/str/trait.Str.html" rel="nofollow"><code class="notranslate">Str</code></a> trait and make them default methods based on the <code class="notranslate">.as_slice()</code> method.</p>
<p dir="auto">CC <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/alexcrichton/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/alexcrichton">@alexcrichton</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/brson/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/brson">@brson</a></p> | 0 |
<p dir="auto">Version: 1.0.0<br>
OS Version: Microsoft Windows NT 10.0.18362.0<br>
IntPtr Length: 8<br>
x64: True<br>
Date: 08/03/2020 14:28:28<br>
Exception:<br>
System.ObjectDisposedException: Cannot access a disposed object.<br>
Object name: 'Timer'.<br>
at System.Timers.Timer.set_Enabled(Boolean value)<br>
at System.Timers.Timer.Start()<br>
at PowerLauncher.MainWindow.OnVisibilityChanged(Object sender, DependencyPropertyChangedEventArgs e)<br>
at System.Windows.UIElement.RaiseDependencyPropertyChanged(EventPrivateKey key, DependencyPropertyChangedEventArgs args)<br>
at System.Windows.UIElement.OnIsVisibleChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)<br>
at System.Windows.DependencyObject.OnPropertyChanged(DependencyPropertyChangedEventArgs e)<br>
at System.Windows.FrameworkElement.OnPropertyChanged(DependencyPropertyChangedEventArgs e)<br>
at System.Windows.DependencyObject.NotifyPropertyChange(DependencyPropertyChangedEventArgs args)<br>
at System.Windows.UIElement.UpdateIsVisibleCache()<br>
at System.Windows.PresentationSource.RootChanged(Visual oldRoot, Visual newRoot)<br>
at System.Windows.Interop.HwndSource.set_RootVisualInternal(Visual value)<br>
at System.Windows.Interop.HwndSource.set_RootVisual(Visual value)<br>
at System.Windows.Window.SetRootVisual()<br>
at System.Windows.Window.SetRootVisualAndUpdateSTC()<br>
at System.Windows.Window.SetupInitialState(Double requestedTop, Double requestedLeft, Double requestedWidth, Double requestedHeight)<br>
at System.Windows.Window.CreateSourceWindow(Boolean duringShow)<br>
at System.Windows.Window.CreateSourceWindowDuringShow()<br>
at System.Windows.Window.SafeCreateWindowDuringShow()<br>
at System.Windows.Window.ShowHelper(Object booleanBox)<br>
at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)<br>
at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler)<br>
<a href="https://github.com/microsoft/PowerToys/files/5018774/2020-08-03.txt">2020-08-03.txt</a></p> | <p dir="auto">Popup tells me to give y'all this.</p>
<p dir="auto"><a href="https://github.com/microsoft/PowerToys/files/5009460/2020-07-31.txt">2020-07-31.txt</a></p>
<p dir="auto">Version: 1.0.0<br>
OS Version: Microsoft Windows NT 10.0.19041.0<br>
IntPtr Length: 8<br>
x64: True<br>
Date: 07/31/2020 17:29:59<br>
Exception:<br>
System.ObjectDisposedException: Cannot access a disposed object.<br>
Object name: 'Timer'.<br>
at System.Timers.Timer.set_Enabled(Boolean value)<br>
at System.Timers.Timer.Start()<br>
at PowerLauncher.MainWindow.OnVisibilityChanged(Object sender, DependencyPropertyChangedEventArgs e)<br>
at System.Windows.UIElement.RaiseDependencyPropertyChanged(EventPrivateKey key, DependencyPropertyChangedEventArgs args)<br>
at System.Windows.UIElement.OnIsVisibleChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)<br>
at System.Windows.DependencyObject.OnPropertyChanged(DependencyPropertyChangedEventArgs e)<br>
at System.Windows.FrameworkElement.OnPropertyChanged(DependencyPropertyChangedEventArgs e)<br>
at System.Windows.DependencyObject.NotifyPropertyChange(DependencyPropertyChangedEventArgs args)<br>
at System.Windows.UIElement.UpdateIsVisibleCache()<br>
at System.Windows.PresentationSource.RootChanged(Visual oldRoot, Visual newRoot)<br>
at System.Windows.Interop.HwndSource.set_RootVisualInternal(Visual value)<br>
at System.Windows.Interop.HwndSource.set_RootVisual(Visual value)<br>
at System.Windows.Window.SetRootVisual()<br>
at System.Windows.Window.SetRootVisualAndUpdateSTC()<br>
at System.Windows.Window.SetupInitialState(Double requestedTop, Double requestedLeft, Double requestedWidth, Double requestedHeight)<br>
at System.Windows.Window.CreateSourceWindow(Boolean duringShow)<br>
at System.Windows.Window.CreateSourceWindowDuringShow()<br>
at System.Windows.Window.SafeCreateWindowDuringShow()<br>
at System.Windows.Window.ShowHelper(Object booleanBox)<br>
at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)<br>
at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler)</p> | 1 |
<p dir="auto">Hi,<br>
is it possible to have a filterbox with mutiple filters whose filter options are dependant on the already selected entries?</p>
<p dir="auto">Let's say we have the following table "sold_products":</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="customer | product | product_category | revenue
----------+---------+------------------+-----------
alice | teddy | toys | 20
alice | doll | toys | 10
alice | skirt | clothes | 25
bob | car | toys | 15
bob | holmes | books | 10"><pre class="notranslate"><code class="notranslate">customer | product | product_category | revenue
----------+---------+------------------+-----------
alice | teddy | toys | 20
alice | doll | toys | 10
alice | skirt | clothes | 25
bob | car | toys | 15
bob | holmes | books | 10
</code></pre></div>
<p dir="auto">Then I create a Filter Box with</p>
<ul dir="auto">
<li>customer</li>
<li>product</li>
<li>product_category</li>
</ul>
<p dir="auto">I would like to achieve the following:</p>
<ul dir="auto">
<li>When I select "customer" filter = "alice" products filter just shows ["teddy", "doll", "skirt"]</li>
<li>When I select "product_category" filter ="toys" products filter just shows ["teddy", "doll", "car"]</li>
<li>When I select "cutomser" filter ="alice" AND "product_category" filter ="toys" products filter just shows ["teddy", "doll"]</li>
</ul>
<p dir="auto">Currently all values are always shown. Is there a way to achieve the behaviour described?<br>
I know this will cause some DB stress, which is acceptable. Thanks!</p> | <p dir="auto">When you are filtering by more than one element, the values chosen in previous filters should limit the choices in subsequent drop downs<br>
Consider the Country - State - City example....or any hierarchy of values really.</p>
<p dir="auto">I would like to have filters applied in sequence, so that if I choose 'USA' from my country filter, I only get options relevant within USA. Then if I choose 'Ohio' from my state drop down, I would only get cities in OH from my 'City' drop down.</p>
<p dir="auto">We can create multiple filters that apply to each other but the visual is bad...the filters take up way too much room on the screen.</p>
<p dir="auto">I know this has been proposed before ( <a href="https://github.com/apache/incubator-superset/pull/5664" data-hovercard-type="pull_request" data-hovercard-url="/apache/superset/pull/5664/hovercard">5664</a> ) but seems like it was shelved dues to some other filtering changes coming, what happened to that?</p> | 1 |
<p dir="auto">[Enter steps to reproduce below:]</p>
<ol dir="auto">
<li>...</li>
<li>...</li>
</ol>
<p dir="auto"><strong>Atom Version</strong>: 0.169.0<br>
<strong>System</strong>: linux 3.13.0-44-generic<br>
<strong>Thrown From</strong>: Atom Core</p>
<h3 dir="auto">Stack Trace</h3>
<p dir="auto">Uncaught Error: spawn /opt/atom/atom (deleted) ENOENT</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="At events.js:85
Error: spawn /opt/atom/atom (deleted) ENOENT
at exports._errnoException (util.js:746:11)
at Process.ChildProcess._handle.onexit (child_process.js:1047:32)
at child_process.js:1138:20
at process._tickCallback (node.js:386:11)
"><pre class="notranslate"><code class="notranslate">At events.js:85
Error: spawn /opt/atom/atom (deleted) ENOENT
at exports._errnoException (util.js:746:11)
at Process.ChildProcess._handle.onexit (child_process.js:1047:32)
at child_process.js:1138:20
at process._tickCallback (node.js:386:11)
</code></pre></div>
<h3 dir="auto">Commands</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" -0:12.6 core:move-left (atom-text-editor.editor)
2x -0:12.1 editor:select-to-end-of-word (atom-text-editor.editor)
-0:10.7 core:move-up (atom-text-editor.editor)
-0:10.4 core:move-left (atom-text-editor.editor)
2x -0:10.0 editor:select-to-end-of-word (atom-text-editor.editor)
-0:08.8 core:move-up (atom-text-editor.editor)
-0:08.5 core:move-left (atom-text-editor.editor)
2x -0:08.1 editor:select-to-end-of-word (atom-text-editor.editor)
-0:06.7 core:move-up (atom-text-editor.editor)
-0:06.4 core:move-left (atom-text-editor.editor)
2x -0:05.5 editor:select-to-end-of-word (atom-text-editor.editor)
-0:04.2 core:move-up (atom-text-editor.editor)
-0:03.9 core:move-left (atom-text-editor.editor)
2x -0:03.5 editor:select-to-end-of-word (atom-text-editor.editor)
-0:01.6 core:backspace (atom-text-editor.editor)
-0:00.0 core:save (atom-text-editor.editor)"><pre class="notranslate"><code class="notranslate"> -0:12.6 core:move-left (atom-text-editor.editor)
2x -0:12.1 editor:select-to-end-of-word (atom-text-editor.editor)
-0:10.7 core:move-up (atom-text-editor.editor)
-0:10.4 core:move-left (atom-text-editor.editor)
2x -0:10.0 editor:select-to-end-of-word (atom-text-editor.editor)
-0:08.8 core:move-up (atom-text-editor.editor)
-0:08.5 core:move-left (atom-text-editor.editor)
2x -0:08.1 editor:select-to-end-of-word (atom-text-editor.editor)
-0:06.7 core:move-up (atom-text-editor.editor)
-0:06.4 core:move-left (atom-text-editor.editor)
2x -0:05.5 editor:select-to-end-of-word (atom-text-editor.editor)
-0:04.2 core:move-up (atom-text-editor.editor)
-0:03.9 core:move-left (atom-text-editor.editor)
2x -0:03.5 editor:select-to-end-of-word (atom-text-editor.editor)
-0:01.6 core:backspace (atom-text-editor.editor)
-0:00.0 core:save (atom-text-editor.editor)
</code></pre></div>
<h3 dir="auto">Config</h3>
<div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{
"core": {
"ignoredNames": [
".git .bak .hv *~"
],
"projectHome": "/git/"
},
"editor": {
"fontFamily": "ubuntu",
"fontSize": 13,
"showInvisibles": true,
"showIndentGuide": true
}
}"><pre class="notranslate">{
<span class="pl-ent">"core"</span>: {
<span class="pl-ent">"ignoredNames"</span>: [
<span class="pl-s"><span class="pl-pds">"</span>.git .bak .hv *~<span class="pl-pds">"</span></span>
],
<span class="pl-ent">"projectHome"</span>: <span class="pl-s"><span class="pl-pds">"</span>/git/<span class="pl-pds">"</span></span>
},
<span class="pl-ent">"editor"</span>: {
<span class="pl-ent">"fontFamily"</span>: <span class="pl-s"><span class="pl-pds">"</span>ubuntu<span class="pl-pds">"</span></span>,
<span class="pl-ent">"fontSize"</span>: <span class="pl-c1">13</span>,
<span class="pl-ent">"showInvisibles"</span>: <span class="pl-c1">true</span>,
<span class="pl-ent">"showIndentGuide"</span>: <span class="pl-c1">true</span>
}
}</pre></div>
<h3 dir="auto">Installed Packages</h3>
<div class="highlight highlight-source-coffee notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="# User
color-picker, v1.2.6
language-batch, v0.3.2
# Dev
No dev packages"><pre class="notranslate"><span class="pl-c"><span class="pl-c">#</span> User</span>
color<span class="pl-k">-</span>picker, v1.<span class="pl-ii">2</span>.<span class="pl-ii">6</span>
language<span class="pl-k">-</span>batch, v0.<span class="pl-ii">3</span>.<span class="pl-ii">2</span>
<span class="pl-c"><span class="pl-c">#</span> Dev</span>
<span class="pl-en">No</span> <span class="pl-en">dev</span> packages</pre></div> | <p dir="auto"><strong>TEMPORARY WORKAROUND</strong>: <code class="notranslate">ln -s /usr/share/atom/atom "/usr/share/atom/atom (deleted)"</code></p>
<p dir="auto">Uncaught Error: spawn /opt/atom/atom (deleted) ENOENT</p>
<p dir="auto"><strong>Atom Version</strong>: 0.152.0<br>
<strong>System</strong>: linux 3.13.0-40-generic<br>
<strong>Thrown From</strong>: Atom Core</p>
<h3 dir="auto">Steps To Reproduce</h3>
<ol dir="auto">
<li>...</li>
<li>...</li>
</ol>
<h3 dir="auto">Stack Trace</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="At events.js:85
Error: spawn /opt/atom/atom (deleted) ENOENT
at exports._errnoException (util.js:742:11)
at Process.ChildProcess._handle.onexit (child_process.js:1051:32)
at child_process.js:1142:20
at process._tickCallback (node.js:378:11)
"><pre class="notranslate"><code class="notranslate">At events.js:85
Error: spawn /opt/atom/atom (deleted) ENOENT
at exports._errnoException (util.js:742:11)
at Process.ChildProcess._handle.onexit (child_process.js:1051:32)
at child_process.js:1142:20
at process._tickCallback (node.js:378:11)
</code></pre></div> | 1 |
<p dir="auto">Filed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="146081575" data-permission-text="Title is private" data-url="https://github.com/TypeStrong/ntypescript/issues/19" data-hovercard-type="issue" data-hovercard-url="/TypeStrong/ntypescript/issues/19/hovercard" href="https://github.com/TypeStrong/ntypescript/issues/19">TypeStrong/ntypescript#19</a>, but it was closed due to not being nTypeScript specific. Opening here.</p>
<p dir="auto"><strong>TypeScript Version:</strong></p>
<p dir="auto">Latest nTypeScript release</p>
<p dir="auto"><strong>Code</strong></p>
<p dir="auto">tsconfig.json:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{
"compilerOptions": {
"target": "ES5",
"module": "system",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false,
"noImplicitAny": false,
"outDir": "javascript"
},
"files": [
"./typescript/main.ts",
"./typed/sha.js.d.ts"
],
"exclude": [
"node_modules"
]
}"><pre class="notranslate"><code class="notranslate">{
"compilerOptions": {
"target": "ES5",
"module": "system",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false,
"noImplicitAny": false,
"outDir": "javascript"
},
"files": [
"./typescript/main.ts",
"./typed/sha.js.d.ts"
],
"exclude": [
"node_modules"
]
}
</code></pre></div>
<p dir="auto">main.ts:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/// <reference path="../typings/browser.d.ts"/>
import "angular2/bundles/angular2-polyfills";
import {bootstrap} from "angular2/platform/browser";
import {AppComponent} from "./app.component";
import {ROUTER_PROVIDERS} from "angular2/router";
bootstrap(AppComponent, [ROUTER_PROVIDERS]);"><pre class="notranslate"><code class="notranslate">/// <reference path="../typings/browser.d.ts"/>
import "angular2/bundles/angular2-polyfills";
import {bootstrap} from "angular2/platform/browser";
import {AppComponent} from "./app.component";
import {ROUTER_PROVIDERS} from "angular2/router";
bootstrap(AppComponent, [ROUTER_PROVIDERS]);
</code></pre></div>
<p dir="auto"><strong>Expected behavior:</strong></p>
<p dir="auto">everything should compile successfully</p>
<p dir="auto"><strong>Actual behavior:</strong></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="node_modules/ntypescript/bin/lib.d.ts(1266,14): error TS2300: Duplicate identifier 'PropertyKey'.
typings/browser/ambient/es6-shim/index.d.ts(8,14): error TS2300: Duplicate identifier 'PropertyKey'."><pre class="notranslate"><code class="notranslate">node_modules/ntypescript/bin/lib.d.ts(1266,14): error TS2300: Duplicate identifier 'PropertyKey'.
typings/browser/ambient/es6-shim/index.d.ts(8,14): error TS2300: Duplicate identifier 'PropertyKey'.
</code></pre></div> | <p dir="auto">Core-js definition file defines a <code class="notranslate">PropertyKey</code> like the one in lib.es6.d.ts, now that this is in the main library, this is breaking the core-js compilation.<br>
See <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/core-js/core-js.d.ts#L21">https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/core-js/core-js.d.ts#L21</a></p>
<p dir="auto">Possible fix, rename the type declaration to something else now, to avoid breaking changes with the next TS release.</p> | 1 |
<p dir="auto">encoding/binary/binary.go:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="func (littleEndian) Uint64(b []byte) uint64 {
return uint64(b[0]) | uint64(b[1])<<8 | uint64(b[2])<<16 | uint64(b[3])<<24 |
uint64(b[4])<<32 | uint64(b[5])<<40 | uint64(b[6])<<48 | uint64(b[7])<<56
}"><pre class="notranslate"><code class="notranslate">func (littleEndian) Uint64(b []byte) uint64 {
return uint64(b[0]) | uint64(b[1])<<8 | uint64(b[2])<<16 | uint64(b[3])<<24 |
uint64(b[4])<<32 | uint64(b[5])<<40 | uint64(b[6])<<48 | uint64(b[7])<<56
}
</code></pre></div>
<p dir="auto">It would be nice to combine the small loads into one larger load, at least for architectures with unaligned loads.</p>
<p dir="auto">See <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="132265786" data-permission-text="Title is private" data-url="https://github.com/golang/go/issues/14266" data-hovercard-type="issue" data-hovercard-url="/golang/go/issues/14266/hovercard" href="https://github.com/golang/go/issues/14266">#14266</a> for the bug about combining the bounds checks. This bug is about combining the loads themselves. We could use rewrite rules something like:</p>
<p dir="auto"><code class="notranslate">(Or64 (Load <t> ptr mem) (Shl64x64 (Load <t> (Add64 ptr (Const64 [t.Size()])) mem) (Const64 [8*t.Size()]))) -> (Load ptr mem)</code></p>
<p dir="auto">These rules would probably work independent of whether the bounds checks are fixed or not.</p>
<p dir="auto">Maybe we could do stores also. That would require the bounds checks to go first, and the user to write to the max index first (otherwise partial writes would be observable).</p> | <p dir="auto">Using go1.5beta2</p>
<p dir="auto">Compile the following code from encoding/binary:</p>
<div class="highlight highlight-source-go notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="type littleEndian struct{}
func (littleEndian) PutUint64(b []byte, v int64) {
b[0] = byte(v)
b[1] = byte(v >> 8)
b[2] = byte(v >> 16)
b[3] = byte(v >> 24)
b[4] = byte(v >> 32)
b[5] = byte(v >> 40)
b[6] = byte(v >> 48)
b[7] = byte(v >> 56)
}"><pre class="notranslate"><span class="pl-k">type</span> <span class="pl-smi">littleEndian</span> <span class="pl-k">struct</span>{}
<span class="pl-k">func</span> (<span class="pl-smi">littleEndian</span>) <span class="pl-en">PutUint64</span>(<span class="pl-s1">b</span> []<span class="pl-smi">byte</span>, <span class="pl-s1">v</span> <span class="pl-smi">int64</span>) {
<span class="pl-s1">b</span>[<span class="pl-c1">0</span>] <span class="pl-c1">=</span> <span class="pl-en">byte</span>(<span class="pl-s1">v</span>)
<span class="pl-s1">b</span>[<span class="pl-c1">1</span>] <span class="pl-c1">=</span> <span class="pl-en">byte</span>(<span class="pl-s1">v</span> <span class="pl-c1">>></span> <span class="pl-c1">8</span>)
<span class="pl-s1">b</span>[<span class="pl-c1">2</span>] <span class="pl-c1">=</span> <span class="pl-en">byte</span>(<span class="pl-s1">v</span> <span class="pl-c1">>></span> <span class="pl-c1">16</span>)
<span class="pl-s1">b</span>[<span class="pl-c1">3</span>] <span class="pl-c1">=</span> <span class="pl-en">byte</span>(<span class="pl-s1">v</span> <span class="pl-c1">>></span> <span class="pl-c1">24</span>)
<span class="pl-s1">b</span>[<span class="pl-c1">4</span>] <span class="pl-c1">=</span> <span class="pl-en">byte</span>(<span class="pl-s1">v</span> <span class="pl-c1">>></span> <span class="pl-c1">32</span>)
<span class="pl-s1">b</span>[<span class="pl-c1">5</span>] <span class="pl-c1">=</span> <span class="pl-en">byte</span>(<span class="pl-s1">v</span> <span class="pl-c1">>></span> <span class="pl-c1">40</span>)
<span class="pl-s1">b</span>[<span class="pl-c1">6</span>] <span class="pl-c1">=</span> <span class="pl-en">byte</span>(<span class="pl-s1">v</span> <span class="pl-c1">>></span> <span class="pl-c1">48</span>)
<span class="pl-s1">b</span>[<span class="pl-c1">7</span>] <span class="pl-c1">=</span> <span class="pl-en">byte</span>(<span class="pl-s1">v</span> <span class="pl-c1">>></span> <span class="pl-c1">56</span>)
}</pre></div>
<p dir="auto">This produces the following:</p>
<div class="highlight highlight-source-assembly notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=""".littleEndian.PutUint64 t=1 size=288 value=0 args=0x20 locals=0x0
0x0000 00000 (/home/rawr/main9.go:5) TEXT "".littleEndian.PutUint64(SB), $0-32
0x0000 00000 (/home/rawr/main9.go:5) MOVQ (TLS), CX
0x0009 00009 (/home/rawr/main9.go:5) CMPQ SP, 16(CX)
0x000d 00013 (/home/rawr/main9.go:5) JLS 275
0x0013 00019 (/home/rawr/main9.go:5) NOP
0x0013 00019 (/home/rawr/main9.go:5) NOP
0x0013 00019 (/home/rawr/main9.go:5) MOVQ "".b+8(FP), DX
0x0018 00024 (/home/rawr/main9.go:5) MOVQ "".b+16(FP), CX
0x001d 00029 (/home/rawr/main9.go:5) MOVQ "".v+32(FP), AX
0x0022 00034 (/home/rawr/main9.go:5) FUNCDATA $0, gclocals·2fccd208efe70893f9ac8d682812ae72(SB)
0x0022 00034 (/home/rawr/main9.go:5) FUNCDATA $1, gclocals·33cdeccccebe80329f1fdbee7f5874cb(SB)
0x0022 00034 (/home/rawr/main9.go:6) CMPQ CX, $0
0x0026 00038 (/home/rawr/main9.go:6) JLS $1, 268
0x002c 00044 (/home/rawr/main9.go:6) MOVB AL, (DX)
0x002e 00046 (/home/rawr/main9.go:7) MOVQ DX, BX
0x0031 00049 (/home/rawr/main9.go:7) CMPQ CX, $1
0x0035 00053 (/home/rawr/main9.go:7) JLS $1, 261
0x003b 00059 (/home/rawr/main9.go:7) INCQ BX
0x003e 00062 (/home/rawr/main9.go:7) MOVQ AX, BP
0x0041 00065 (/home/rawr/main9.go:7) SARQ $8, BP
0x0045 00069 (/home/rawr/main9.go:7) MOVB BPB, (BX)
0x0048 00072 (/home/rawr/main9.go:8) MOVQ DX, BX
0x004b 00075 (/home/rawr/main9.go:8) CMPQ CX, $2
0x004f 00079 (/home/rawr/main9.go:8) JLS $1, 254
0x0055 00085 (/home/rawr/main9.go:8) ADDQ $2, BX
0x0059 00089 (/home/rawr/main9.go:8) MOVQ AX, BP
0x005c 00092 (/home/rawr/main9.go:8) SARQ $16, BP
0x0060 00096 (/home/rawr/main9.go:8) MOVB BPB, (BX)
0x0063 00099 (/home/rawr/main9.go:9) MOVQ DX, BX
0x0066 00102 (/home/rawr/main9.go:9) CMPQ CX, $3
0x006a 00106 (/home/rawr/main9.go:9) JLS $1, 247
0x0070 00112 (/home/rawr/main9.go:9) ADDQ $3, BX
0x0074 00116 (/home/rawr/main9.go:9) MOVQ AX, BP
0x0077 00119 (/home/rawr/main9.go:9) SARQ $24, BP
0x007b 00123 (/home/rawr/main9.go:9) MOVB BPB, (BX)
0x007e 00126 (/home/rawr/main9.go:10) MOVQ DX, BX
0x0081 00129 (/home/rawr/main9.go:10) CMPQ CX, $4
0x0085 00133 (/home/rawr/main9.go:10) JLS $1, 240
0x0087 00135 (/home/rawr/main9.go:10) ADDQ $4, BX
0x008b 00139 (/home/rawr/main9.go:10) MOVQ AX, BP
0x008e 00142 (/home/rawr/main9.go:10) SARQ $32, BP
0x0092 00146 (/home/rawr/main9.go:10) MOVB BPB, (BX)
0x0095 00149 (/home/rawr/main9.go:11) MOVQ DX, BX
0x0098 00152 (/home/rawr/main9.go:11) CMPQ CX, $5
0x009c 00156 (/home/rawr/main9.go:11) JLS $1, 233
0x009e 00158 (/home/rawr/main9.go:11) ADDQ $5, BX
0x00a2 00162 (/home/rawr/main9.go:11) MOVQ AX, BP
0x00a5 00165 (/home/rawr/main9.go:11) SARQ $40, BP
0x00a9 00169 (/home/rawr/main9.go:11) MOVB BPB, (BX)
0x00ac 00172 (/home/rawr/main9.go:12) MOVQ DX, BX
0x00af 00175 (/home/rawr/main9.go:12) CMPQ CX, $6
0x00b3 00179 (/home/rawr/main9.go:12) JLS $1, 226
0x00b5 00181 (/home/rawr/main9.go:12) ADDQ $6, BX
0x00b9 00185 (/home/rawr/main9.go:12) MOVQ AX, BP
0x00bc 00188 (/home/rawr/main9.go:12) SARQ $48, BP
0x00c0 00192 (/home/rawr/main9.go:12) MOVB BPB, (BX)
0x00c3 00195 (/home/rawr/main9.go:13) MOVQ DX, BX
0x00c6 00198 (/home/rawr/main9.go:13) CMPQ CX, $7
0x00ca 00202 (/home/rawr/main9.go:13) JLS $1, 219
0x00cc 00204 (/home/rawr/main9.go:13) ADDQ $7, BX
0x00d0 00208 (/home/rawr/main9.go:13) MOVQ AX, BP
0x00d3 00211 (/home/rawr/main9.go:13) SARQ $56, BP
0x00d7 00215 (/home/rawr/main9.go:13) MOVB BPB, (BX)
0x00da 00218 (/home/rawr/main9.go:14) RET
0x00db 00219 (/home/rawr/main9.go:13) PCDATA $0, $0
0x00db 00219 (/home/rawr/main9.go:13) CALL runtime.panicindex(SB)
0x00e0 00224 (/home/rawr/main9.go:13) UNDEF
0x00e2 00226 (/home/rawr/main9.go:12) PCDATA $0, $0
0x00e2 00226 (/home/rawr/main9.go:12) CALL runtime.panicindex(SB)
0x00e7 00231 (/home/rawr/main9.go:12) UNDEF
0x00e9 00233 (/home/rawr/main9.go:11) PCDATA $0, $0
0x00e9 00233 (/home/rawr/main9.go:11) CALL runtime.panicindex(SB)
0x00ee 00238 (/home/rawr/main9.go:11) UNDEF
0x00f0 00240 (/home/rawr/main9.go:10) PCDATA $0, $0
0x00f0 00240 (/home/rawr/main9.go:10) CALL runtime.panicindex(SB)
0x00f5 00245 (/home/rawr/main9.go:10) UNDEF
0x00f7 00247 (/home/rawr/main9.go:9) PCDATA $0, $0
0x00f7 00247 (/home/rawr/main9.go:9) CALL runtime.panicindex(SB)
0x00fc 00252 (/home/rawr/main9.go:9) UNDEF
0x00fe 00254 (/home/rawr/main9.go:8) PCDATA $0, $0
0x00fe 00254 (/home/rawr/main9.go:8) CALL runtime.panicindex(SB)
0x0103 00259 (/home/rawr/main9.go:8) UNDEF
0x0105 00261 (/home/rawr/main9.go:7) PCDATA $0, $0
0x0105 00261 (/home/rawr/main9.go:7) CALL runtime.panicindex(SB)
0x010a 00266 (/home/rawr/main9.go:7) UNDEF
0x010c 00268 (/home/rawr/main9.go:6) PCDATA $0, $0
0x010c 00268 (/home/rawr/main9.go:6) CALL runtime.panicindex(SB)
0x0111 00273 (/home/rawr/main9.go:6) UNDEF
0x0113 00275 (/home/rawr/main9.go:5) CALL runtime.morestack_noctxt(SB)
0x0118 00280 (/home/rawr/main9.go:5) JMP 0
0x0000 64 48 8b 0c 25 00 00 00 00 48 3b 61 10 0f 86 00 dH..%....H;a....
0x0010 01 00 00 48 8b 54 24 08 48 8b 4c 24 10 48 8b 44 ...H.T$.H.L$.H.D
0x0020 24 20 48 83 f9 00 0f 86 e0 00 00 00 88 02 48 89 $ H...........H.
0x0030 d3 48 83 f9 01 0f 86 ca 00 00 00 48 ff c3 48 89 .H.........H..H.
0x0040 c5 48 c1 fd 08 40 88 2b 48 89 d3 48 83 f9 02 0f .H...@.+H..H....
0x0050 86 a9 00 00 00 48 83 c3 02 48 89 c5 48 c1 fd 10 .....H...H..H...
0x0060 40 88 2b 48 89 d3 48 83 f9 03 0f 86 87 00 00 00 @.+H..H.........
0x0070 48 83 c3 03 48 89 c5 48 c1 fd 18 40 88 2b 48 89 H...H..H...@.+H.
0x0080 d3 48 83 f9 04 76 69 48 83 c3 04 48 89 c5 48 c1 .H...viH...H..H.
0x0090 fd 20 40 88 2b 48 89 d3 48 83 f9 05 76 4b 48 83 . @.+H..H...vKH.
0x00a0 c3 05 48 89 c5 48 c1 fd 28 40 88 2b 48 89 d3 48 ..H..H..(@.+H..H
0x00b0 83 f9 06 76 2d 48 83 c3 06 48 89 c5 48 c1 fd 30 ...v-H...H..H..0
0x00c0 40 88 2b 48 89 d3 48 83 f9 07 76 0f 48 83 c3 07 @.+H..H...v.H...
0x00d0 48 89 c5 48 c1 fd 38 40 88 2b c3 e8 00 00 00 00 H..H..8@.+......
0x00e0 0f 0b e8 00 00 00 00 0f 0b e8 00 00 00 00 0f 0b ................
0x00f0 e8 00 00 00 00 0f 0b e8 00 00 00 00 0f 0b e8 00 ................
0x0100 00 00 00 0f 0b e8 00 00 00 00 0f 0b e8 00 00 00 ................
0x0110 00 0f 0b e8 00 00 00 00 e9 e3 fe ff ff .............
rel 5+4 t=13 +0
rel 220+4 t=5 runtime.panicindex+0
rel 227+4 t=5 runtime.panicindex+0
rel 234+4 t=5 runtime.panicindex+0
rel 241+4 t=5 runtime.panicindex+0
rel 248+4 t=5 runtime.panicindex+0
rel 255+4 t=5 runtime.panicindex+0
rel 262+4 t=5 runtime.panicindex+0
rel 269+4 t=5 runtime.panicindex+0
rel 276+4 t=5 runtime.morestack_noctxt+0"><pre class="notranslate"><span class="pl-s">""</span><span class="pl-en">.littleEndian.PutUint64 t=</span><span class="pl-c1">1</span><span class="pl-en"> size=</span><span class="pl-c1">288</span><span class="pl-en"> value=</span><span class="pl-c1">0</span><span class="pl-en"> args=</span><span class="pl-c1">0x20</span><span class="pl-en"> locals=</span><span class="pl-c1">0x0</span>
<span class="pl-en"> </span><span class="pl-c1">0x0000</span><span class="pl-en"> </span><span class="pl-c1">00000</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">5</span><span class="pl-en">) TEXT </span><span class="pl-s">""</span><span class="pl-en">.littleEndian.PutUint64(SB)</span><span class="pl-s1">,</span> <span class="pl-c1">$</span><span class="pl-c1">0</span><span class="pl-s1">-</span><span class="pl-c1">32</span>
<span class="pl-en"> </span><span class="pl-c1">0x0000</span><span class="pl-en"> </span><span class="pl-c1">00000</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">5</span><span class="pl-en">) </span><span class="pl-k">MOVQ</span><span class="pl-en"> (TLS)</span><span class="pl-s1">,</span><span class="pl-en"> </span><span class="pl-v">CX</span>
<span class="pl-en"> </span><span class="pl-c1">0x0009</span><span class="pl-en"> </span><span class="pl-c1">00009</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">5</span><span class="pl-en">) CMPQ </span><span class="pl-v">SP</span><span class="pl-s1">,</span><span class="pl-en"> </span><span class="pl-c1">16</span><span class="pl-en">(</span><span class="pl-v">CX</span><span class="pl-en">)</span>
<span class="pl-en"> </span><span class="pl-c1">0x000d</span><span class="pl-en"> </span><span class="pl-c1">00013</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">5</span><span class="pl-en">) JLS </span><span class="pl-c1">275</span>
<span class="pl-en"> </span><span class="pl-c1">0x0013</span><span class="pl-en"> </span><span class="pl-c1">00019</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">5</span><span class="pl-en">) </span><span class="pl-k">NOP</span>
<span class="pl-en"> </span><span class="pl-c1">0x0013</span><span class="pl-en"> </span><span class="pl-c1">00019</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">5</span><span class="pl-en">) </span><span class="pl-k">NOP</span>
<span class="pl-en"> </span><span class="pl-c1">0x0013</span><span class="pl-en"> </span><span class="pl-c1">00019</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">5</span><span class="pl-en">) </span><span class="pl-k">MOVQ</span><span class="pl-en"> </span><span class="pl-s">""</span><span class="pl-en">.b</span><span class="pl-s1">+</span><span class="pl-c1">8</span><span class="pl-en">(FP)</span><span class="pl-s1">,</span><span class="pl-en"> </span><span class="pl-v">DX</span>
<span class="pl-en"> </span><span class="pl-c1">0x0018</span><span class="pl-en"> </span><span class="pl-c1">00024</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">5</span><span class="pl-en">) </span><span class="pl-k">MOVQ</span><span class="pl-en"> </span><span class="pl-s">""</span><span class="pl-en">.b</span><span class="pl-s1">+</span><span class="pl-c1">16</span><span class="pl-en">(FP)</span><span class="pl-s1">,</span><span class="pl-en"> </span><span class="pl-v">CX</span>
<span class="pl-en"> </span><span class="pl-c1">0x001d</span><span class="pl-en"> </span><span class="pl-c1">00029</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">5</span><span class="pl-en">) </span><span class="pl-k">MOVQ</span><span class="pl-en"> </span><span class="pl-s">""</span><span class="pl-en">.v</span><span class="pl-s1">+</span><span class="pl-c1">32</span><span class="pl-en">(FP)</span><span class="pl-s1">,</span><span class="pl-en"> </span><span class="pl-v">AX</span>
<span class="pl-en"> </span><span class="pl-c1">0x0022</span><span class="pl-en"> </span><span class="pl-c1">00034</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">5</span><span class="pl-en">) FUNCDATA</span> <span class="pl-c1">$</span><span class="pl-c1">0</span><span class="pl-s1">,</span><span class="pl-en"> gclocals·2fccd208efe70893f9ac8d682812ae72(SB)</span>
<span class="pl-en"> </span><span class="pl-c1">0x0022</span><span class="pl-en"> </span><span class="pl-c1">00034</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">5</span><span class="pl-en">) FUNCDATA</span> <span class="pl-c1">$</span><span class="pl-c1">1</span><span class="pl-s1">,</span><span class="pl-en"> gclocals·33cdeccccebe80329f1fdbee7f5874cb(SB)</span>
<span class="pl-en"> </span><span class="pl-c1">0x0022</span><span class="pl-en"> </span><span class="pl-c1">00034</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">6</span><span class="pl-en">) CMPQ </span><span class="pl-v">CX</span><span class="pl-s1">,</span> <span class="pl-c1">$</span><span class="pl-c1">0</span>
<span class="pl-en"> </span><span class="pl-c1">0x0026</span><span class="pl-en"> </span><span class="pl-c1">00038</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">6</span><span class="pl-en">) JLS</span> <span class="pl-c1">$</span><span class="pl-c1">1</span><span class="pl-s1">,</span><span class="pl-en"> </span><span class="pl-c1">268</span>
<span class="pl-en"> </span><span class="pl-c1">0x002c</span><span class="pl-en"> </span><span class="pl-c1">00044</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">6</span><span class="pl-en">) MOVB </span><span class="pl-v">AL</span><span class="pl-s1">,</span><span class="pl-en"> (</span><span class="pl-v">DX</span><span class="pl-en">)</span>
<span class="pl-en"> </span><span class="pl-c1">0x002e</span><span class="pl-en"> </span><span class="pl-c1">00046</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">7</span><span class="pl-en">) </span><span class="pl-k">MOVQ</span><span class="pl-en"> </span><span class="pl-v">DX</span><span class="pl-s1">,</span><span class="pl-en"> </span><span class="pl-v">BX</span>
<span class="pl-en"> </span><span class="pl-c1">0x0031</span><span class="pl-en"> </span><span class="pl-c1">00049</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">7</span><span class="pl-en">) CMPQ </span><span class="pl-v">CX</span><span class="pl-s1">,</span> <span class="pl-c1">$</span><span class="pl-c1">1</span>
<span class="pl-en"> </span><span class="pl-c1">0x0035</span><span class="pl-en"> </span><span class="pl-c1">00053</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">7</span><span class="pl-en">) JLS</span> <span class="pl-c1">$</span><span class="pl-c1">1</span><span class="pl-s1">,</span><span class="pl-en"> </span><span class="pl-c1">261</span>
<span class="pl-en"> </span><span class="pl-c1">0x003b</span><span class="pl-en"> </span><span class="pl-c1">00059</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">7</span><span class="pl-en">) INCQ </span><span class="pl-v">BX</span>
<span class="pl-en"> </span><span class="pl-c1">0x003e</span><span class="pl-en"> </span><span class="pl-c1">00062</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">7</span><span class="pl-en">) </span><span class="pl-k">MOVQ</span><span class="pl-en"> </span><span class="pl-v">AX</span><span class="pl-s1">,</span><span class="pl-en"> </span><span class="pl-v">BP</span>
<span class="pl-en"> </span><span class="pl-c1">0x0041</span><span class="pl-en"> </span><span class="pl-c1">00065</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">7</span><span class="pl-en">) SARQ</span> <span class="pl-c1">$</span><span class="pl-c1">8</span><span class="pl-s1">,</span><span class="pl-en"> </span><span class="pl-v">BP</span>
<span class="pl-en"> </span><span class="pl-c1">0x0045</span><span class="pl-en"> </span><span class="pl-c1">00069</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">7</span><span class="pl-en">) MOVB BPB</span><span class="pl-s1">,</span><span class="pl-en"> (</span><span class="pl-v">BX</span><span class="pl-en">)</span>
<span class="pl-en"> </span><span class="pl-c1">0x0048</span><span class="pl-en"> </span><span class="pl-c1">00072</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">8</span><span class="pl-en">) </span><span class="pl-k">MOVQ</span><span class="pl-en"> </span><span class="pl-v">DX</span><span class="pl-s1">,</span><span class="pl-en"> </span><span class="pl-v">BX</span>
<span class="pl-en"> </span><span class="pl-c1">0x004b</span><span class="pl-en"> </span><span class="pl-c1">00075</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">8</span><span class="pl-en">) CMPQ </span><span class="pl-v">CX</span><span class="pl-s1">,</span> <span class="pl-c1">$</span><span class="pl-c1">2</span>
<span class="pl-en"> </span><span class="pl-c1">0x004f</span><span class="pl-en"> </span><span class="pl-c1">00079</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">8</span><span class="pl-en">) JLS</span> <span class="pl-c1">$</span><span class="pl-c1">1</span><span class="pl-s1">,</span><span class="pl-en"> </span><span class="pl-c1">254</span>
<span class="pl-en"> </span><span class="pl-c1">0x0055</span><span class="pl-en"> </span><span class="pl-c1">00085</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">8</span><span class="pl-en">) ADDQ</span> <span class="pl-c1">$</span><span class="pl-c1">2</span><span class="pl-s1">,</span><span class="pl-en"> </span><span class="pl-v">BX</span>
<span class="pl-en"> </span><span class="pl-c1">0x0059</span><span class="pl-en"> </span><span class="pl-c1">00089</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">8</span><span class="pl-en">) </span><span class="pl-k">MOVQ</span><span class="pl-en"> </span><span class="pl-v">AX</span><span class="pl-s1">,</span><span class="pl-en"> </span><span class="pl-v">BP</span>
<span class="pl-en"> </span><span class="pl-c1">0x005c</span><span class="pl-en"> </span><span class="pl-c1">00092</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">8</span><span class="pl-en">) SARQ</span> <span class="pl-c1">$</span><span class="pl-c1">16</span><span class="pl-s1">,</span><span class="pl-en"> </span><span class="pl-v">BP</span>
<span class="pl-en"> </span><span class="pl-c1">0x0060</span><span class="pl-en"> </span><span class="pl-c1">00096</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">8</span><span class="pl-en">) MOVB BPB</span><span class="pl-s1">,</span><span class="pl-en"> (</span><span class="pl-v">BX</span><span class="pl-en">)</span>
<span class="pl-en"> </span><span class="pl-c1">0x0063</span><span class="pl-en"> </span><span class="pl-c1">00099</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">9</span><span class="pl-en">) </span><span class="pl-k">MOVQ</span><span class="pl-en"> </span><span class="pl-v">DX</span><span class="pl-s1">,</span><span class="pl-en"> </span><span class="pl-v">BX</span>
<span class="pl-en"> </span><span class="pl-c1">0x0066</span><span class="pl-en"> </span><span class="pl-c1">00102</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">9</span><span class="pl-en">) CMPQ </span><span class="pl-v">CX</span><span class="pl-s1">,</span> <span class="pl-c1">$</span><span class="pl-c1">3</span>
<span class="pl-en"> </span><span class="pl-c1">0x006a</span><span class="pl-en"> </span><span class="pl-c1">00106</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">9</span><span class="pl-en">) JLS</span> <span class="pl-c1">$</span><span class="pl-c1">1</span><span class="pl-s1">,</span><span class="pl-en"> </span><span class="pl-c1">247</span>
<span class="pl-en"> </span><span class="pl-c1">0x0070</span><span class="pl-en"> </span><span class="pl-c1">00112</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">9</span><span class="pl-en">) ADDQ</span> <span class="pl-c1">$</span><span class="pl-c1">3</span><span class="pl-s1">,</span><span class="pl-en"> </span><span class="pl-v">BX</span>
<span class="pl-en"> </span><span class="pl-c1">0x0074</span><span class="pl-en"> </span><span class="pl-c1">00116</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">9</span><span class="pl-en">) </span><span class="pl-k">MOVQ</span><span class="pl-en"> </span><span class="pl-v">AX</span><span class="pl-s1">,</span><span class="pl-en"> </span><span class="pl-v">BP</span>
<span class="pl-en"> </span><span class="pl-c1">0x0077</span><span class="pl-en"> </span><span class="pl-c1">00119</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">9</span><span class="pl-en">) SARQ</span> <span class="pl-c1">$</span><span class="pl-c1">24</span><span class="pl-s1">,</span><span class="pl-en"> </span><span class="pl-v">BP</span>
<span class="pl-en"> </span><span class="pl-c1">0x007b</span><span class="pl-en"> </span><span class="pl-c1">00123</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">9</span><span class="pl-en">) MOVB BPB</span><span class="pl-s1">,</span><span class="pl-en"> (</span><span class="pl-v">BX</span><span class="pl-en">)</span>
<span class="pl-en"> </span><span class="pl-c1">0x007e</span><span class="pl-en"> </span><span class="pl-c1">00126</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">10</span><span class="pl-en">) </span><span class="pl-k">MOVQ</span><span class="pl-en"> </span><span class="pl-v">DX</span><span class="pl-s1">,</span><span class="pl-en"> </span><span class="pl-v">BX</span>
<span class="pl-en"> </span><span class="pl-c1">0x0081</span><span class="pl-en"> </span><span class="pl-c1">00129</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">10</span><span class="pl-en">) CMPQ </span><span class="pl-v">CX</span><span class="pl-s1">,</span> <span class="pl-c1">$</span><span class="pl-c1">4</span>
<span class="pl-en"> </span><span class="pl-c1">0x0085</span><span class="pl-en"> </span><span class="pl-c1">00133</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">10</span><span class="pl-en">) JLS</span> <span class="pl-c1">$</span><span class="pl-c1">1</span><span class="pl-s1">,</span><span class="pl-en"> </span><span class="pl-c1">240</span>
<span class="pl-en"> </span><span class="pl-c1">0x0087</span><span class="pl-en"> </span><span class="pl-c1">00135</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">10</span><span class="pl-en">) ADDQ</span> <span class="pl-c1">$</span><span class="pl-c1">4</span><span class="pl-s1">,</span><span class="pl-en"> </span><span class="pl-v">BX</span>
<span class="pl-en"> </span><span class="pl-c1">0x008b</span><span class="pl-en"> </span><span class="pl-c1">00139</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">10</span><span class="pl-en">) </span><span class="pl-k">MOVQ</span><span class="pl-en"> </span><span class="pl-v">AX</span><span class="pl-s1">,</span><span class="pl-en"> </span><span class="pl-v">BP</span>
<span class="pl-en"> </span><span class="pl-c1">0x008e</span><span class="pl-en"> </span><span class="pl-c1">00142</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">10</span><span class="pl-en">) SARQ</span> <span class="pl-c1">$</span><span class="pl-c1">32</span><span class="pl-s1">,</span><span class="pl-en"> </span><span class="pl-v">BP</span>
<span class="pl-en"> </span><span class="pl-c1">0x0092</span><span class="pl-en"> </span><span class="pl-c1">00146</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">10</span><span class="pl-en">) MOVB BPB</span><span class="pl-s1">,</span><span class="pl-en"> (</span><span class="pl-v">BX</span><span class="pl-en">)</span>
<span class="pl-en"> </span><span class="pl-c1">0x0095</span><span class="pl-en"> </span><span class="pl-c1">00149</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">11</span><span class="pl-en">) </span><span class="pl-k">MOVQ</span><span class="pl-en"> </span><span class="pl-v">DX</span><span class="pl-s1">,</span><span class="pl-en"> </span><span class="pl-v">BX</span>
<span class="pl-en"> </span><span class="pl-c1">0x0098</span><span class="pl-en"> </span><span class="pl-c1">00152</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">11</span><span class="pl-en">) CMPQ </span><span class="pl-v">CX</span><span class="pl-s1">,</span> <span class="pl-c1">$</span><span class="pl-c1">5</span>
<span class="pl-en"> </span><span class="pl-c1">0x009c</span><span class="pl-en"> </span><span class="pl-c1">00156</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">11</span><span class="pl-en">) JLS</span> <span class="pl-c1">$</span><span class="pl-c1">1</span><span class="pl-s1">,</span><span class="pl-en"> </span><span class="pl-c1">233</span>
<span class="pl-en"> </span><span class="pl-c1">0x009e</span><span class="pl-en"> </span><span class="pl-c1">00158</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">11</span><span class="pl-en">) ADDQ</span> <span class="pl-c1">$</span><span class="pl-c1">5</span><span class="pl-s1">,</span><span class="pl-en"> </span><span class="pl-v">BX</span>
<span class="pl-en"> </span><span class="pl-c1">0x00a2</span><span class="pl-en"> </span><span class="pl-c1">00162</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">11</span><span class="pl-en">) </span><span class="pl-k">MOVQ</span><span class="pl-en"> </span><span class="pl-v">AX</span><span class="pl-s1">,</span><span class="pl-en"> </span><span class="pl-v">BP</span>
<span class="pl-en"> </span><span class="pl-c1">0x00a5</span><span class="pl-en"> </span><span class="pl-c1">00165</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">11</span><span class="pl-en">) SARQ</span> <span class="pl-c1">$</span><span class="pl-c1">40</span><span class="pl-s1">,</span><span class="pl-en"> </span><span class="pl-v">BP</span>
<span class="pl-en"> </span><span class="pl-c1">0x00a9</span><span class="pl-en"> </span><span class="pl-c1">00169</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">11</span><span class="pl-en">) MOVB BPB</span><span class="pl-s1">,</span><span class="pl-en"> (</span><span class="pl-v">BX</span><span class="pl-en">)</span>
<span class="pl-en"> </span><span class="pl-c1">0x00ac</span><span class="pl-en"> </span><span class="pl-c1">00172</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">12</span><span class="pl-en">) </span><span class="pl-k">MOVQ</span><span class="pl-en"> </span><span class="pl-v">DX</span><span class="pl-s1">,</span><span class="pl-en"> </span><span class="pl-v">BX</span>
<span class="pl-en"> </span><span class="pl-c1">0x00af</span><span class="pl-en"> </span><span class="pl-c1">00175</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">12</span><span class="pl-en">) CMPQ </span><span class="pl-v">CX</span><span class="pl-s1">,</span> <span class="pl-c1">$</span><span class="pl-c1">6</span>
<span class="pl-en"> </span><span class="pl-c1">0x00b3</span><span class="pl-en"> </span><span class="pl-c1">00179</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">12</span><span class="pl-en">) JLS</span> <span class="pl-c1">$</span><span class="pl-c1">1</span><span class="pl-s1">,</span><span class="pl-en"> </span><span class="pl-c1">226</span>
<span class="pl-en"> </span><span class="pl-c1">0x00b5</span><span class="pl-en"> </span><span class="pl-c1">00181</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">12</span><span class="pl-en">) ADDQ</span> <span class="pl-c1">$</span><span class="pl-c1">6</span><span class="pl-s1">,</span><span class="pl-en"> </span><span class="pl-v">BX</span>
<span class="pl-en"> </span><span class="pl-c1">0x00b9</span><span class="pl-en"> </span><span class="pl-c1">00185</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">12</span><span class="pl-en">) </span><span class="pl-k">MOVQ</span><span class="pl-en"> </span><span class="pl-v">AX</span><span class="pl-s1">,</span><span class="pl-en"> </span><span class="pl-v">BP</span>
<span class="pl-en"> </span><span class="pl-c1">0x00bc</span><span class="pl-en"> </span><span class="pl-c1">00188</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">12</span><span class="pl-en">) SARQ</span> <span class="pl-c1">$</span><span class="pl-c1">48</span><span class="pl-s1">,</span><span class="pl-en"> </span><span class="pl-v">BP</span>
<span class="pl-en"> </span><span class="pl-c1">0x00c0</span><span class="pl-en"> </span><span class="pl-c1">00192</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">12</span><span class="pl-en">) MOVB BPB</span><span class="pl-s1">,</span><span class="pl-en"> (</span><span class="pl-v">BX</span><span class="pl-en">)</span>
<span class="pl-en"> </span><span class="pl-c1">0x00c3</span><span class="pl-en"> </span><span class="pl-c1">00195</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">13</span><span class="pl-en">) </span><span class="pl-k">MOVQ</span><span class="pl-en"> </span><span class="pl-v">DX</span><span class="pl-s1">,</span><span class="pl-en"> </span><span class="pl-v">BX</span>
<span class="pl-en"> </span><span class="pl-c1">0x00c6</span><span class="pl-en"> </span><span class="pl-c1">00198</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">13</span><span class="pl-en">) CMPQ </span><span class="pl-v">CX</span><span class="pl-s1">,</span> <span class="pl-c1">$</span><span class="pl-c1">7</span>
<span class="pl-en"> </span><span class="pl-c1">0x00ca</span><span class="pl-en"> </span><span class="pl-c1">00202</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">13</span><span class="pl-en">) JLS</span> <span class="pl-c1">$</span><span class="pl-c1">1</span><span class="pl-s1">,</span><span class="pl-en"> </span><span class="pl-c1">219</span>
<span class="pl-en"> </span><span class="pl-c1">0x00cc</span><span class="pl-en"> </span><span class="pl-c1">00204</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">13</span><span class="pl-en">) ADDQ</span> <span class="pl-c1">$</span><span class="pl-c1">7</span><span class="pl-s1">,</span><span class="pl-en"> </span><span class="pl-v">BX</span>
<span class="pl-en"> </span><span class="pl-c1">0x00d0</span><span class="pl-en"> </span><span class="pl-c1">00208</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">13</span><span class="pl-en">) </span><span class="pl-k">MOVQ</span><span class="pl-en"> </span><span class="pl-v">AX</span><span class="pl-s1">,</span><span class="pl-en"> </span><span class="pl-v">BP</span>
<span class="pl-en"> </span><span class="pl-c1">0x00d3</span><span class="pl-en"> </span><span class="pl-c1">00211</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">13</span><span class="pl-en">) SARQ</span> <span class="pl-c1">$</span><span class="pl-c1">56</span><span class="pl-s1">,</span><span class="pl-en"> </span><span class="pl-v">BP</span>
<span class="pl-en"> </span><span class="pl-c1">0x00d7</span><span class="pl-en"> </span><span class="pl-c1">00215</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">13</span><span class="pl-en">) MOVB BPB</span><span class="pl-s1">,</span><span class="pl-en"> (</span><span class="pl-v">BX</span><span class="pl-en">)</span>
<span class="pl-en"> </span><span class="pl-c1">0x00da</span><span class="pl-en"> </span><span class="pl-c1">00218</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">14</span><span class="pl-en">) </span><span class="pl-k">RET</span>
<span class="pl-en"> </span><span class="pl-c1">0x00db</span><span class="pl-en"> </span><span class="pl-c1">00219</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">13</span><span class="pl-en">) PCDATA</span> <span class="pl-c1">$</span><span class="pl-c1">0</span><span class="pl-s1">,</span> <span class="pl-c1">$</span><span class="pl-c1">0</span>
<span class="pl-en"> </span><span class="pl-c1">0x00db</span><span class="pl-en"> </span><span class="pl-c1">00219</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">13</span><span class="pl-en">) </span><span class="pl-k">CALL</span><span class="pl-en"> runtime.panicindex(SB)</span>
<span class="pl-en"> </span><span class="pl-c1">0x00e0</span><span class="pl-en"> </span><span class="pl-c1">00224</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">13</span><span class="pl-en">) UNDEF</span>
<span class="pl-en"> </span><span class="pl-c1">0x00e2</span><span class="pl-en"> </span><span class="pl-c1">00226</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">12</span><span class="pl-en">) PCDATA</span> <span class="pl-c1">$</span><span class="pl-c1">0</span><span class="pl-s1">,</span> <span class="pl-c1">$</span><span class="pl-c1">0</span>
<span class="pl-en"> </span><span class="pl-c1">0x00e2</span><span class="pl-en"> </span><span class="pl-c1">00226</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">12</span><span class="pl-en">) </span><span class="pl-k">CALL</span><span class="pl-en"> runtime.panicindex(SB)</span>
<span class="pl-en"> </span><span class="pl-c1">0x00e7</span><span class="pl-en"> </span><span class="pl-c1">00231</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">12</span><span class="pl-en">) UNDEF</span>
<span class="pl-en"> </span><span class="pl-c1">0x00e9</span><span class="pl-en"> </span><span class="pl-c1">00233</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">11</span><span class="pl-en">) PCDATA</span> <span class="pl-c1">$</span><span class="pl-c1">0</span><span class="pl-s1">,</span> <span class="pl-c1">$</span><span class="pl-c1">0</span>
<span class="pl-en"> </span><span class="pl-c1">0x00e9</span><span class="pl-en"> </span><span class="pl-c1">00233</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">11</span><span class="pl-en">) </span><span class="pl-k">CALL</span><span class="pl-en"> runtime.panicindex(SB)</span>
<span class="pl-en"> </span><span class="pl-c1">0x00ee</span><span class="pl-en"> </span><span class="pl-c1">00238</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">11</span><span class="pl-en">) UNDEF</span>
<span class="pl-en"> </span><span class="pl-c1">0x00f0</span><span class="pl-en"> </span><span class="pl-c1">00240</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">10</span><span class="pl-en">) PCDATA</span> <span class="pl-c1">$</span><span class="pl-c1">0</span><span class="pl-s1">,</span> <span class="pl-c1">$</span><span class="pl-c1">0</span>
<span class="pl-en"> </span><span class="pl-c1">0x00f0</span><span class="pl-en"> </span><span class="pl-c1">00240</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">10</span><span class="pl-en">) </span><span class="pl-k">CALL</span><span class="pl-en"> runtime.panicindex(SB)</span>
<span class="pl-en"> </span><span class="pl-c1">0x00f5</span><span class="pl-en"> </span><span class="pl-c1">00245</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">10</span><span class="pl-en">) UNDEF</span>
<span class="pl-en"> </span><span class="pl-c1">0x00f7</span><span class="pl-en"> </span><span class="pl-c1">00247</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">9</span><span class="pl-en">) PCDATA</span> <span class="pl-c1">$</span><span class="pl-c1">0</span><span class="pl-s1">,</span> <span class="pl-c1">$</span><span class="pl-c1">0</span>
<span class="pl-en"> </span><span class="pl-c1">0x00f7</span><span class="pl-en"> </span><span class="pl-c1">00247</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">9</span><span class="pl-en">) </span><span class="pl-k">CALL</span><span class="pl-en"> runtime.panicindex(SB)</span>
<span class="pl-en"> </span><span class="pl-c1">0x00fc</span><span class="pl-en"> </span><span class="pl-c1">00252</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">9</span><span class="pl-en">) UNDEF</span>
<span class="pl-en"> </span><span class="pl-c1">0x00fe</span><span class="pl-en"> </span><span class="pl-c1">00254</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">8</span><span class="pl-en">) PCDATA</span> <span class="pl-c1">$</span><span class="pl-c1">0</span><span class="pl-s1">,</span> <span class="pl-c1">$</span><span class="pl-c1">0</span>
<span class="pl-en"> </span><span class="pl-c1">0x00fe</span><span class="pl-en"> </span><span class="pl-c1">00254</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">8</span><span class="pl-en">) </span><span class="pl-k">CALL</span><span class="pl-en"> runtime.panicindex(SB)</span>
<span class="pl-en"> </span><span class="pl-c1">0x0103</span><span class="pl-en"> </span><span class="pl-c1">00259</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">8</span><span class="pl-en">) UNDEF</span>
<span class="pl-en"> </span><span class="pl-c1">0x0105</span><span class="pl-en"> </span><span class="pl-c1">00261</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">7</span><span class="pl-en">) PCDATA</span> <span class="pl-c1">$</span><span class="pl-c1">0</span><span class="pl-s1">,</span> <span class="pl-c1">$</span><span class="pl-c1">0</span>
<span class="pl-en"> </span><span class="pl-c1">0x0105</span><span class="pl-en"> </span><span class="pl-c1">00261</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">7</span><span class="pl-en">) </span><span class="pl-k">CALL</span><span class="pl-en"> runtime.panicindex(SB)</span>
<span class="pl-en"> </span><span class="pl-c1">0x010a</span><span class="pl-en"> </span><span class="pl-c1">00266</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">7</span><span class="pl-en">) UNDEF</span>
<span class="pl-en"> </span><span class="pl-c1">0x010c</span><span class="pl-en"> </span><span class="pl-c1">00268</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">6</span><span class="pl-en">) PCDATA</span> <span class="pl-c1">$</span><span class="pl-c1">0</span><span class="pl-s1">,</span> <span class="pl-c1">$</span><span class="pl-c1">0</span>
<span class="pl-en"> </span><span class="pl-c1">0x010c</span><span class="pl-en"> </span><span class="pl-c1">00268</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">6</span><span class="pl-en">) </span><span class="pl-k">CALL</span><span class="pl-en"> runtime.panicindex(SB)</span>
<span class="pl-en"> </span><span class="pl-c1">0x0111</span><span class="pl-en"> </span><span class="pl-c1">00273</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">6</span><span class="pl-en">) UNDEF</span>
<span class="pl-en"> </span><span class="pl-c1">0x0113</span><span class="pl-en"> </span><span class="pl-c1">00275</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">5</span><span class="pl-en">) </span><span class="pl-k">CALL</span><span class="pl-en"> runtime.morestack_noctxt(SB)</span>
<span class="pl-en"> </span><span class="pl-c1">0x0118</span><span class="pl-en"> </span><span class="pl-c1">00280</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">5</span><span class="pl-en">) </span><span class="pl-k">JMP</span><span class="pl-en"> </span><span class="pl-c1">0</span>
<span class="pl-en"> </span><span class="pl-c1">0x0000</span><span class="pl-en"> </span><span class="pl-c1">64</span><span class="pl-en"> </span><span class="pl-c1">48</span><span class="pl-en"> 8b 0c </span><span class="pl-c1">25</span><span class="pl-en"> </span><span class="pl-c1">00</span><span class="pl-en"> </span><span class="pl-c1">00</span><span class="pl-en"> </span><span class="pl-c1">00</span><span class="pl-en"> </span><span class="pl-c1">00</span><span class="pl-en"> </span><span class="pl-c1">48</span><span class="pl-en"> 3b </span><span class="pl-c1">61</span><span class="pl-en"> </span><span class="pl-c1">10</span><span class="pl-en"> 0f </span><span class="pl-c1">86</span><span class="pl-en"> </span><span class="pl-c1">00</span><span class="pl-en"> </span><span class="pl-v">dH</span><span class="pl-en">..%....H</span><span class="pl-c">;a....</span>
<span class="pl-en"> </span><span class="pl-c1">0x0010</span><span class="pl-en"> </span><span class="pl-c1">01</span><span class="pl-en"> </span><span class="pl-c1">00</span><span class="pl-en"> </span><span class="pl-c1">00</span><span class="pl-en"> </span><span class="pl-c1">48</span><span class="pl-en"> 8b </span><span class="pl-c1">54</span><span class="pl-en"> </span><span class="pl-c1">24</span><span class="pl-en"> </span><span class="pl-c1">08</span><span class="pl-en"> </span><span class="pl-c1">48</span><span class="pl-en"> 8b 4c </span><span class="pl-c1">24</span><span class="pl-en"> </span><span class="pl-c1">10</span><span class="pl-en"> </span><span class="pl-c1">48</span><span class="pl-en"> 8b </span><span class="pl-c1">44</span><span class="pl-en"> ...H.T$.H.L$.H.D</span>
<span class="pl-en"> </span><span class="pl-c1">0x0020</span><span class="pl-en"> </span><span class="pl-c1">24</span><span class="pl-en"> </span><span class="pl-c1">20</span><span class="pl-en"> </span><span class="pl-c1">48</span><span class="pl-en"> </span><span class="pl-c1">83</span><span class="pl-en"> f9 </span><span class="pl-c1">00</span><span class="pl-en"> 0f </span><span class="pl-c1">86</span><span class="pl-en"> e0 </span><span class="pl-c1">00</span><span class="pl-en"> </span><span class="pl-c1">00</span><span class="pl-en"> </span><span class="pl-c1">00</span><span class="pl-en"> </span><span class="pl-c1">88</span><span class="pl-en"> </span><span class="pl-c1">02</span><span class="pl-en"> </span><span class="pl-c1">48</span><span class="pl-en"> </span><span class="pl-c1">89</span><span class="pl-en"> $ H...........H.</span>
<span class="pl-en"> </span><span class="pl-c1">0x0030</span><span class="pl-en"> d3 </span><span class="pl-c1">48</span><span class="pl-en"> </span><span class="pl-c1">83</span><span class="pl-en"> f9 </span><span class="pl-c1">01</span><span class="pl-en"> 0f </span><span class="pl-c1">86</span><span class="pl-en"> ca </span><span class="pl-c1">00</span><span class="pl-en"> </span><span class="pl-c1">00</span><span class="pl-en"> </span><span class="pl-c1">00</span><span class="pl-en"> </span><span class="pl-c1">48</span><span class="pl-en"> ff c3 </span><span class="pl-c1">48</span><span class="pl-en"> </span><span class="pl-c1">89</span><span class="pl-en"> .H.........H..H.</span>
<span class="pl-en"> </span><span class="pl-c1">0x0040</span><span class="pl-en"> c5 </span><span class="pl-c1">48</span><span class="pl-en"> c1 fd </span><span class="pl-c1">08</span><span class="pl-en"> </span><span class="pl-c1">40</span><span class="pl-en"> </span><span class="pl-c1">88</span><span class="pl-en"> 2b </span><span class="pl-c1">48</span><span class="pl-en"> </span><span class="pl-c1">89</span><span class="pl-en"> d3 </span><span class="pl-c1">48</span><span class="pl-en"> </span><span class="pl-c1">83</span><span class="pl-en"> f9 </span><span class="pl-c1">02</span><span class="pl-en"> 0f .H...@.</span><span class="pl-s1">+</span><span class="pl-en">H..H....</span>
<span class="pl-en"> </span><span class="pl-c1">0x0050</span><span class="pl-en"> </span><span class="pl-c1">86</span><span class="pl-en"> a9 </span><span class="pl-c1">00</span><span class="pl-en"> </span><span class="pl-c1">00</span><span class="pl-en"> </span><span class="pl-c1">00</span><span class="pl-en"> </span><span class="pl-c1">48</span><span class="pl-en"> </span><span class="pl-c1">83</span><span class="pl-en"> c3 </span><span class="pl-c1">02</span><span class="pl-en"> </span><span class="pl-c1">48</span><span class="pl-en"> </span><span class="pl-c1">89</span><span class="pl-en"> c5 </span><span class="pl-c1">48</span><span class="pl-en"> c1 fd </span><span class="pl-c1">10</span><span class="pl-en"> .....H...H..H...</span>
<span class="pl-en"> </span><span class="pl-c1">0x0060</span><span class="pl-en"> </span><span class="pl-c1">40</span><span class="pl-en"> </span><span class="pl-c1">88</span><span class="pl-en"> 2b </span><span class="pl-c1">48</span><span class="pl-en"> </span><span class="pl-c1">89</span><span class="pl-en"> d3 </span><span class="pl-c1">48</span><span class="pl-en"> </span><span class="pl-c1">83</span><span class="pl-en"> f9 </span><span class="pl-c1">03</span><span class="pl-en"> 0f </span><span class="pl-c1">86</span><span class="pl-en"> </span><span class="pl-c1">87</span><span class="pl-en"> </span><span class="pl-c1">00</span><span class="pl-en"> </span><span class="pl-c1">00</span><span class="pl-en"> </span><span class="pl-c1">00</span><span class="pl-en"> @.</span><span class="pl-s1">+</span><span class="pl-en">H..H.........</span>
<span class="pl-en"> </span><span class="pl-c1">0x0070</span><span class="pl-en"> </span><span class="pl-c1">48</span><span class="pl-en"> </span><span class="pl-c1">83</span><span class="pl-en"> c3 </span><span class="pl-c1">03</span><span class="pl-en"> </span><span class="pl-c1">48</span><span class="pl-en"> </span><span class="pl-c1">89</span><span class="pl-en"> c5 </span><span class="pl-c1">48</span><span class="pl-en"> c1 fd </span><span class="pl-c1">18</span><span class="pl-en"> </span><span class="pl-c1">40</span><span class="pl-en"> </span><span class="pl-c1">88</span><span class="pl-en"> 2b </span><span class="pl-c1">48</span><span class="pl-en"> </span><span class="pl-c1">89</span><span class="pl-en"> H...H..H...@.</span><span class="pl-s1">+</span><span class="pl-en">H.</span>
<span class="pl-en"> </span><span class="pl-c1">0x0080</span><span class="pl-en"> d3 </span><span class="pl-c1">48</span><span class="pl-en"> </span><span class="pl-c1">83</span><span class="pl-en"> f9 </span><span class="pl-c1">04</span><span class="pl-en"> </span><span class="pl-c1">76</span><span class="pl-en"> </span><span class="pl-c1">69</span><span class="pl-en"> </span><span class="pl-c1">48</span><span class="pl-en"> </span><span class="pl-c1">83</span><span class="pl-en"> c3 </span><span class="pl-c1">04</span><span class="pl-en"> </span><span class="pl-c1">48</span><span class="pl-en"> </span><span class="pl-c1">89</span><span class="pl-en"> c5 </span><span class="pl-c1">48</span><span class="pl-en"> c1 .H...viH...H..H.</span>
<span class="pl-en"> </span><span class="pl-c1">0x0090</span><span class="pl-en"> fd </span><span class="pl-c1">20</span><span class="pl-en"> </span><span class="pl-c1">40</span><span class="pl-en"> </span><span class="pl-c1">88</span><span class="pl-en"> 2b </span><span class="pl-c1">48</span><span class="pl-en"> </span><span class="pl-c1">89</span><span class="pl-en"> d3 </span><span class="pl-c1">48</span><span class="pl-en"> </span><span class="pl-c1">83</span><span class="pl-en"> f9 </span><span class="pl-c1">05</span><span class="pl-en"> </span><span class="pl-c1">76</span><span class="pl-en"> 4b </span><span class="pl-c1">48</span><span class="pl-en"> </span><span class="pl-c1">83</span><span class="pl-en"> . @.</span><span class="pl-s1">+</span><span class="pl-en">H..H...vKH.</span>
<span class="pl-en"> </span><span class="pl-c1">0x00a0</span><span class="pl-en"> c3 </span><span class="pl-c1">05</span><span class="pl-en"> </span><span class="pl-c1">48</span><span class="pl-en"> </span><span class="pl-c1">89</span><span class="pl-en"> c5 </span><span class="pl-c1">48</span><span class="pl-en"> c1 fd </span><span class="pl-c1">28</span><span class="pl-en"> </span><span class="pl-c1">40</span><span class="pl-en"> </span><span class="pl-c1">88</span><span class="pl-en"> 2b </span><span class="pl-c1">48</span><span class="pl-en"> </span><span class="pl-c1">89</span><span class="pl-en"> d3 </span><span class="pl-c1">48</span><span class="pl-en"> ..H..H..(@.</span><span class="pl-s1">+</span><span class="pl-en">H..H</span>
<span class="pl-en"> </span><span class="pl-c1">0x00b0</span><span class="pl-en"> </span><span class="pl-c1">83</span><span class="pl-en"> f9 </span><span class="pl-c1">06</span><span class="pl-en"> </span><span class="pl-c1">76</span><span class="pl-en"> 2d </span><span class="pl-c1">48</span><span class="pl-en"> </span><span class="pl-c1">83</span><span class="pl-en"> c3 </span><span class="pl-c1">06</span><span class="pl-en"> </span><span class="pl-c1">48</span><span class="pl-en"> </span><span class="pl-c1">89</span><span class="pl-en"> c5 </span><span class="pl-c1">48</span><span class="pl-en"> c1 fd </span><span class="pl-c1">30</span><span class="pl-en"> ...v</span><span class="pl-s1">-</span><span class="pl-en">H...H..H..</span><span class="pl-c1">0</span>
<span class="pl-en"> </span><span class="pl-c1">0x00c0</span><span class="pl-en"> </span><span class="pl-c1">40</span><span class="pl-en"> </span><span class="pl-c1">88</span><span class="pl-en"> 2b </span><span class="pl-c1">48</span><span class="pl-en"> </span><span class="pl-c1">89</span><span class="pl-en"> d3 </span><span class="pl-c1">48</span><span class="pl-en"> </span><span class="pl-c1">83</span><span class="pl-en"> f9 </span><span class="pl-c1">07</span><span class="pl-en"> </span><span class="pl-c1">76</span><span class="pl-en"> 0f </span><span class="pl-c1">48</span><span class="pl-en"> </span><span class="pl-c1">83</span><span class="pl-en"> c3 </span><span class="pl-c1">07</span><span class="pl-en"> @.</span><span class="pl-s1">+</span><span class="pl-en">H..H...v.H...</span>
<span class="pl-en"> </span><span class="pl-c1">0x00d0</span><span class="pl-en"> </span><span class="pl-c1">48</span><span class="pl-en"> </span><span class="pl-c1">89</span><span class="pl-en"> c5 </span><span class="pl-c1">48</span><span class="pl-en"> c1 fd </span><span class="pl-c1">38</span><span class="pl-en"> </span><span class="pl-c1">40</span><span class="pl-en"> </span><span class="pl-c1">88</span><span class="pl-en"> 2b c3 e8 </span><span class="pl-c1">00</span><span class="pl-en"> </span><span class="pl-c1">00</span><span class="pl-en"> </span><span class="pl-c1">00</span><span class="pl-en"> </span><span class="pl-c1">00</span><span class="pl-en"> H..H..</span><span class="pl-c1">8</span><span class="pl-en">@.</span><span class="pl-s1">+</span><span class="pl-en">......</span>
<span class="pl-en"> </span><span class="pl-c1">0x00e0</span><span class="pl-en"> 0f </span><span class="pl-c1">0b</span><span class="pl-en"> e8 </span><span class="pl-c1">00</span><span class="pl-en"> </span><span class="pl-c1">00</span><span class="pl-en"> </span><span class="pl-c1">00</span><span class="pl-en"> </span><span class="pl-c1">00</span><span class="pl-en"> 0f </span><span class="pl-c1">0b</span><span class="pl-en"> e8 </span><span class="pl-c1">00</span><span class="pl-en"> </span><span class="pl-c1">00</span><span class="pl-en"> </span><span class="pl-c1">00</span><span class="pl-en"> </span><span class="pl-c1">00</span><span class="pl-en"> 0f </span><span class="pl-c1">0b</span><span class="pl-en"> ................</span>
<span class="pl-en"> </span><span class="pl-c1">0x00f0</span><span class="pl-en"> e8 </span><span class="pl-c1">00</span><span class="pl-en"> </span><span class="pl-c1">00</span><span class="pl-en"> </span><span class="pl-c1">00</span><span class="pl-en"> </span><span class="pl-c1">00</span><span class="pl-en"> 0f </span><span class="pl-c1">0b</span><span class="pl-en"> e8 </span><span class="pl-c1">00</span><span class="pl-en"> </span><span class="pl-c1">00</span><span class="pl-en"> </span><span class="pl-c1">00</span><span class="pl-en"> </span><span class="pl-c1">00</span><span class="pl-en"> 0f </span><span class="pl-c1">0b</span><span class="pl-en"> e8 </span><span class="pl-c1">00</span><span class="pl-en"> ................</span>
<span class="pl-en"> </span><span class="pl-c1">0x0100</span><span class="pl-en"> </span><span class="pl-c1">00</span><span class="pl-en"> </span><span class="pl-c1">00</span><span class="pl-en"> </span><span class="pl-c1">00</span><span class="pl-en"> 0f </span><span class="pl-c1">0b</span><span class="pl-en"> e8 </span><span class="pl-c1">00</span><span class="pl-en"> </span><span class="pl-c1">00</span><span class="pl-en"> </span><span class="pl-c1">00</span><span class="pl-en"> </span><span class="pl-c1">00</span><span class="pl-en"> 0f </span><span class="pl-c1">0b</span><span class="pl-en"> e8 </span><span class="pl-c1">00</span><span class="pl-en"> </span><span class="pl-c1">00</span><span class="pl-en"> </span><span class="pl-c1">00</span><span class="pl-en"> ................</span>
<span class="pl-en"> </span><span class="pl-c1">0x0110</span><span class="pl-en"> </span><span class="pl-c1">00</span><span class="pl-en"> 0f </span><span class="pl-c1">0b</span><span class="pl-en"> e8 </span><span class="pl-c1">00</span><span class="pl-en"> </span><span class="pl-c1">00</span><span class="pl-en"> </span><span class="pl-c1">00</span><span class="pl-en"> </span><span class="pl-c1">00</span><span class="pl-en"> e9 e3 fe ff ff .............</span>
<span class="pl-en"> rel </span><span class="pl-c1">5</span><span class="pl-s1">+</span><span class="pl-c1">4</span><span class="pl-en"> t=</span><span class="pl-c1">13</span><span class="pl-en"> </span><span class="pl-s1">+</span><span class="pl-c1">0</span>
<span class="pl-en"> rel </span><span class="pl-c1">220</span><span class="pl-s1">+</span><span class="pl-c1">4</span><span class="pl-en"> t=</span><span class="pl-c1">5</span><span class="pl-en"> runtime.panicindex</span><span class="pl-s1">+</span><span class="pl-c1">0</span>
<span class="pl-en"> rel </span><span class="pl-c1">227</span><span class="pl-s1">+</span><span class="pl-c1">4</span><span class="pl-en"> t=</span><span class="pl-c1">5</span><span class="pl-en"> runtime.panicindex</span><span class="pl-s1">+</span><span class="pl-c1">0</span>
<span class="pl-en"> rel </span><span class="pl-c1">234</span><span class="pl-s1">+</span><span class="pl-c1">4</span><span class="pl-en"> t=</span><span class="pl-c1">5</span><span class="pl-en"> runtime.panicindex</span><span class="pl-s1">+</span><span class="pl-c1">0</span>
<span class="pl-en"> rel </span><span class="pl-c1">241</span><span class="pl-s1">+</span><span class="pl-c1">4</span><span class="pl-en"> t=</span><span class="pl-c1">5</span><span class="pl-en"> runtime.panicindex</span><span class="pl-s1">+</span><span class="pl-c1">0</span>
<span class="pl-en"> rel </span><span class="pl-c1">248</span><span class="pl-s1">+</span><span class="pl-c1">4</span><span class="pl-en"> t=</span><span class="pl-c1">5</span><span class="pl-en"> runtime.panicindex</span><span class="pl-s1">+</span><span class="pl-c1">0</span>
<span class="pl-en"> rel </span><span class="pl-c1">255</span><span class="pl-s1">+</span><span class="pl-c1">4</span><span class="pl-en"> t=</span><span class="pl-c1">5</span><span class="pl-en"> runtime.panicindex</span><span class="pl-s1">+</span><span class="pl-c1">0</span>
<span class="pl-en"> rel </span><span class="pl-c1">262</span><span class="pl-s1">+</span><span class="pl-c1">4</span><span class="pl-en"> t=</span><span class="pl-c1">5</span><span class="pl-en"> runtime.panicindex</span><span class="pl-s1">+</span><span class="pl-c1">0</span>
<span class="pl-en"> rel </span><span class="pl-c1">269</span><span class="pl-s1">+</span><span class="pl-c1">4</span><span class="pl-en"> t=</span><span class="pl-c1">5</span><span class="pl-en"> runtime.panicindex</span><span class="pl-s1">+</span><span class="pl-c1">0</span>
<span class="pl-en"> rel </span><span class="pl-c1">276</span><span class="pl-s1">+</span><span class="pl-c1">4</span><span class="pl-en"> t=</span><span class="pl-c1">5</span><span class="pl-en"> runtime.morestack_noctxt</span><span class="pl-s1">+</span><span class="pl-c1">0</span></pre></div>
<p dir="auto">Putting aside the superfluous amount of bounds checking (captured in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="51283526" data-permission-text="Title is private" data-url="https://github.com/golang/go/issues/5364" data-hovercard-type="issue" data-hovercard-url="/golang/go/issues/5364/hovercard" href="https://github.com/golang/go/issues/5364">#5364</a>), it seems like this entire function could be accomplished using some type of store64 instruction instead of 8 repetitive copies of something like:</p>
<div class="highlight highlight-source-assembly notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" 0x00b9 00185 (/home/rawr/main9.go:12) MOVQ AX, BP
0x00bc 00188 (/home/rawr/main9.go:12) SARQ $48, BP
0x00c0 00192 (/home/rawr/main9.go:12) MOVB BPB, (BX)
0x00c3 00195 (/home/rawr/main9.go:13) MOVQ DX, BX
0x00c6 00198 (/home/rawr/main9.go:13) CMPQ CX, $7
0x00ca 00202 (/home/rawr/main9.go:13) JLS $1, 219"><pre class="notranslate"><span class="pl-en"> </span><span class="pl-c1">0x00b9</span><span class="pl-en"> </span><span class="pl-c1">00185</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">12</span><span class="pl-en">) </span><span class="pl-k">MOVQ</span><span class="pl-en"> </span><span class="pl-v">AX</span><span class="pl-s1">,</span><span class="pl-en"> </span><span class="pl-v">BP</span>
<span class="pl-en"> </span><span class="pl-c1">0x00bc</span><span class="pl-en"> </span><span class="pl-c1">00188</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">12</span><span class="pl-en">) SARQ</span> <span class="pl-c1">$</span><span class="pl-c1">48</span><span class="pl-s1">,</span><span class="pl-en"> </span><span class="pl-v">BP</span>
<span class="pl-en"> </span><span class="pl-c1">0x00c0</span><span class="pl-en"> </span><span class="pl-c1">00192</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">12</span><span class="pl-en">) MOVB BPB</span><span class="pl-s1">,</span><span class="pl-en"> (</span><span class="pl-v">BX</span><span class="pl-en">)</span>
<span class="pl-en"> </span><span class="pl-c1">0x00c3</span><span class="pl-en"> </span><span class="pl-c1">00195</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">13</span><span class="pl-en">) </span><span class="pl-k">MOVQ</span><span class="pl-en"> </span><span class="pl-v">DX</span><span class="pl-s1">,</span><span class="pl-en"> </span><span class="pl-v">BX</span>
<span class="pl-en"> </span><span class="pl-c1">0x00c6</span><span class="pl-en"> </span><span class="pl-c1">00198</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">13</span><span class="pl-en">) CMPQ </span><span class="pl-v">CX</span><span class="pl-s1">,</span> <span class="pl-c1">$</span><span class="pl-c1">7</span>
<span class="pl-en"> </span><span class="pl-c1">0x00ca</span><span class="pl-en"> </span><span class="pl-c1">00202</span><span class="pl-en"> (/home/rawr/main9.go:</span><span class="pl-c1">13</span><span class="pl-en">) JLS</span> <span class="pl-c1">$</span><span class="pl-c1">1</span><span class="pl-s1">,</span><span class="pl-en"> </span><span class="pl-c1">219</span></pre></div> | 1 |
<p dir="auto"><strong>Symfony version(s) affected</strong>: 2.8.39<br>
PHP Version: 7.1.17</p>
<p dir="auto"><strong>Description</strong><br>
[InvalidArgumentException]<br>
When I run the console command: php bin/console <strong>-e=dev</strong> , I get an error:<br>
The file "/path_to_project/project/app/config/config_=dev.yml" does not exist.<br>
But when I do this through: php bin/console <strong>--env=dev,</strong> everything is ok</p>
<p dir="auto"><strong>How to reproduce</strong></p>
<p dir="auto">php bin/console -e=dev</p> | <table role="table">
<thead>
<tr>
<th>Q</th>
<th>A</th>
</tr>
</thead>
<tbody>
<tr>
<td>Bug report?</td>
<td>yes</td>
</tr>
<tr>
<td>Feature request?</td>
<td>no</td>
</tr>
<tr>
<td>BC Break report?</td>
<td>yes</td>
</tr>
<tr>
<td>RFC?</td>
<td>no</td>
</tr>
<tr>
<td>Symfony version</td>
<td>3.4.5</td>
</tr>
</tbody>
</table>
<p dir="auto">Hi...</p>
<p dir="auto">when coding I was used to setting an alias as so:</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="alias dev='./bin/console -e=dev'"><pre class="notranslate"><span class="pl-c1">alias</span> dev=<span class="pl-s"><span class="pl-pds">'</span>./bin/console -e=dev<span class="pl-pds">'</span></span></pre></div>
<p dir="auto">But since I upgraded to <code class="notranslate">3.4.5</code> I got this error:</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$ bin/console -e=dev c:c
In FileLocator.php line 44:
The file "/var/www/html/app/config/config_=dev.yml" does not exist."><pre class="notranslate">$ bin/console -e=dev c:c
In FileLocator.php line 44:
The file <span class="pl-s"><span class="pl-pds">"</span>/var/www/html/app/config/config_=dev.yml<span class="pl-pds">"</span></span> does not exist.</pre></div>
<p dir="auto">It seems now the good syntax is either</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="./bin/console -edev c:c
# Or
./bin/console --env=dev c:c"><pre class="notranslate">./bin/console -edev c:c
<span class="pl-c"><span class="pl-c">#</span> Or</span>
./bin/console --env=dev c:c</pre></div>
<p dir="auto">It seems to me that it is a breaking change (not a huge one of course but still...)</p>
<p dir="auto">Regards,<br>
Adrien</p> | 1 |
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=gthomps95" rel="nofollow">Greg Thompson</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-9181?redirect=false" rel="nofollow">SPR-9181</a></strong> and commented</p>
<p dir="auto">I have a session scoped bean. It's marked with <aop:scoped-proxy />. I'm trying to inject a Provider or ObjectFactory into the session bean using <code class="notranslate">@Inject</code> or <code class="notranslate">@Autowired</code>. It injects fine the first time the session bean is created. On the second creation of the session bean (for a 2nd session), I get java.lang.IllegalArgumentException when setting the <code class="notranslate">@Inject</code> or <code class="notranslate">@Autowired</code> property. It's trying to set the actual bean, instead of a provider or an object factory.</p>
<p dir="auto">I stepped through the code. The code in the getDependencyType() method of DependencyDescriptor doesn't seem to work as expected when it's setting the value on the second session bean. Something with the nesting level. So, I don't get a DependencyProvider as expected in the resolveDependency method of DefaultListableBeanFactory class. The getDependencyType returns the class of the bean, instead of a provider or object factory class that is the type of the property.</p>
<p dir="auto">This worked fine with 3.0.</p>
<hr>
<p dir="auto"><strong>Attachments:</strong></p>
<ul dir="auto">
<li><a href="https://jira.spring.io/secure/attachment/19995/SPR-9181.tgz" rel="nofollow">SPR-9181.tgz</a> (<em>4.89 kB</em>)</li>
</ul>
<p dir="auto"><strong>Issue Links:</strong></p>
<ul dir="auto">
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398119000" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/14024" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/14024/hovercard" href="https://github.com/spring-projects/spring-framework/issues/14024">#14024</a> Regression: javax.inject.Provider resolution too agressive (<em><strong>"is duplicated by"</strong></em>)</li>
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398152065" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/14264" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/14264/hovercard" href="https://github.com/spring-projects/spring-framework/issues/14264">#14264</a> Injection of Provider fails for prototype-scoped beans (<em><strong>"is duplicated by"</strong></em>)</li>
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398153775" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/14478" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/14478/hovercard" href="https://github.com/spring-projects/spring-framework/issues/14478">#14478</a> Automatically created java.inject.Provider cannot be injected into session scoped beans (<em><strong>"is duplicated by"</strong></em>)</li>
</ul>
<p dir="auto"><strong>Referenced from:</strong> commits <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/spring-projects/spring-framework/commit/1bd775f828ddb1f2919c2a57b1151dc3cca9f14c/hovercard" href="https://github.com/spring-projects/spring-framework/commit/1bd775f828ddb1f2919c2a57b1151dc3cca9f14c"><tt>1bd775f</tt></a>, <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/spring-projects/spring-framework/commit/fbe955ab284f5782b80a852b84933af14c32b006/hovercard" href="https://github.com/spring-projects/spring-framework/commit/fbe955ab284f5782b80a852b84933af14c32b006"><tt>fbe955a</tt></a></p>
<p dir="auto">6 votes, 8 watchers</p> | <p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=divyabhardwaj" rel="nofollow">divyabhardwaj</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-4835?redirect=false" rel="nofollow">SPR-4835</a></strong> and commented</p>
<p dir="auto">I am having an application made in Core spring(Spring+ JPA). I have converted this whole application into a jar . I m using this jar in another spring application (Client application). The applicationContext.xml of client application is importing the applicationContext present in the jar.I m getting the following error in doing so.</p>
<p dir="auto">Exception in thread "main" org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'roleDAO': Injection of persistence methods failed; nested exception is java.lang.NoClassDefFoundError: javax.transaction.SystemException<br>
at org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor.postProcessPropertyValues(PersistenceAnnotationBeanPostProcessor.java:323)<br>
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:966)<br>
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:462)<br>
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory$1.run(AbstractAutowireCapableBeanFactory.java:404)<br>
at java.security.AccessController.doPrivileged(AccessController.java:197)<br>
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:375)<br>
at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:263)<br>
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:170)<br>
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:260)<br>
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:184)<br>
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:163)<br>
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:430)<br>
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:729)<br>
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:381)<br>
at org.springframework.context.support.ClassPathXmlApplicationContext.<init>(ClassPathXmlApplicationContext.java:139)<br>
at org.springframework.context.support.ClassPathXmlApplicationContext.<init>(ClassPathXmlApplicationContext.java:83)<br>
at TestApp.main(TestApp.java:16)<br>
Caused by: java.lang.NoClassDefFoundError: javax.transaction.SystemException<br>
at java.lang.J9VMInternals.verifyImpl(Native Method)<br>
at java.lang.J9VMInternals.verify(J9VMInternals.java:68)<br>
at java.lang.J9VMInternals.verify(J9VMInternals.java:66)<br>
at java.lang.J9VMInternals.initialize(J9VMInternals.java:129)<br>
at org.hibernate.ejb.EntityManagerFactoryImpl.createEntityManager(EntityManagerFactoryImpl.java:39)<br>
at org.hibernate.ejb.EntityManagerFactoryImpl.createEntityManager(EntityManagerFactoryImpl.java:34)<br>
at org.springframework.orm.jpa.ExtendedEntityManagerCreator.createContainerManagedEntityManager(ExtendedEntityManagerCreator.java:197)<br>
at org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor$PersistenceElement.resolveExtendedEntityManager(PersistenceAnnotationBeanPostProcessor.java:625)<br>
at org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor$PersistenceElement.getResourceToInject(PersistenceAnnotationBeanPostProcessor.java:567)<br>
at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:193)<br>
at org.springframework.beans.factory.annotation.InjectionMetadata.injectMethods(InjectionMetadata.java:116)<br>
at org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor.postProcessPropertyValues(PersistenceAnnotationBeanPostProcessor.java:320)</p>
<p dir="auto">Please help me in solving the above issue.</p>
<hr>
<p dir="auto"><strong>Issue Links:</strong></p>
<ul dir="auto">
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398088504" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/9512" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/9512/hovercard" href="https://github.com/spring-projects/spring-framework/issues/9512">#9512</a> ApplicationContext.xml cannot read another applicationContext present in the jar (present in classpath of Project) (<em><strong>"is duplicated by"</strong></em>)</li>
</ul> | 0 |
<table role="table">
<thead>
<tr>
<th>Q</th>
<th>A</th>
</tr>
</thead>
<tbody>
<tr>
<td>Bug report?</td>
<td>yes</td>
</tr>
<tr>
<td>Feature request?</td>
<td>yes</td>
</tr>
<tr>
<td>BC Break report?</td>
<td>no</td>
</tr>
<tr>
<td>RFC?</td>
<td>no</td>
</tr>
<tr>
<td>Symfony version</td>
<td>4.1.0</td>
</tr>
</tbody>
</table>
<blockquote>
<p dir="auto">Sorry if this is a duplicate - I THOUGHT I opened this issue already, but cannot find it.</p>
</blockquote>
<p dir="auto">When autowiring a controller argument fails (e.g. no service exists to match the type-hint), you see a very generic message:</p>
<blockquote>
<p dir="auto">Controller "App\Controller\LiftController::indexAction()" requires that you provide a value for the "$foo" argument. Either the argument is nullable and no null value has been provided, no default value has been provided or because there is a non optional argument after this one.</p>
</blockquote>
<p dir="auto">But, if this argument is not provided due to some autowiring error, the system, the error could/should report that instead - e.g.:</p>
<blockquote>
<p dir="auto">Cannot autowire service "App\Controller\BarController": argument "$foo" of method "indexAction()" has type "App\Controller\Foo" but this class was not found.</p>
</blockquote>
<p dir="auto">This is non-trivial, as the autowiring errors would need to be <em>stored</em>, and the argument resolver system would need some new way of reporting <em>why</em> the argument may not have been matched. I've talked about this with <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/nicolas-grekas/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/nicolas-grekas">@nicolas-grekas</a> a long time ago: it's one of the rough spots for action DI.</p> | <p dir="auto">When I will use FOSUserBundle I have this error:<br>
<code class="notranslate">An exception has been thrown during the rendering of a template ("Warning: strtr() expects parameter 1 to be string, array given in .../vendor/symfony/symfony/src/Symfony/Component/Translation/IdentityTranslator.php line 62") in "FOSUserBundle:Registration:confirmed.html.twig".</code></p>
<p dir="auto">The same problem as <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1218390" data-permission-text="Title is private" data-url="https://github.com/symfony/symfony/issues/1687" data-hovercard-type="issue" data-hovercard-url="/symfony/symfony/issues/1687/hovercard" href="https://github.com/symfony/symfony/issues/1687">#1687</a>.</p>
<p dir="auto">Any idea? Thanks</p> | 0 |
<p dir="auto">There is a bug on the <code class="notranslate">class</code> transform, which does not match spec 1:1. When a constructor is not defined, the parent constructor should be called with <code class="notranslate">...args</code>, which means calling <code class="notranslate">Array.prototype[Symbol.iterator]</code> under the hood.</p>
<h3 dir="auto">Input Code</h3>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="Array.prototype[Symbol.iterator] = () => console.log('potato');
class Foo extends Error() {}
new Foo();"><pre class="notranslate"><span class="pl-v">Array</span><span class="pl-kos">.</span><span class="pl-c1">prototype</span><span class="pl-kos">[</span><span class="pl-v">Symbol</span><span class="pl-kos">.</span><span class="pl-c1">iterator</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">'potato'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">class</span> <span class="pl-v">Foo</span> <span class="pl-k">extends</span> <span class="pl-v">Error</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span><span class="pl-kos">}</span>
<span class="pl-k">new</span> <span class="pl-v">Foo</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<h3 dir="auto">Babel/Babylon Configuration (.babelrc, package.json, cli command)</h3>
<p dir="auto">Tried with REPL, es2015 preset.</p>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto"><code class="notranslate">potato</code> should appear in the console.</p>
<h3 dir="auto">Current Behavior</h3>
<p dir="auto"><code class="notranslate">potato</code> does not appear in the console :( Essentially because no <code class="notranslate">Symbol.iterator</code> is pulled in.</p>
<h3 dir="auto">Possible Solution</h3>
<p dir="auto">Transform:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="(Foo.__proto__ || Object.getPrototypeOf(Foo)).apply(this, arguments)"><pre class="notranslate"><span class="pl-kos">(</span><span class="pl-v">Foo</span><span class="pl-kos">.</span><span class="pl-c1">__proto__</span> <span class="pl-c1">||</span> <span class="pl-v">Object</span><span class="pl-kos">.</span><span class="pl-en">getPrototypeOf</span><span class="pl-kos">(</span><span class="pl-v">Foo</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">apply</span><span class="pl-kos">(</span><span class="pl-smi">this</span><span class="pl-kos">,</span> <span class="pl-smi">arguments</span><span class="pl-kos">)</span></pre></div>
<p dir="auto">Into:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="(Foo.__proto__ || Object.getPrototypeOf(Foo))(...args)"><pre class="notranslate"><span class="pl-kos">(</span><span class="pl-v">Foo</span><span class="pl-kos">.</span><span class="pl-c1">__proto__</span> <span class="pl-c1">||</span> <span class="pl-v">Object</span><span class="pl-kos">.</span><span class="pl-en">getPrototypeOf</span><span class="pl-kos">(</span><span class="pl-v">Foo</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">(</span>...<span class="pl-s1">args</span><span class="pl-kos">)</span></pre></div>
<p dir="auto">And let the spread/rest be recompiled to use the iterator.</p>
<h3 dir="auto">Context</h3>
<p dir="auto">See <a href="https://bugs.chromium.org/p/v8/issues/detail?id=7710&can=2&start=0&num=100&q=&colspec=ID%20Type%20Status%20Priority%20Owner%20Summary%20HW%20OS%20Component%20Stars&groupby=&sort=" rel="nofollow">an V8 issue</a> for that. It's probably a very edge case anyway, but having the strict class transformer and the loose one, I'd expect the strict to be strict, not semi-loose :)</p> | <h3 dir="auto">Input Code</h3>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="Array.prototype[Symbol.iterator] = function() {
throw new Error();
}
class c {} ;
class b extends c {}
new b();"><pre class="notranslate"><span class="pl-v">Array</span><span class="pl-kos">.</span><span class="pl-c1">prototype</span><span class="pl-kos">[</span><span class="pl-v">Symbol</span><span class="pl-kos">.</span><span class="pl-c1">iterator</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">throw</span> <span class="pl-k">new</span> <span class="pl-v">Error</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">class</span> <span class="pl-s1">c</span> <span class="pl-kos">{</span><span class="pl-kos">}</span> <span class="pl-kos">;</span>
<span class="pl-k">class</span> <span class="pl-s1">b</span> <span class="pl-k">extends</span> <span class="pl-s1">c</span> <span class="pl-kos">{</span><span class="pl-kos">}</span>
<span class="pl-k">new</span> <span class="pl-s1">b</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<h3 dir="auto">Babel Configuration (.babelrc, package.json, cli command)</h3>
<p dir="auto">presets -latest</p>
<h3 dir="auto">Expected Behavior</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="→ cat test2.js
Array.prototype[Symbol.iterator] = function() {
throw new Error();
}
class c {} ;
class b extends c {}
var y = new b();
→ ./out.gn/x64.debug/d8 test2.js
test2.js:2: Error
throw new Error();
^
Error
at Array.(anonymous function) (test2.js:2:9)
at b (test2.js:5:1)
at test2.js:6:9"><pre class="notranslate"><code class="notranslate">→ cat test2.js
Array.prototype[Symbol.iterator] = function() {
throw new Error();
}
class c {} ;
class b extends c {}
var y = new b();
→ ./out.gn/x64.debug/d8 test2.js
test2.js:2: Error
throw new Error();
^
Error
at Array.(anonymous function) (test2.js:2:9)
at b (test2.js:5:1)
at test2.js:6:9
</code></pre></div>
<h3 dir="auto">Current Behavior</h3>
<p dir="auto">No error</p>
<h3 dir="auto">Possible Solution</h3>
<h3 dir="auto">Context</h3>
<h3 dir="auto">Your Environment</h3>
<table role="table">
<thead>
<tr>
<th>software</th>
<th>version</th>
</tr>
</thead>
<tbody>
<tr>
<td>Babel</td>
<td></td>
</tr>
<tr>
<td>node</td>
<td></td>
</tr>
<tr>
<td>npm</td>
<td></td>
</tr>
<tr>
<td>Operating System</td>
<td></td>
</tr>
</tbody>
</table> | 1 |
<h3 dir="auto">Version</h3>
<p dir="auto">2.6.10</p>
<h3 dir="auto">Reproduction link</h3>
<p dir="auto"><a href="https://test.ipalfish.com/klian/web/dist/m/picture/vip-code.html?from=singlemessage&isappinstalled=0" rel="nofollow">https://test.ipalfish.com/klian/web/dist/m/picture/vip-code.html?from=singlemessage&isappinstalled=0</a></p>
<h3 dir="auto">Steps to reproduce</h3>
<p dir="auto">config project by vue-cli 3.0, then load page in wechat devtools</p>
<p dir="auto">see the error below:</p>
<p dir="auto">libs.213765e4.js:1 Uncaught SyntaxError: Invalid regular expression: /[^a-zA-Z·À-ÖØ-öø-ͽͿ-῿‌-�‿-��-�Ⰰ-⿯�-퟿豈-�ﷰ-�.$_\d]/: Range out of order in character class<br>
at RegExp ()<br>
at Module. (libs.213765e4.js:1)<br>
at Module.2b0e (libs.213765e4.js:1)<br>
at r (vip-code.f5f61c2a.js:1)<br>
at Object.a1c6 (vip-code.f5f61c2a.js:1)<br>
at r (vip-code.f5f61c2a.js:1)<br>
at Module.56d7 (vip-code.f5f61c2a.js:1)<br>
at r (vip-code.f5f61c2a.js:1)<br>
at Object.17 (vip-code.f5f61c2a.js:1)<br>
at r (vip-code.f5f61c2a.js:1)</p>
<h3 dir="auto">What is expected?</h3>
<p dir="auto">render successfully</p>
<h3 dir="auto">What is actually happening?</h3>
<p dir="auto">report an error</p>
<hr>
<p dir="auto">it seem to a bug in vue.esm.js line 478<br>
var unicodeLetters = 'a-zA-Z\u00B7\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u037D\u037F-\u1FFF\u200C-\u200D\u203F-\u2040\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-<br>
it only happen when production<br>
<code class="notranslate">config.devtool = isDev ? 'cheap-module-eval-source-map' : 'hidden-source-map'</code></p> | <p dir="auto">in my component,i use some custom element just for making it won't be effected by other style.<br>
such as:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="<template>
<!--'my-el' is just a common dom el,not component-->
<my-el></my-el>
</template>"><pre class="notranslate"><code class="notranslate"><template>
<!--'my-el' is just a common dom el,not component-->
<my-el></my-el>
</template>
</code></pre></div>
<p dir="auto">but,vue always warm that ''Unknown custom element...',how to ignore it without runing '<code class="notranslate">Vue.config.silent = true</code>'?</p> | 0 |
<p dir="auto">On at least two electron apps I noticed that tray icons would disappear after gnome has been locked and unlocked.</p>
<p dir="auto">My system / these apps:</p>
<ul dir="auto">
<li>Kernel: 5.6.4-arch1-1</li>
<li>Desktop: GNOME Shell 3.36.1</li>
<li>mattermost-desktop 4.4.0-4</li>
<li>riot-desktop: 1.5.15-1</li>
<li>electron: v8.2.2</li>
</ul>
<h3 dir="auto">Preflight Checklist</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the <a href="https://github.com/electron/electron/blob/master/CONTRIBUTING.md">Contributing Guidelines</a> for this project.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow the <a href="https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md">Code of Conduct</a> that this project adheres to.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the issue tracker for an issue that matches the one I want to file, without success.</li>
</ul>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">Tray icons should be visible after locking and unlocking the screen.</p>
<h3 dir="auto">Actual Behavior</h3>
<p dir="auto">Tray icons appear just fine after the app has been started first. Then they disappear after the screen has been locked at least once.</p>
<h3 dir="auto">To Reproduce</h3>
<p dir="auto">Start one of the apps in question, activate tray icons. See the tray icon is visible. Lock the screen and unlock again. The tray icon is now missing</p>
<h3 dir="auto">Additional Information</h3>
<p dir="auto">By random chance, I noticed a <a href="https://github.com/jiahaog/nativefier/issues/945" data-hovercard-type="issue" data-hovercard-url="/nativefier/nativefier/issues/945/hovercard">similar</a> bugreport which mentions a <a href="https://github.com/telegramdesktop/tdesktop/issues/7541" data-hovercard-type="issue" data-hovercard-url="/telegramdesktop/tdesktop/issues/7541/hovercard">fix</a> for the telegram desktop app. There seems to be a problem with the icon counter, but the telegram app does not use electron. However, maybe it helps.</p> | <h3 dir="auto">Preflight Checklist</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the <a href="https://github.com/electron/electron/blob/master/CONTRIBUTING.md">Contributing Guidelines</a> for this project.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow the <a href="https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md">Code of Conduct</a> that this project adheres to.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://www.github.com/electron/electron/issues">issue tracker</a> for a feature request that matches the one I want to file, without success.</li>
</ul>
<h3 dir="auto">Electron Version</h3>
<p dir="auto">13</p>
<h3 dir="auto">What operating system are you using?</h3>
<p dir="auto">Ubuntu</p>
<h3 dir="auto">Operating System Version</h3>
<p dir="auto">Ubuntu 20</p>
<h3 dir="auto">What arch are you using?</h3>
<p dir="auto">x64</p>
<h3 dir="auto">Last Known Working Electron version</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">Electron imports package, no error messages</p>
<h3 dir="auto">Actual Behavior</h3>
<p dir="auto">There is and error message when I'm trying to import es6 module to electron main process (specifically ib-tws-api), which breaks the app:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="A JavaScript error occurred in the main process
Uncaught Exception:
Error [ERR_REQUIRE_ESM]: Must use import to load ES Module: /home/amz/projects/test/electron-boilerplate/node_modules/ib-tws-api/index.js
require() of ES modules is not supported.
require() of /home/amz/projects/test/electron-boilerplate/node_modules/ib-tws-api/index.js from /home/amz/projects/test/electron-boilerplate/app/main.js is an ES module file as it is a .js file whose nearest parent package.json contains "type": "module" which defines all .js files in that package scope as ES modules.
Instead rename index.js to end in .cjs, change the requiring code to use import(), or remove "type": "module" from /home/amz/projects/test/electron-boilerplate/node_modules/ib-tws-api/package.json."><pre class="notranslate"><code class="notranslate">A JavaScript error occurred in the main process
Uncaught Exception:
Error [ERR_REQUIRE_ESM]: Must use import to load ES Module: /home/amz/projects/test/electron-boilerplate/node_modules/ib-tws-api/index.js
require() of ES modules is not supported.
require() of /home/amz/projects/test/electron-boilerplate/node_modules/ib-tws-api/index.js from /home/amz/projects/test/electron-boilerplate/app/main.js is an ES module file as it is a .js file whose nearest parent package.json contains "type": "module" which defines all .js files in that package scope as ES modules.
Instead rename index.js to end in .cjs, change the requiring code to use import(), or remove "type": "module" from /home/amz/projects/test/electron-boilerplate/node_modules/ib-tws-api/package.json.
</code></pre></div>
<p dir="auto">I'm using electron-boilerplate here, but I don't whink it matters.<br>
Not sure if it's really a bug, but I couldn't figure it out. There has to be the way to import this package. I searched everywhere and couldn't find any solutions. I'm sure I could just convert the package to use commonjs, but I think there are simpler ways.</p>
<h3 dir="auto">Testcase Gist URL</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Additional Information</h3>
<p dir="auto"><em>No response</em></p> | 0 |
<h5 dir="auto">ISSUE TYPE</h5>
<p dir="auto">[x] - Bug Report</p>
<h5 dir="auto">COMPONENT NAME</h5>
<p dir="auto">Playbook & Inventory</p>
<h5 dir="auto">ANSIBLE VERSION</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible 2.3.0.0
config file =
configured module search path = Default w/o overrides
python version = 2.7.13 (default, Dec 18 2016, 07:03:39) [GCC 4.2.1 Compatible Apple LLVM 8.0.0 (clang-800.0.42.1)]"><pre class="notranslate"><code class="notranslate">ansible 2.3.0.0
config file =
configured module search path = Default w/o overrides
python version = 2.7.13 (default, Dec 18 2016, 07:03:39) [GCC 4.2.1 Compatible Apple LLVM 8.0.0 (clang-800.0.42.1)]
</code></pre></div>
<h5 dir="auto">CONFIGURATION</h5>
<h5 dir="auto">OS / ENVIRONMENT</h5>
<p dir="auto">N/A</p>
<h5 dir="auto">SUMMARY</h5>
<p dir="auto">Inventory:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[slave]
10.0.0.1:1222
[master]
10.0.0.1:9322"><pre class="notranslate"><code class="notranslate">[slave]
10.0.0.1:1222
[master]
10.0.0.1:9322
</code></pre></div>
<p dir="auto">Playbook:</p>
<div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="- hosts: master
tasks:
- name: Display all variables/facts known for a host
debug:
var: hostvars[inventory_hostname]
verbosity: 4"><pre class="notranslate">- <span class="pl-ent">hosts</span>: <span class="pl-s">master</span>
<span class="pl-ent">tasks</span>:
- <span class="pl-ent">name</span>: <span class="pl-s">Display all variables/facts known for a host</span>
<span class="pl-ent">debug</span>:
<span class="pl-ent">var</span>: <span class="pl-s">hostvars[inventory_hostname]</span>
<span class="pl-ent">verbosity</span>: <span class="pl-c1">4</span></pre></div>
<p dir="auto">Ansible connects to port <code class="notranslate">1222</code> instead of <code class="notranslate">9322</code> as expected.</p>
<h5 dir="auto">EXPECTED RESULTS</h5>
<p dir="auto">Ansible to connect to port <code class="notranslate">9322</code> as per the host group</p>
<h5 dir="auto">ACTUAL RESULTS</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ ansible-playbook -vvvv -i inventory playbook.yml
Loading callback plugin default of type stdout, v2.0 from /usr/local/Cellar/ansible/2.3.0.0_2/libexec/lib/python2.7/site-packages/ansible/plugins/callback/__init__.pyc
PLAYBOOK: playbook.yml ****************************************************************************************************************************************************************************************************************************************************
1 plays in playbook.yml
PLAY [master] ******************************************************************************************************************************************************************************************************************************************************************
TASK [Gathering Facts] *********************************************************************************************************************************************************************************************************************************************************
Using module file /usr/local/Cellar/ansible/2.3.0.0_2/libexec/lib/python2.7/site-packages/ansible/modules/system/setup.py
<10.0.0.1> ESTABLISH CONNECTION FOR USER: root on PORT 1222 TO 10.0.0.1
<10.0.0.1> CONNECTION: pid 83121 waiting for lock on 8
<10.0.0.1> CONNECTION: pid 83121 acquired lock on 8"><pre class="notranslate"><code class="notranslate">$ ansible-playbook -vvvv -i inventory playbook.yml
Loading callback plugin default of type stdout, v2.0 from /usr/local/Cellar/ansible/2.3.0.0_2/libexec/lib/python2.7/site-packages/ansible/plugins/callback/__init__.pyc
PLAYBOOK: playbook.yml ****************************************************************************************************************************************************************************************************************************************************
1 plays in playbook.yml
PLAY [master] ******************************************************************************************************************************************************************************************************************************************************************
TASK [Gathering Facts] *********************************************************************************************************************************************************************************************************************************************************
Using module file /usr/local/Cellar/ansible/2.3.0.0_2/libexec/lib/python2.7/site-packages/ansible/modules/system/setup.py
<10.0.0.1> ESTABLISH CONNECTION FOR USER: root on PORT 1222 TO 10.0.0.1
<10.0.0.1> CONNECTION: pid 83121 waiting for lock on 8
<10.0.0.1> CONNECTION: pid 83121 acquired lock on 8
</code></pre></div> | <ul dir="auto">
<li>hosts: S6_scanner_dc1<br>
tasks:
<ul dir="auto">
<li>set_fact: datacenter={{ dc }}</li>
</ul>
</li>
<li>hosts: S6_scanner_{{ datacenter }}<br>
tasks:
<ul dir="auto">
<li>shell: echo {{ datacenter }}</li>
</ul>
</li>
</ul>
<p dir="auto">In this playbook, the variable "datacenter" is well substituted in the shell command but it is not in the hosts declaration of the 2nd play.</p>
<p dir="auto">Ansible version used : 1.2</p>
<p dir="auto">If I pass the variable as an extra_vars in ansible-playbook command, it works fine.<br>
ansible-playbook myplaybook.yml -e "datacenter=dc1"</p>
<ul dir="auto">
<li>hosts: S6_scanner_{{ datacenter }}<br>
tasks:
<ul dir="auto">
<li>shell: echo {{ datacenter }}</li>
</ul>
</li>
</ul>
<p dir="auto">The best use case would be that it works between plays but also even if we include playbooks. For ex:</p>
<ul dir="auto">
<li>hosts: S6_scanner_dc1<br>
tasks:
<ul dir="auto">
<li>set_fact: datacenter={{ dc }}</li>
</ul>
</li>
<li>include anotherplaybook.yml => could reuse var in this playbook</li>
</ul> | 0 |
<p dir="auto">A common requirement for a <code class="notranslate">filterBy search in ...</code> is to specify multiple keys to look, but not all of them (as that might produce false positives from fields irrelevant/invisible to the user).</p>
<p dir="auto">Below is a crude modification of <code class="notranslate">filterBy</code>, dubbed <code class="notranslate">filterByKeys</code>. Usage example:</p>
<div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="<li v-repeat="users | filterByKeys searchText in 'firstname' 'lastname'">{{username}}</li>"><pre class="notranslate"><span class="pl-kos"><</span><span class="pl-ent">li</span> <span class="pl-c1">v-repeat</span>="<span class="pl-s">users | filterByKeys searchText in 'firstname' 'lastname'</span>"<span class="pl-kos">></span>{{username}}<span class="pl-kos"></</span><span class="pl-ent">li</span><span class="pl-kos">></span></pre></div>
<p dir="auto">Would it be possible to add this filter to the core (or perhaps replace <code class="notranslate">filterBy</code> with it, as it should be backwards compatible)?</p>
<p dir="auto">Currently, keeping this in a separate custom filters file requires duplicating the <code class="notranslate">contains</code> function and pulling in the same requirements as for <code class="notranslate">array-filters.js</code> itself.</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var filterByKeys = function(){
// Convert arguments to an actual Array
var args = [].slice.call(arguments)
var arr = args.shift()
var search = args.shift()
// cast to lowercase string
search = ('' + search).toLowerCase()
// strip optional 'in'
if (args[0] == 'in'){
delete args[0]
}
// if left with 0 keys, fall back to all keys
var keys = args.length > 0 ? args : Object.keys(args);
// filter input array
return arr.filter(function (item) {
var result = false
keys.forEach(function(datakey){
result = result || contains(Path.get(item, datakey), search)
})
return result;
})
}"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-en">filterByKeys</span> <span class="pl-c1">=</span> <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">{</span>
<span class="pl-c">// Convert arguments to an actual Array</span>
<span class="pl-k">var</span> <span class="pl-s1">args</span> <span class="pl-c1">=</span> <span class="pl-kos">[</span><span class="pl-kos">]</span><span class="pl-kos">.</span><span class="pl-c1">slice</span><span class="pl-kos">.</span><span class="pl-en">call</span><span class="pl-kos">(</span><span class="pl-smi">arguments</span><span class="pl-kos">)</span>
<span class="pl-k">var</span> <span class="pl-s1">arr</span> <span class="pl-c1">=</span> <span class="pl-s1">args</span><span class="pl-kos">.</span><span class="pl-en">shift</span><span class="pl-kos">(</span><span class="pl-kos">)</span>
<span class="pl-k">var</span> <span class="pl-s1">search</span> <span class="pl-c1">=</span> <span class="pl-s1">args</span><span class="pl-kos">.</span><span class="pl-en">shift</span><span class="pl-kos">(</span><span class="pl-kos">)</span>
<span class="pl-c">// cast to lowercase string</span>
<span class="pl-s1">search</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-s">''</span> <span class="pl-c1">+</span> <span class="pl-s1">search</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">toLowerCase</span><span class="pl-kos">(</span><span class="pl-kos">)</span>
<span class="pl-c">// strip optional 'in'</span>
<span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">args</span><span class="pl-kos">[</span><span class="pl-c1">0</span><span class="pl-kos">]</span> <span class="pl-c1">==</span> <span class="pl-s">'in'</span><span class="pl-kos">)</span><span class="pl-kos">{</span>
<span class="pl-k">delete</span> <span class="pl-s1">args</span><span class="pl-kos">[</span><span class="pl-c1">0</span><span class="pl-kos">]</span>
<span class="pl-kos">}</span>
<span class="pl-c">// if left with 0 keys, fall back to all keys</span>
<span class="pl-k">var</span> <span class="pl-s1">keys</span> <span class="pl-c1">=</span> <span class="pl-s1">args</span><span class="pl-kos">.</span><span class="pl-c1">length</span> <span class="pl-c1">></span> <span class="pl-c1">0</span> ? <span class="pl-s1">args</span> : <span class="pl-v">Object</span><span class="pl-kos">.</span><span class="pl-en">keys</span><span class="pl-kos">(</span><span class="pl-s1">args</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-c">// filter input array</span>
<span class="pl-k">return</span> <span class="pl-s1">arr</span><span class="pl-kos">.</span><span class="pl-en">filter</span><span class="pl-kos">(</span><span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-s1">item</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">var</span> <span class="pl-s1">result</span> <span class="pl-c1">=</span> <span class="pl-c1">false</span>
<span class="pl-s1">keys</span><span class="pl-kos">.</span><span class="pl-en">forEach</span><span class="pl-kos">(</span><span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-s1">datakey</span><span class="pl-kos">)</span><span class="pl-kos">{</span>
<span class="pl-s1">result</span> <span class="pl-c1">=</span> <span class="pl-s1">result</span> <span class="pl-c1">||</span> <span class="pl-en">contains</span><span class="pl-kos">(</span><span class="pl-v">Path</span><span class="pl-kos">.</span><span class="pl-en">get</span><span class="pl-kos">(</span><span class="pl-s1">item</span><span class="pl-kos">,</span> <span class="pl-s1">datakey</span><span class="pl-kos">)</span><span class="pl-kos">,</span> <span class="pl-s1">search</span><span class="pl-kos">)</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span>
<span class="pl-k">return</span> <span class="pl-s1">result</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">PS. Possible issues might arise from the <code class="notranslate">arguments</code> conversion as that is a bit funky and I'm not 100% sure of browser compatibility</p> | <h3 dir="auto">Version</h3>
<p dir="auto">2.5.17</p>
<h3 dir="auto">Reproduction link</h3>
<p dir="auto"><a href="https://jsfiddle.net/jsotron5000/eywraw8t/464522/" rel="nofollow">https://jsfiddle.net/jsotron5000/eywraw8t/464522/</a></p>
<h3 dir="auto">Steps to reproduce</h3>
<p dir="auto">Run the JSFiddle and open up dev tools.<br>
You will see the Vue warning about duplicate default slots even though there is only one slot in the template.</p>
<h3 dir="auto">What is expected?</h3>
<p dir="auto">No warning when using child components slotted into a renderless component.</p>
<h3 dir="auto">What is actually happening?</h3>
<p dir="auto">A warning is displayed saying there are duplicate default slots when there is only one.</p>
<hr>
<p dir="auto">Here is another JSFiddle with a use case where this bug would occur:</p>
<p dir="auto"><a href="https://jsfiddle.net/jsotron5000/eywraw8t/464242/" rel="nofollow">https://jsfiddle.net/jsotron5000/eywraw8t/464242/</a></p>
<p dir="auto">It is a renderless tabs component that works with another component (TabItem) which can be passed in through a slot.</p>
<p dir="auto">The TabContainer component looks at the TabItem components and relays them to the parent component through a scoped slot.</p>
<p dir="auto">The warning only displays when doing anything with the child vnodes inside the render function.</p>
<p dir="auto">If you replace the children prop in the JSFiddle with just a hard coded array there is no warning.</p> | 0 |
<p dir="auto">we do a post, passing the cookies from the previous response as the cookies:</p>
<p dir="auto">requests.post(...,cookies=resp.cookies...)</p>
<p dir="auto">the request function of the Session class appears to be presuming the cookies are always a dict, even though the comments indicate it could also be a cookiejar.</p>
<p dir="auto">self.cookies = cookiejar_from_dict(cookies, cookiejar=self.cookies, overwrite=False)</p>
<p dir="auto">the only way we can get it to work is if we use:</p>
<p dir="auto">requests.post(...,cookies=resp.cookies.get_dict...)</p>
<p dir="auto">Thanks</p> | <p dir="auto">Could not find an issue raised for this, not sure if this was an expected change either. This is reproducible on master.</p>
<p dir="auto">Existing code fails on update to <code class="notranslate">requests-2.0.1</code>. The cause seems to be triggered by the change at <a class="commit-link" href="https://github.com/kennethreitz/requests/commit/012f0334ce43fe23044fc58e4246a804db88650d#diff-28e67177469c0d36b068d68d9f6043bfR326">kennethreitz@<tt>012f033</tt>#diff-28e67177469c0d36b068d68d9f6043bfR326</a></p>
<p dir="auto">The parameter <code class="notranslate">cookies</code> expects either <code class="notranslate">Dict</code> or <code class="notranslate">CookieJar</code>. Treating <code class="notranslate">MozillaCookieJar</code> as a dict triggers the error in this instance.</p>
<p dir="auto">The following code highlights the issue:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import sys
import requests
from os.path import expanduser
if sys.version_info.major >= 3:
from http.cookiejar import MozillaCookieJar
else:
from cookielib import MozillaCookieJar
URL = 'https://bugzilla.redhat.com'
COOKIE_FILE = expanduser('~/.bugzillacookies')
cookiejar = MozillaCookieJar(COOKIE_FILE)
cookiejar.load()
requests.get(URL, cookies=cookiejar)"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">sys</span>
<span class="pl-k">import</span> <span class="pl-s1">requests</span>
<span class="pl-k">from</span> <span class="pl-s1">os</span>.<span class="pl-s1">path</span> <span class="pl-k">import</span> <span class="pl-s1">expanduser</span>
<span class="pl-k">if</span> <span class="pl-s1">sys</span>.<span class="pl-s1">version_info</span>.<span class="pl-s1">major</span> <span class="pl-c1">>=</span> <span class="pl-c1">3</span>:
<span class="pl-k">from</span> <span class="pl-s1">http</span>.<span class="pl-s1">cookiejar</span> <span class="pl-k">import</span> <span class="pl-v">MozillaCookieJar</span>
<span class="pl-k">else</span>:
<span class="pl-k">from</span> <span class="pl-s1">cookielib</span> <span class="pl-k">import</span> <span class="pl-v">MozillaCookieJar</span>
<span class="pl-v">URL</span> <span class="pl-c1">=</span> <span class="pl-s">'https://bugzilla.redhat.com'</span>
<span class="pl-v">COOKIE_FILE</span> <span class="pl-c1">=</span> <span class="pl-en">expanduser</span>(<span class="pl-s">'~/.bugzillacookies'</span>)
<span class="pl-s1">cookiejar</span> <span class="pl-c1">=</span> <span class="pl-v">MozillaCookieJar</span>(<span class="pl-v">COOKIE_FILE</span>)
<span class="pl-s1">cookiejar</span>.<span class="pl-en">load</span>()
<span class="pl-s1">requests</span>.<span class="pl-en">get</span>(<span class="pl-v">URL</span>, <span class="pl-s1">cookies</span><span class="pl-c1">=</span><span class="pl-s1">cookiejar</span>)</pre></div>
<p dir="auto">The following <code class="notranslate">AttributeError</code> is thrown:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Traceback (most recent call last):
File "rtest.py", line 16, in <module>
requests.get(URL, cookies=cookiejar)
File "/tmp/rtestenv/lib/python2.7/site-packages/requests/api.py", line 55, in get
return request('get', url, **kwargs)
File "/tmp/rtestenv/lib/python2.7/site-packages/requests/api.py", line 44, in request
return session.request(method=method, url=url, **kwargs)
File "/tmp/rtestenv/lib/python2.7/site-packages/requests/sessions.py", line 327, in request
self.cookies = cookiejar_from_dict(cookies, cookiejar=self.cookies, overwrite=False)
File "/tmp/rtestenv/lib/python2.7/site-packages/requests/cookies.py", line 410, in cookiejar_from_dict
cookiejar.set_cookie(create_cookie(name, cookie_dict[name]))
AttributeError: MozillaCookieJar instance has no attribute '__getitem__'"><pre class="notranslate"><code class="notranslate">Traceback (most recent call last):
File "rtest.py", line 16, in <module>
requests.get(URL, cookies=cookiejar)
File "/tmp/rtestenv/lib/python2.7/site-packages/requests/api.py", line 55, in get
return request('get', url, **kwargs)
File "/tmp/rtestenv/lib/python2.7/site-packages/requests/api.py", line 44, in request
return session.request(method=method, url=url, **kwargs)
File "/tmp/rtestenv/lib/python2.7/site-packages/requests/sessions.py", line 327, in request
self.cookies = cookiejar_from_dict(cookies, cookiejar=self.cookies, overwrite=False)
File "/tmp/rtestenv/lib/python2.7/site-packages/requests/cookies.py", line 410, in cookiejar_from_dict
cookiejar.set_cookie(create_cookie(name, cookie_dict[name]))
AttributeError: MozillaCookieJar instance has no attribute '__getitem__'
</code></pre></div> | 1 |
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=eboudrant" rel="nofollow">Emmanuel Boudrant</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-654?redirect=false" rel="nofollow">SPR-654</a></strong> and commented</p>
<p dir="auto">I have this exception when I try to update an entity, it seem the session object passed in the HibernateCallback is null :</p>
<p dir="auto">java.lang.NullPointerException<br>
at org.springframework.orm.hibernate.HibernateTemplate.checkWriteOperationAllowed(Lnet.sf.hibernate.Session;)V(HibernateTemplate.java:954)<br>
at org.springframework.orm.hibernate.HibernateTemplate$15.doInHibernate(Lnet.sf.hibernate.Session;)Ljava.lang.Object;(HibernateTemplate.java:362)<br>
at org.springframework.orm.hibernate.HibernateTemplate.execute(Lorg.springframework.orm.hibernate.HibernateCallback;)Ljava.lang.Object;(HibernateTemplate.java:200)<br>
at org.springframework.orm.hibernate.HibernateTemplate.update(Ljava.lang.Object;)V(HibernateTemplate.java:360)<br>
at com.monitoring.dao.impl.BsContractDaoImpl.update(Lcom.monitoring.BsContract;)V(BsContractDaoImpl.java:286)</p>
<p dir="auto">Here the JTA configuration :</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="<bean id="jndiTransactionManager"
class="org.springframework.transaction.jta.WebLogicServerTransactionManagerFactoryBean">
</bean>
<!-- Jta platform tm -->
<bean id="transactionManager"
class="org.springframework.transaction.jta.WebLogicJtaTransactionManager">
<property name="transactionManager">
<ref local="jndiTransactionManager"/>
</property>
</bean> "><pre class="notranslate"><code class="notranslate"><bean id="jndiTransactionManager"
class="org.springframework.transaction.jta.WebLogicServerTransactionManagerFactoryBean">
</bean>
<!-- Jta platform tm -->
<bean id="transactionManager"
class="org.springframework.transaction.jta.WebLogicJtaTransactionManager">
<property name="transactionManager">
<ref local="jndiTransactionManager"/>
</property>
</bean>
</code></pre></div>
<hr>
<p dir="auto"><strong>Affects:</strong> 1.1.1</p>
<p dir="auto"><strong>Issue Links:</strong></p>
<ul dir="auto">
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398054417" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/5366" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/5366/hovercard" href="https://github.com/spring-projects/spring-framework/issues/5366">#5366</a> SessionFactoryUtils.getSession(..) before PROPAGATION_REQUIRED (<em><strong>"duplicates"</strong></em>)</li>
</ul> | <p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=hany" rel="nofollow">hany mohamed shafik</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-3984?redirect=false" rel="nofollow">SPR-3984</a></strong> and commented</p>
<p dir="auto">We are currently working on an enterprise project for one of our biggest clients. We are using Spring 2.0 and Spring Web Flow 1.0 Rc4. While deploying the application to Oracle 9ias 10.1.2.0.2 in our development environment, we encountered the following error. We experienced the same error in Spring 2.0 RC2 and it was fixed in Spring 2.0 RC3 by Rick Evans. The ticket No is SPR - 2290. Kindly fix the bug. I will attach the XMLParser Oracle uses so you guys can test it. This is a critical error and we are unable to move forward.</p>
<p dir="auto">EXCEPTION FROM THE LOG FILE:</p>
<hr>
<p dir="auto">06/10/11 17:58:18 Started<br>
06/10/11 17:58:21 drlm: jsp: init<br>
06/10/11 17:58:21 drlm: context: init<br>
06/10/11 17:58:21 drlm: Loading Spring root WebApplicationContext<br>
06/10/11 17:58:52 drlm: Error initializing servlet<br>
org.springframework.beans.factory.BeanDefinitionStoreException: Line 8 in XML document from ServletContext resource [/WEB-INF/drlm-servlet.xml] is invalid; nested exception is oracle.xml.parser.schema.XSDException: Duplicated definition for: 'identifiedType'<br>
Caused by: oracle.xml.parser.schema.XSDException: Duplicated definition for: 'identifiedType'<br>
at oracle.xml.parser.v2.XMLError.flushErrorHandler(XMLError.java:444)<br>
at oracle.xml.parser.v2.XMLError.flushErrors1(XMLError.java:303)<br>
at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:290)<br>
at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:196)<br>
at oracle.xml.jaxp.JXDocumentBuilder.parse(JXDocumentBuilder.java:151)<br>
at org.springframework.beans.factory.xml.DefaultDocumentLoader.loadDocument(DefaultDocumentLoader.java:77)<br>
at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.doLoadBeanDefinitions(XmlBeanDefinitionReader.java:405)<br>
at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:357)<br>
at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:334)<br>
at org.springframework.beans.factory.support.AbstractBeanDefinitionReader.loadBeanDefinitions(AbstractBeanDefinitionReader.java:126)<br>
at org.springframework.beans.factory.support.AbstractBeanDefinitionReader.loadBeanDefinitions(AbstractBeanDefinitionReader.java:142)<br>
at org.springframework.web.context.support.XmlWebApplicationContext.loadBeanDefinitions(XmlWebApplicationContext.java:123)<br>
at org.springframework.web.context.support.XmlWebApplicationContext.loadBeanDefinitions(XmlWebApplicationContext.java:91)<br>
at org.springframework.context.support.AbstractRefreshableApplicationContext.refreshBeanFactory(AbstractRefreshableApplicationContext.java:94)<br>
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:294)<br>
at org.springframework.web.context.support.AbstractRefreshableWebApplicationContext.refresh(AbstractRefreshableWebApplicationContext.java:156)<br>
at org.springframework.web.context.ContextLoader.createWebApplicationContext(ContextLoader.java:246)<br>
at org.springframework.web.context.ContextLoader.initWebApplicationContext(ContextLoader.java:184)<br>
at org.springframework.web.context.ContextLoaderServlet.init(ContextLoaderServlet.java:83)<br>
at javax.servlet.GenericServlet.init(GenericServlet.java:258)<br>
at com.evermind.server.http.HttpApplication.loadServlet(HttpApplication.java:2354)<br>
at com.evermind.server.http.HttpApplication.findServlet(HttpApplication.java:4795)<br>
at com.evermind.server.http.HttpApplication.initPreloadServlets(HttpApplication.java:4889)<br>
at com.evermind.server.http.HttpApplication.initDynamic(HttpApplication.java:1015)<br>
at com.evermind.server.http.HttpApplication.<init>(HttpApplication.java:549)<br>
at com.evermind.server.Application.getHttpApplication(Application.java:890)<br>
at com.evermind.server.http.HttpServer.getHttpApplication(HttpServer.java:707)<br>
at com.evermind.server.http.HttpSite.initApplications(HttpSite.java:625)<br>
at com.evermind.server.http.HttpSite.setConfig(HttpSite.java:278)<br>
at com.evermind.server.http.HttpServer.setSites(HttpServer.java:278)<br>
at com.evermind.server.http.HttpServer.setConfig(HttpServer.java:179)<br>
at com.evermind.server.ApplicationServer.initializeHttp(ApplicationServer.java:2394)<br>
at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.java:1551)<br>
at com.evermind.server.ApplicationServerLauncher.run(ApplicationServerLauncher.java:92)<br>
at java.lang.Thread.run(Thread.java:534)<br>
06/10/11 17:58:52 drlm: Error preloading servlet<br>
javax.servlet.ServletException: Error initializing servlet<br>
at com.evermind.server.http.HttpApplication.findServlet(HttpApplication.java:4846)<br>
at com.evermind.server.http.HttpApplication.initPreloadServlets(HttpApplication.java:4889)<br>
at com.evermind.server.http.HttpApplication.initDynamic(HttpApplication.java:1015)<br>
at com.evermind.server.http.HttpApplication.<init>(HttpApplication.java:549)<br>
at com.evermind.server.Application.getHttpApplication(Application.java:890)<br>
at com.evermind.server.http.HttpServer.getHttpApplication(HttpServer.java:707)<br>
at com.evermind.server.http.HttpSite.initApplications(HttpSite.java:625)<br>
at com.evermind.server.http.HttpSite.setConfig(HttpSite.java:278)<br>
at com.evermind.server.http.HttpServer.setSites(HttpServer.java:278)<br>
at com.evermind.server.http.HttpServer.setConfig(HttpServer.java:179)<br>
at com.evermind.server.ApplicationServer.initializeHttp(ApplicationServer.java:2394)<br>
at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.java:1551)<br>
at com.evermind.server.ApplicationServerLauncher.run(ApplicationServerLauncher.java:92)<br>
at java.lang.Thread.run(Thread.java:534)<br>
06/10/11 17:58:52 drlm: drlm: init<br>
06/10/11 17:58:52 drlm: Loading WebApplicationContext for Spring FrameworkServlet 'drlm'<br>
06/10/11 17:58:52 drlm: Error initializing servlet<br>
org.springframework.beans.factory.BeanDefinitionStoreException: Line 8 in XML document from ServletContext resource [/WEB-INF/drlm-servlet.xml] is invalid; nested exception is oracle.xml.parser.schema.XSDException: Duplicated definition for: 'identifiedType'<br>
Caused by: oracle.xml.parser.schema.XSDException: Duplicated definition for: 'identifiedType'<br>
at oracle.xml.parser.v2.XMLError.flushErrorHandler(XMLError.java:444)<br>
at oracle.xml.parser.v2.XMLError.flushErrors1(XMLError.java:303)<br>
at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:290)<br>
at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:196)<br>
at oracle.xml.jaxp.JXDocumentBuilder.parse(JXDocumentBuilder.java:151)<br>
at org.springframework.beans.factory.xml.DefaultDocumentLoader.loadDocument(DefaultDocumentLoader.java:77)<br>
at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.doLoadBeanDefinitions(XmlBeanDefinitionReader.java:405)<br>
at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:357)<br>
at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:334)<br>
at org.springframework.beans.factory.support.AbstractBeanDefinitionReader.loadBeanDefinitions(AbstractBeanDefinitionReader.java:126)<br>
at org.springframework.beans.factory.support.AbstractBeanDefinitionReader.loadBeanDefinitions(AbstractBeanDefinitionReader.java:142)<br>
at org.springframework.web.context.support.XmlWebApplicationContext.loadBeanDefinitions(XmlWebApplicationContext.java:123)<br>
at org.springframework.web.context.support.XmlWebApplicationContext.loadBeanDefinitions(XmlWebApplicationContext.java:91)<br>
at org.springframework.context.support.AbstractRefreshableApplicationContext.refreshBeanFactory(AbstractRefreshableApplicationContext.java:94)<br>
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:294)<br>
at org.springframework.web.context.support.AbstractRefreshableWebApplicationContext.refresh(AbstractRefreshableWebApplicationContext.java:156)<br>
at org.springframework.web.context.ContextLoader.createWebApplicationContext(ContextLoader.java:246)<br>
at org.springframework.web.context.ContextLoader.initWebApplicationContext(ContextLoader.java:184)<br>
at org.springframework.web.context.ContextLoaderServlet.init(ContextLoaderServlet.java:83)<br>
at javax.servlet.GenericServlet.init(GenericServlet.java:258)<br>
at com.evermind.server.http.HttpApplication.loadServlet(HttpApplication.java:2354)<br>
at com.evermind.server.http.HttpApplication.findServlet(HttpApplication.java:4795)<br>
at com.evermind.server.http.HttpApplication.initPreloadServlets(HttpApplication.java:4889)<br>
at com.evermind.server.http.HttpApplication.initDynamic(HttpApplication.java:1015)<br>
at com.evermind.server.http.HttpApplication.<init>(HttpApplication.java:549)<br>
at com.evermind.server.Application.getHttpApplication(Application.java:890)<br>
at com.evermind.server.http.HttpServer.getHttpApplication(HttpServer.java:707)<br>
at com.evermind.server.http.HttpSite.initApplications(HttpSite.java:625)<br>
at com.evermind.server.http.HttpSite.setConfig(HttpSite.java:278)<br>
at com.evermind.server.http.HttpServer.setSites(HttpServer.java:278)<br>
at com.evermind.server.http.HttpServer.setConfig(HttpServer.java:179)<br>
at com.evermind.server.ApplicationServer.initializeHttp(ApplicationServer.java:2394)<br>
at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.java:1551)<br>
at com.evermind.server.ApplicationServerLauncher.run(ApplicationServerLauncher.java:92)<br>
at java.lang.Thread.run(Thread.java:534)<br>
06/10/11 17:58:52 drlm: Error preloading servlet<br>
javax.servlet.ServletException: Error initializing servlet<br>
at com.evermind.server.http.HttpApplication.findServlet(HttpApplication.java:4846)<br>
at com.evermind.server.http.HttpApplication.initPreloadServlets(HttpApplication.java:4889)<br>
at com.evermind.server.http.HttpApplication.initDynamic(HttpApplication.java:1015)<br>
at com.evermind.server.http.HttpApplication.<init>(HttpApplication.java:549)<br>
at com.evermind.server.Application.getHttpApplication(Application.java:890)<br>
at com.evermind.server.http.HttpServer.getHttpApplication(HttpServer.java:707)<br>
at com.evermind.server.http.HttpSite.initApplications(HttpSite.java:625)<br>
at com.evermind.server.http.HttpSite.setConfig(HttpSite.java:278)<br>
at com.evermind.server.http.HttpServer.setSites(HttpServer.java:278)<br>
at com.evermind.server.http.HttpServer.setConfig(HttpServer.java:179)<br>
at com.evermind.server.ApplicationServer.initializeHttp(ApplicationServer.java:2394)<br>
at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.java:1551)<br>
at com.evermind.server.ApplicationServerLauncher.run(ApplicationServerLauncher.java:92)<br>
at java.lang.Thread.run(Thread.java:534)<br>
06/10/11 17:58:52 drlm: dwr-invoker: init<br>
06/10/11 17:58:53 drlm: Started</p>
<p dir="auto">drlm-servlet.xml file:</p>
<hr>
<p dir="auto"><?xml version="1.0" encoding="UTF-8"?></p>
<p dir="auto"><beans xmlns="<a href="http://www.springframework.org/schema/beans" rel="nofollow">http://www.springframework.org/schema/beans</a>"<br>
xmlns:xsi="<a href="http://www.w3.org/2001/XMLSchema-instance" rel="nofollow">http://www.w3.org/2001/XMLSchema-instance</a>"<br>
xmlns:flow="<a href="http://www.springframework.org/schema/webflow-config" rel="nofollow">http://www.springframework.org/schema/webflow-config</a>"<br>
xsi:schemaLocation="<a href="http://www.springframework.org/schema/beans" rel="nofollow">http://www.springframework.org/schema/beans</a><br>
<a href="http://www.springframework.org/schema/beans/spring-beans-2.0.xsd" rel="nofollow">http://www.springframework.org/schema/beans/spring-beans-2.0.xsd</a><br>
<a href="http://www.springframework.org/schema/webflow-config" rel="nofollow">http://www.springframework.org/schema/webflow-config</a><br>
<a href="http://www.springframework.org/schema/webflow-config/spring-webflow-config-1.0.xsd%22%3E" rel="nofollow">http://www.springframework.org/schema/webflow-config/spring-webflow-config-1.0.xsd"></a></p>
<p dir="auto"><!--</p>
<ul dir="auto">
<li>
<p dir="auto">DispatcherServlet application context for Device Registration and Listing Application web tier.<br>
--></p>
- Message source for this context, loaded from localized "messages_xx" files.
<ul dir="auto">
<li>Could also reside in the root application context, as it is generic,</li>
<li>but is currently just used within DRLM's web tier.<br>
--></li>
</ul>
uk.ltd.getahead.dwr.DWRServlet
dwr-invoker
true
flowController
drlmMainMenuController
<p dir="auto"><flow:executor id="flowExecutor" registry-ref="flowRegistry" repository-type="continuation"/></p>
<p dir="auto"><flow:registry id="flowRegistry"><br>
<flow:location path="file:html/WEB-INF/flows/**/*-flow.xml"/><br>
</flow:registry></p>
</li>
</ul>
<p dir="auto"></beans></p>
<hr>
<p dir="auto"><strong>Affects:</strong> 2.0 final</p>
<p dir="auto"><strong>Issue Links:</strong></p>
<ul dir="auto">
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398068315" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/6979" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/6979/hovercard" href="https://github.com/spring-projects/spring-framework/issues/6979">#6979</a> oracle.xml.parser.schema.XSDException: Duplicated definition for: 'identifiedType' in spring-util.xsd. We are unable to start OC4j Server.</li>
</ul> | 0 |
<p dir="auto">Atom running on Manjaro Linux 64bits.</p>
<p dir="auto">When launching a new Firefox window via dragging an open tab outside the window, if you drag over Atom, the program will shut down.</p>
<p dir="auto">This is error message displayed on the terminal:</p>
<pre class="notranslate">The program 'atom' received an X Window System error.
This probably reflects a bug in the program.
The error was 'BadAtom (invalid Atom parameter)'.
(Details: serial 784 error_code 5 request_code 20 minor_code 0)
(Note to programmers: normally, X errors are reported asynchronously;
that is, you will receive the error a while after causing it.
To debug your program, run it with the --sync command line
option to change this behavior. You can then get a meaningful
backtrace from your debugger if you break on the gdk_x_error() function.)
</pre> | <p dir="auto">Atom Version: 0.129.0<br>
Video of me triggering the bug: <a href="http://ara.sh/private/atom-crash.ogv" rel="nofollow">http://ara.sh/private/atom-crash.ogv</a><br>
Reproducible every time.</p>
<p dir="auto">Environment:<br>
Ubuntu 14.04 (all updates installed as of filing this issue)<br>
Unity desktop environment</p>
<p dir="auto">Repro steps:</p>
<ol dir="auto">
<li>Launch atom from the Terminal</li>
<li>Open a Firefox window (or use an existing one)</li>
<li>Drag the Firefox tab anywhere over the Atom window</li>
</ol>
<p dir="auto">Actual behavior:<br>
It crashes</p>
<p dir="auto">Expected behavior:<br>
Not crash :-)</p>
<p dir="auto">Additional Information:<br>
The terminal prints out the following after the crash:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[7950:0920/180947:ERROR:browser_main_loop.cc(161)] Running without the SUID sandbox! See https://code.google.com/p/chromium/wiki/LinuxSUIDSandboxDevelopment for more information on developing with the sandbox on.
[7950:0920/180947:ERROR:browser_main_loop.cc(189)] GTK theme error: Unable to locate theme engine in module_path: "pixmap",
ATTENTION: default value of option force_s3tc_enable overridden by environment.
App load time: 88ms
[7984:0920/180947:INFO:renderer_main.cc(227)] Renderer process started
[7950:0920/180948:INFO:CONSOLE(18)] "Window load time: 778ms", source: /opt/atom/resources/app/src/window-bootstrap.js (18)
The program 'atom' received an X Window System error.
This probably reflects a bug in the program.
The error was 'BadAtom (invalid Atom parameter)'.
(Details: serial 1360 error_code 5 request_code 20 minor_code 0)
(Note to programmers: normally, X errors are reported asynchronously;
that is, you will receive the error a while after causing it.
To debug your program, run it with the --sync command line
option to change this behavior. You can then get a meaningful
backtrace from your debugger if you break on the gdk_x_error() function.)"><pre class="notranslate"><code class="notranslate">[7950:0920/180947:ERROR:browser_main_loop.cc(161)] Running without the SUID sandbox! See https://code.google.com/p/chromium/wiki/LinuxSUIDSandboxDevelopment for more information on developing with the sandbox on.
[7950:0920/180947:ERROR:browser_main_loop.cc(189)] GTK theme error: Unable to locate theme engine in module_path: "pixmap",
ATTENTION: default value of option force_s3tc_enable overridden by environment.
App load time: 88ms
[7984:0920/180947:INFO:renderer_main.cc(227)] Renderer process started
[7950:0920/180948:INFO:CONSOLE(18)] "Window load time: 778ms", source: /opt/atom/resources/app/src/window-bootstrap.js (18)
The program 'atom' received an X Window System error.
This probably reflects a bug in the program.
The error was 'BadAtom (invalid Atom parameter)'.
(Details: serial 1360 error_code 5 request_code 20 minor_code 0)
(Note to programmers: normally, X errors are reported asynchronously;
that is, you will receive the error a while after causing it.
To debug your program, run it with the --sync command line
option to change this behavior. You can then get a meaningful
backtrace from your debugger if you break on the gdk_x_error() function.)
</code></pre></div> | 1 |
<p dir="auto">It would be useful to be able to return the net overlap/disjoint areas on a geo_shape query, so as to determine similarity of the queried shape to the indexed document.</p> | <p dir="auto">First, the use case:</p>
<p dir="auto">To ensure a single, tested, artifact to be installed across the fleet, including all plugins needed, our build process roughly works like this:</p>
<ul dir="auto">
<li>Grab the version of ES as a debian package</li>
<li>Extract this debian package in a temp dir</li>
<li>cd into this directory and run: <code class="notranslate">bin/plugin install ...</code></li>
<li>go back to the temp dir, and repackage as debian package</li>
</ul>
<p dir="auto">The reason for the debian package is that the init scripts for ES do a lot of work (setting ulimit, users, groups, etc), and we don't want to duplicate that and maintain it; otherwise we'd just use the tarball.</p>
<p dir="auto">This process worked fine with 1.5.x, but starting 1.6, the 'plugin' command can no longer find the needed config files. Here are the specific issues:</p>
<ol dir="auto">
<li>
<p dir="auto">Even though it finds 'CONF_DIR' just fine, it insists on setting 'CONF_FILE' separately, and does not use the same heuristics as for 'CONF_DIR'.</p>
</li>
<li>
<p dir="auto">It now requires /etc/default/elasticsearch to be present to run, which requires an installed version, or another override.</p>
</li>
</ol>
<p dir="auto">The workaround is now to do this, which is ugly and prone to breakage going forward:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ ES_INCLUDE=`pwd`/etc/default/elasticsearch CONF_FILE=`pwd`/etc/elasticsearch/elasticsearch.yaml CONF_DIR=`pwd`/etc/elasticsearch usr/share/elasticsearch/bin/plugin -h"><pre class="notranslate"><code class="notranslate">$ ES_INCLUDE=`pwd`/etc/default/elasticsearch CONF_FILE=`pwd`/etc/elasticsearch/elasticsearch.yaml CONF_DIR=`pwd`/etc/elasticsearch usr/share/elasticsearch/bin/plugin -h
</code></pre></div>
<p dir="auto">The full diff below, to illustrate the offending parts:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="diff elasticsearch-1.{5.2,6.0}/usr/share/elasticsearch/bin/plugin
23a26,62
> # Sets the default values for elasticsearch variables used in this script
> if [ -z "$CONF_DIR" ]; then
> CONF_DIR="/etc/elasticsearch"
>
> if [ -z "$CONF_FILE" ]; then
> CONF_FILE="$CONF_DIR/elasticsearch.yml"
> fi
> fi
>
> if [ -z "$CONF_FILE" ]; then
> CONF_FILE="/etc/elasticsearch/elasticsearch.yml"
> fi
>
> # The default env file is defined at building/packaging time.
> # For a deb package, the value is "/etc/default/elasticsearch".
> ES_ENV_FILE="/etc/default/elasticsearch"
>
> # If an include is specified with the ES_INCLUDE environment variable, use it
> if [ -n "$ES_INCLUDE" ]; then
> ES_ENV_FILE="$ES_INCLUDE"
> fi
>
> # Source the environment file
> if [ -n "$ES_ENV_FILE" ]; then
>
> # If the ES_ENV_FILE is not found, try to resolve the path
> # against the ES_HOME directory
> if [ ! -f "$ES_ENV_FILE" ]; then
> ES_ENV_FILE="$ELASTIC_HOME/$ES_ENV_FILE"
> fi
>
> . "$ES_ENV_FILE"
> if [ $? -ne 0 ]; then
> echo "Unable to source environment file: $ES_ENV_FILE" >&2
> exit 1
> fi
> fi
48c87,96
< exec "$JAVA" $JAVA_OPTS $ES_JAVA_OPTS -Xmx64m -Xms16m -Delasticsearch -Des.path.home="$ES_HOME" $properties -cp "$ES_HOME/lib/*" org.elasticsearch.plugins.PluginManager $args
---
> # check if properties already has a config file or config dir
> if [ -e "$CONF_DIR" ]; then
> case "$properties" in
> *-Des.default.path.conf=*|*-Des.path.conf=*)
> ;;
> *)
> properties="$properties -Des.default.path.conf=$CONF_DIR"
> ;;
> esac
> fi
49a98,110
> if [ -e "$CONF_FILE" ]; then
> case "$properties" in
> *-Des.default.config=*|*-Des.config=*)
> ;;
> *)
> properties="$properties -Des.default.config=$CONF_FILE"
> ;;
> esac
> fi
>
> export HOSTNAME=`hostname -s`
>
> exec "$JAVA" $JAVA_OPTS $ES_JAVA_OPTS -Xmx64m -Xms16m -Delasticsearch -Des.path.home="$ES_HOME" $properties -cp "$ES_HOME/lib/*" org.elasticsearch.plugins.PluginManager $args"><pre class="notranslate"><code class="notranslate">diff elasticsearch-1.{5.2,6.0}/usr/share/elasticsearch/bin/plugin
23a26,62
> # Sets the default values for elasticsearch variables used in this script
> if [ -z "$CONF_DIR" ]; then
> CONF_DIR="/etc/elasticsearch"
>
> if [ -z "$CONF_FILE" ]; then
> CONF_FILE="$CONF_DIR/elasticsearch.yml"
> fi
> fi
>
> if [ -z "$CONF_FILE" ]; then
> CONF_FILE="/etc/elasticsearch/elasticsearch.yml"
> fi
>
> # The default env file is defined at building/packaging time.
> # For a deb package, the value is "/etc/default/elasticsearch".
> ES_ENV_FILE="/etc/default/elasticsearch"
>
> # If an include is specified with the ES_INCLUDE environment variable, use it
> if [ -n "$ES_INCLUDE" ]; then
> ES_ENV_FILE="$ES_INCLUDE"
> fi
>
> # Source the environment file
> if [ -n "$ES_ENV_FILE" ]; then
>
> # If the ES_ENV_FILE is not found, try to resolve the path
> # against the ES_HOME directory
> if [ ! -f "$ES_ENV_FILE" ]; then
> ES_ENV_FILE="$ELASTIC_HOME/$ES_ENV_FILE"
> fi
>
> . "$ES_ENV_FILE"
> if [ $? -ne 0 ]; then
> echo "Unable to source environment file: $ES_ENV_FILE" >&2
> exit 1
> fi
> fi
48c87,96
< exec "$JAVA" $JAVA_OPTS $ES_JAVA_OPTS -Xmx64m -Xms16m -Delasticsearch -Des.path.home="$ES_HOME" $properties -cp "$ES_HOME/lib/*" org.elasticsearch.plugins.PluginManager $args
---
> # check if properties already has a config file or config dir
> if [ -e "$CONF_DIR" ]; then
> case "$properties" in
> *-Des.default.path.conf=*|*-Des.path.conf=*)
> ;;
> *)
> properties="$properties -Des.default.path.conf=$CONF_DIR"
> ;;
> esac
> fi
49a98,110
> if [ -e "$CONF_FILE" ]; then
> case "$properties" in
> *-Des.default.config=*|*-Des.config=*)
> ;;
> *)
> properties="$properties -Des.default.config=$CONF_FILE"
> ;;
> esac
> fi
>
> export HOSTNAME=`hostname -s`
>
> exec "$JAVA" $JAVA_OPTS $ES_JAVA_OPTS -Xmx64m -Xms16m -Delasticsearch -Des.path.home="$ES_HOME" $properties -cp "$ES_HOME/lib/*" org.elasticsearch.plugins.PluginManager $args
</code></pre></div> | 0 |
<p dir="auto">I used Dropdowns jQuery plugins to mouse wheel click don't work.</p>
<p dir="auto">I want use Dropdowns jQuery plugins and mouse wheel click, both.</p>
<p dir="auto">I am using Windows XP/Firefox 19.0.2/jQuery-1.7.1</p> | <p dir="auto">Issue: middle mouse click on a link in Firefox, nothing happens.<br>
Expected behavior: middle mouse click on a link, open in new browser tab.<br>
Live example: <a href="http://twitter.github.com/bootstrap/">http://twitter.github.com/bootstrap/</a></p>
<p dir="auto">Tested on Win7/Firefox19 Safemode/Non-Safemode failed. IE9/Chrome25 ok.<br>
Notice it when I upgrade to bootstrap v2.3.1.<br>
Switch back to v2.3 and the middle button works again.</p> | 1 |
<h3 dir="auto">Apache Airflow version</h3>
<p dir="auto">Other Airflow 2 version</p>
<h3 dir="auto">What happened</h3>
<p dir="auto">We have a DAG running with a cronjob schedule every 4 minutes that checks whether there is a new file present in a file system or not. If there is one available, it lists its path and passes it as a dynamic task via XCOM (one task = one file).</p>
<p dir="auto">We have experienced a couple of times already that this task is never started, nor does it appear in the logs (not in scheduler logs, nor in AKS logs). It simply disappears and the status of the task is removed.</p>
<p dir="auto">The DAG has following configurations:<br>
Schedule interval: "*/4 5-22 * * 1-5"<br>
Catchup: False<br>
End Date: None<br>
Max Active Runs: 1<br>
Concurrency: 1<br>
DAG Run Timeout: 0:10:00</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/94971679/188836813-64e8e89b-619e-4270-b1a3-60583cf4a46a.jpg"><img src="https://user-images.githubusercontent.com/94971679/188836813-64e8e89b-619e-4270-b1a3-60583cf4a46a.jpg" alt="list_metadata success" style="max-width: 100%;"></a><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/94971679/188836817-ebe79b8d-a49f-494c-9981-8c546f115a8d.jpg"><img src="https://user-images.githubusercontent.com/94971679/188836817-ebe79b8d-a49f-494c-9981-8c546f115a8d.jpg" alt="removed_task" style="max-width: 100%;"></a><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/94971679/188836821-6dcb6c82-5fab-45da-b5be-29793c79d53f.jpg"><img src="https://user-images.githubusercontent.com/94971679/188836821-6dcb6c82-5fab-45da-b5be-29793c79d53f.jpg" alt="xcom" style="max-width: 100%;"></a></p>
<h3 dir="auto">What you think should happen instead</h3>
<p dir="auto">The task should be triggered and started. Instead, it gets the status removed without any logs or trace</p>
<h3 dir="auto">How to reproduce</h3>
<p dir="auto">This happens in random moments, so exact steps to reproduce are hard to determine</p>
<h3 dir="auto">Operating System</h3>
<p dir="auto">Airflow base docker image</p>
<h3 dir="auto">Versions of Apache Airflow Providers</h3>
<ul dir="auto">
<li>apache-airflow-providers-microsoft-azure: 4.2.0</li>
</ul>
<h3 dir="auto">Deployment</h3>
<p dir="auto">Official Apache Airflow Helm Chart</p>
<h3 dir="auto">Deployment details</h3>
<p dir="auto">We are running on AKS with a postgresql backend, with the airflow helm chart of 2.3.3. Docker image is the airflow base image.<br>
Logs are being sent to an azure file share.</p>
<h3 dir="auto">Anything else</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Are you willing to submit PR?</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Yes I am willing to submit a PR!</li>
</ul>
<h3 dir="auto">Code of Conduct</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow this project's <a href="https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md">Code of Conduct</a></li>
</ul> | <h3 dir="auto">Apache Airflow version</h3>
<p dir="auto">2.3.3</p>
<h3 dir="auto">What happened</h3>
<p dir="auto">If you try to <code class="notranslate">backfill</code> a DAG that uses <a href="https://airflow.apache.org/docs/apache-airflow/2.3.0/concepts/dynamic-task-mapping.html#repeated-mapping" rel="nofollow">repeated dynamic task mapping</a>, some of the repeated mapped tasks will be marked as "removed". Any tasks downstream of the removed tasks will refuse to start:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/7269927/184906229-f0b1130a-5fa3-41cd-a117-81a054b57386.png"><img src="https://user-images.githubusercontent.com/7269927/184906229-f0b1130a-5fa3-41cd-a117-81a054b57386.png" alt="Screenshot from 2022-08-16 08-51-35" style="max-width: 100%;"></a></p>
<p dir="auto">Or, if there is nothing downstream of those tasks, the DAG Run will claim it was successful, even though some of its tasks never ran:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/7269927/184906238-2ae31619-d77c-4781-acd2-52b0f2d54b0a.png"><img src="https://user-images.githubusercontent.com/7269927/184906238-2ae31619-d77c-4781-acd2-52b0f2d54b0a.png" alt="Screenshot from 2022-08-16 09-32-57" style="max-width: 100%;"></a></p>
<h3 dir="auto">What you think should happen instead</h3>
<p dir="auto">All mapped tasks should run as normal during a backfill.</p>
<h3 dir="auto">How to reproduce</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="#!/usr/bin/env python3
import datetime
import itertools
import logging
import string
from airflow.decorators import dag, task
logger = logging.getLogger(__name__)
TASK_COUNT = 25
@dag(
schedule_interval='@daily',
start_date=datetime.datetime(2022, 8, 16),
default_args={
'retries': 0,
},
)
def test_backfill_removed():
@task
def get_tasks():
return list(itertools.islice(itertools.cycle(string.ascii_letters), TASK_COUNT))
@task
def t1(arg):
logger.info(f'{arg=}')
return arg
t1.expand(arg=t1.expand(arg=get_tasks()))
# t1.expand(arg=t1.expand(arg=t1.expand(arg=get_tasks())))
dag = test_backfill_removed()
if __name__ == '__main__':
dag.cli()"><pre class="notranslate"><code class="notranslate">#!/usr/bin/env python3
import datetime
import itertools
import logging
import string
from airflow.decorators import dag, task
logger = logging.getLogger(__name__)
TASK_COUNT = 25
@dag(
schedule_interval='@daily',
start_date=datetime.datetime(2022, 8, 16),
default_args={
'retries': 0,
},
)
def test_backfill_removed():
@task
def get_tasks():
return list(itertools.islice(itertools.cycle(string.ascii_letters), TASK_COUNT))
@task
def t1(arg):
logger.info(f'{arg=}')
return arg
t1.expand(arg=t1.expand(arg=get_tasks()))
# t1.expand(arg=t1.expand(arg=t1.expand(arg=get_tasks())))
dag = test_backfill_removed()
if __name__ == '__main__':
dag.cli()
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="airflow dags backfill test_backfill_removed -s 2022-08-01 -e 2022-08-05"><pre class="notranslate"><code class="notranslate">airflow dags backfill test_backfill_removed -s 2022-08-01 -e 2022-08-05
</code></pre></div>
<h3 dir="auto">Operating System</h3>
<p dir="auto">CentOS Stream 8</p>
<h3 dir="auto">Versions of Apache Airflow Providers</h3>
<p dir="auto">None</p>
<h3 dir="auto">Deployment</h3>
<p dir="auto">Other</p>
<h3 dir="auto">Deployment details</h3>
<p dir="auto">Self-hosted + standalone</p>
<h3 dir="auto">Anything else</h3>
<p dir="auto">I've reproduced this with SQLite + <code class="notranslate">SequentialExecutor</code> (standalone), Postgres + <code class="notranslate">LocalExecutor</code> (standalone), and Postgres + <code class="notranslate">CeleryExecutor</code> (production deployment, self-hosted).</p>
<p dir="auto">I don't see any errors or warnings in the logs. In fact, even with <code class="notranslate">logging_level = DEBUG</code>, I don't see <em>any</em> log lines that reference the tasks that are listed as "removed".</p>
<p dir="auto">This error is sometimes inconsistent to reproduce - if you are unlucky, you might instead get the deadlock mentioned in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1339550696" data-permission-text="Title is private" data-url="https://github.com/apache/airflow/issues/25730" data-hovercard-type="issue" data-hovercard-url="/apache/airflow/issues/25730/hovercard" href="https://github.com/apache/airflow/issues/25730">#25730</a>.</p>
<h3 dir="auto">Are you willing to submit PR?</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Yes I am willing to submit a PR!</li>
</ul>
<h3 dir="auto">Code of Conduct</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow this project's <a href="https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md">Code of Conduct</a></li>
</ul> | 1 |
<p dir="auto"><a href="https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/kubernetes-e2e-gci-gke/2424/" rel="nofollow">https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/kubernetes-e2e-gci-gke/2424/</a></p>
<p dir="auto">Failed: [k8s.io] Kubectl client [k8s.io] Kubectl run job should create a job from an image when restart is OnFailure [Conformance] {Kubernetes e2e suite}</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:1082
Oct 24 09:14:06.985: Failed getting job e2e-test-nginx-job: the server could not find the requested resource
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:1073"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:1082
Oct 24 09:14:06.985: Failed getting job e2e-test-nginx-job: the server could not find the requested resource
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:1073
</code></pre></div>
<p dir="auto">Previous issues for this test: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="164246884" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/28584" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/28584/hovercard" href="https://github.com/kubernetes/kubernetes/issues/28584">#28584</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="174946883" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/32045" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/32045/hovercard" href="https://github.com/kubernetes/kubernetes/issues/32045">#32045</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="183098849" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/34833" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/34833/hovercard" href="https://github.com/kubernetes/kubernetes/issues/34833">#34833</a></p> | <p dir="auto"><a href="https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/kubernetes-e2e-gci-gke/2414/" rel="nofollow">https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/kubernetes-e2e-gci-gke/2414/</a></p>
<p dir="auto">Failed: [k8s.io] Kubectl client [k8s.io] Kubectl run job should create a job from an image when restart is OnFailure [Conformance] {Kubernetes e2e suite}</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:1082
Oct 24 06:10:16.418: Failed getting job e2e-test-nginx-job: the server could not find the requested resource
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:1073"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:1082
Oct 24 06:10:16.418: Failed getting job e2e-test-nginx-job: the server could not find the requested resource
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:1073
</code></pre></div>
<p dir="auto">Previous issues for this test: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="164246884" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/28584" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/28584/hovercard" href="https://github.com/kubernetes/kubernetes/issues/28584">#28584</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="174946883" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/32045" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/32045/hovercard" href="https://github.com/kubernetes/kubernetes/issues/32045">#32045</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="183098849" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/34833" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/34833/hovercard" href="https://github.com/kubernetes/kubernetes/issues/34833">#34833</a></p> | 1 |
<p dir="auto"><strong>Context:</strong></p>
<ul dir="auto">
<li>Playwright Version: 1.22.0</li>
<li>Operating System: Windows</li>
<li>Python 3.10</li>
<li>Browser: Chromium</li>
<li>Extra: 2 screens</li>
</ul>
<hr>
<p dir="auto">I specify the position of appearance x = 2000 so that the browser window appears on the second screen and the maxsize parameter. However, the browser does not become full screen. It's just the default window.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" browser = playwright.chromium.launch(headless=False, args=["--window-position=2000,0","--start-maximized"])
context = browser.new_context()
page = browser.new_page( no_viewport=True )"><pre class="notranslate"><code class="notranslate"> browser = playwright.chromium.launch(headless=False, args=["--window-position=2000,0","--start-maximized"])
context = browser.new_context()
page = browser.new_page( no_viewport=True )
</code></pre></div>
<p dir="auto"><strong>Selenium, by the way, has no such problems</strong></p>
<p dir="auto">Monitor#2<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/41006652/169603363-a8555894-eed4-436b-88b9-ebd0eed7574b.png"><img src="https://user-images.githubusercontent.com/41006652/169603363-a8555894-eed4-436b-88b9-ebd0eed7574b.png" alt="image" style="max-width: 100%;"></a></p> | <p dir="auto"><strong>Context:</strong></p>
<ul dir="auto">
<li>Playwright Version: 1.22.0</li>
<li>Operating System: Windows</li>
<li>Python 3.10</li>
<li>Browser: Chromium</li>
<li>Extra: 2 screens</li>
</ul>
<hr>
<p dir="auto">I specify the position of appearance x = 2000 so that the browser window appears on the second screen and the maxsize parameter. However, the browser does not become full screen. It's just the default window.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" browser = playwright.chromium.launch(headless=False, args=["--window-position=2000,0","--start-maximized"])
context = browser.new_context()
page = browser.new_page( no_viewport=True )"><pre class="notranslate"><code class="notranslate"> browser = playwright.chromium.launch(headless=False, args=["--window-position=2000,0","--start-maximized"])
context = browser.new_context()
page = browser.new_page( no_viewport=True )
</code></pre></div>
<p dir="auto"><strong>Selenium, by the way, has no such problems</strong></p>
<p dir="auto">Monitor#2<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/41006652/169603363-a8555894-eed4-436b-88b9-ebd0eed7574b.png"><img src="https://user-images.githubusercontent.com/41006652/169603363-a8555894-eed4-436b-88b9-ebd0eed7574b.png" alt="image" style="max-width: 100%;"></a></p> | 1 |
<h3 dir="auto">Describe the workflow you want to enable</h3>
<p dir="auto">Is it possible to support any aggregation function as <code class="notranslate">strategy</code> in <code class="notranslate">SimpleImputer</code>?<br>
The only thing we will need to check is that function returns one non-null value (aggregating) consistently (not random).</p>
<h3 dir="auto">Describe your proposed solution</h3>
<p dir="auto">Support <code class="notranslate">callable</code> as valid <code class="notranslate">strategy</code></p>
<h3 dir="auto">Describe alternatives you've considered, if relevant</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Additional context</h3>
<p dir="auto">This could be an easier and more elegant solution for simple imputer strategies requests that are appearing from time to time.</p> | <p dir="auto">It seems like <code class="notranslate">Imputer</code> can be easily extended to handle arbitrary axis-wise strategies (at least in the case where the data is dense, or sparse with non-explicit entries to be imputed).</p>
<p dir="auto">The <code class="notranslate">strategy</code> parameter could accept a function (or other callable) that reduces a given masked array along an axis, including <a href="http://docs.scipy.org/doc/scipy/reference/stats.mstats.html" rel="nofollow">scipy.stats.mstats</a> functions. More flexibly, <code class="notranslate">strategy</code> could be a callable that either takes a 2d-array and an <code class="notranslate">axis</code> value and returns a 1d-array, or just takes a 1d-array and returns a scalar.</p>
<p dir="auto">For example, one should be able to use:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from functools import partial
from scipy.stats import mstats
Imputer(strategy=partial(mstats.tmean, limits=(.1, None)))"><pre class="notranslate"><span class="pl-k">from</span> <span class="pl-s1">functools</span> <span class="pl-k">import</span> <span class="pl-s1">partial</span>
<span class="pl-k">from</span> <span class="pl-s1">scipy</span>.<span class="pl-s1">stats</span> <span class="pl-k">import</span> <span class="pl-s1">mstats</span>
<span class="pl-v">Imputer</span>(<span class="pl-s1">strategy</span><span class="pl-c1">=</span><span class="pl-en">partial</span>(<span class="pl-s1">mstats</span>.<span class="pl-s1">tmean</span>, <span class="pl-s1">limits</span><span class="pl-c1">=</span>(<span class="pl-c1">.1</span>, <span class="pl-c1">None</span>)))</pre></div>
<p dir="auto">to impute with a trimmed mean using absolute bounds (NB: <a href="http://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.mstats.tmean.html" rel="nofollow"><code class="notranslate">tmean</code></a> doesn't accept an <code class="notranslate">axis</code> argument), or:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="Imputer(strategy=lambda X, axis: np.ma.mean(mstats.trimboth(X, .1, axis=axis),
axis=axis)"><pre class="notranslate"><span class="pl-v">Imputer</span>(<span class="pl-s1">strategy</span><span class="pl-c1">=</span><span class="pl-k">lambda</span> <span class="pl-v">X</span>, <span class="pl-s1">axis</span>: <span class="pl-s1">np</span>.<span class="pl-s1">ma</span>.<span class="pl-en">mean</span>(<span class="pl-s1">mstats</span>.<span class="pl-en">trimboth</span>(<span class="pl-v">X</span>, <span class="pl-c1">.1</span>, <span class="pl-s1">axis</span><span class="pl-c1">=</span><span class="pl-s1">axis</span>),
<span class="pl-s1">axis</span><span class="pl-c1">=</span><span class="pl-s1">axis</span>)</pre></div>
<p dir="auto">for a trimmed mean with quantile bounds.</p> | 1 |
<p dir="auto">Tracking issue for Finalize defaulted type parameters, <a href="https://github.com/rust-lang/rfcs/pull/213" data-hovercard-type="pull_request" data-hovercard-url="/rust-lang/rfcs/pull/213/hovercard">RFC 213</a>.</p> | <p dir="auto">EDIT: this issue has been stalled on disagreements about how to handle a nasty problem found during implementation. <a href="https://internals.rust-lang.org/t/interaction-of-user-defined-and-integral-fallbacks-with-inference/2496" rel="nofollow">See the internals thread where this was detailed and discussed</a>.</p>
<hr>
<p dir="auto">This is a tracking issue for <a href="https://github.com/rust-lang/rfcs/blob/master/text/0213-defaulted-type-params.md">RFC 213</a>.</p>
<p dir="auto">The initial implementation of this feature has <a href="https://github.com/rust-lang/rust/pull/26870" data-hovercard-type="pull_request" data-hovercard-url="/rust-lang/rust/pull/26870/hovercard">landed</a>.</p>
<p dir="auto">cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/nikomatsakis/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/nikomatsakis">@nikomatsakis</a></p> | 1 |
<ul dir="auto">
<li>VSCode Version: 0.10.11</li>
<li>OS Version: Win 10 all latest patches</li>
</ul>
<p dir="auto">Steps to Reproduce:</p>
<ol dir="auto">
<li>Create a variable named "var...."</li>
<li>Syntax highlight thinks it is a variable declaration in the name:</li>
</ol>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/10294795/13770995/03aa9e6a-ea8b-11e5-8714-c262cf01e2e0.png"><img src="https://cloud.githubusercontent.com/assets/10294795/13770995/03aa9e6a-ea8b-11e5-8714-c262cf01e2e0.png" alt="image" style="max-width: 100%;"></a></p> | <p dir="auto">Ported from <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="94376232" data-permission-text="Title is private" data-url="https://github.com/microsoft/TypeScript-Sublime-Plugin/issues/285" data-hovercard-type="issue" data-hovercard-url="/microsoft/TypeScript-Sublime-Plugin/issues/285/hovercard" href="https://github.com/microsoft/TypeScript-Sublime-Plugin/issues/285">microsoft/TypeScript-Sublime-Plugin#285</a></p>
<p dir="auto">Related to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="91870539" data-permission-text="Title is private" data-url="https://github.com/microsoft/TypeScript-Sublime-Plugin/issues/265" data-hovercard-type="issue" data-hovercard-url="/microsoft/TypeScript-Sublime-Plugin/issues/265/hovercard" href="https://github.com/microsoft/TypeScript-Sublime-Plugin/issues/265">microsoft/TypeScript-Sublime-Plugin#265</a>.</p>
<p dir="auto">Issue:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/1707813/8627292/da8f8be4-26fe-11e5-97ce-2b2a8b257afa.png"><img src="https://cloud.githubusercontent.com/assets/1707813/8627292/da8f8be4-26fe-11e5-97ce-2b2a8b257afa.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">Correct:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/1707813/8627340/3e27dbf2-26ff-11e5-8751-7e8576cbd230.png"><img src="https://cloud.githubusercontent.com/assets/1707813/8627340/3e27dbf2-26ff-11e5-8751-7e8576cbd230.png" alt="image" style="max-width: 100%;"></a></p> | 1 |
<p dir="auto">I think it would be a good idea to tune Material-UI into a truly responsive mobile-first framework. Responsive imagery using the HTML <code class="notranslate">srcset</code> and <code class="notranslate">sizes</code> attributes could greatly improve bandwidth usage and quality of service.</p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/callemall/material-ui/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
</ul> | <p dir="auto">When setting the height of the button itself, it breaks the vertical centering of the label. I've tried a few workarounds around setting the label height or line-height, or putting the button in a div of smaller height, but those haven't worked. Is there a known solution for this or am I incorrectly setting the button height in the style prop?<br>
<code class="notranslate"><FlatButton label="Cash Out" disabled={true} labelStyle={{ fontSize: '10px', fontWeight: 300, lineHeight: '25px', textTransform: 'none', width: '50px' }} style={{ border: '1px solid gray', borderRadius: '5px', color: 'gray', height: '25px', marginLeft: '15px' }} /></code></p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/callemall/material-ui/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h2 dir="auto">Your Environment</h2>
<table role="table">
<thead>
<tr>
<th>Tech</th>
<th>Version</th>
</tr>
</thead>
<tbody>
<tr>
<td>Material-UI</td>
<td>0.18.7</td>
</tr>
<tr>
<td>React</td>
<td>15.5.4</td>
</tr>
<tr>
<td>browser</td>
<td>Safari 11</td>
</tr>
<tr>
<td>etc</td>
<td></td>
</tr>
</tbody>
</table> | 0 |
<h4 dir="auto">Description</h4>
<p dir="auto">Example: Machine Learning practioners want to try every single classification algorithm for a dataset, how about having a modularized module which is an additional feature of GridSearchCV that now takes MULTIPLE classification algorithms with multiple parameters for each classification algorithm and shoots out the model that best classifies the data based on a chosen scorer</p>
<h4 dir="auto">Steps/Code to Reproduce</h4>
<p dir="auto">Example:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="hyperparametertuning.py
(C) 2017 by Abhishek Babuji <[email protected]>
Contains methods to return a pipeline object and a dictionary containing
classifier parameters
"""
from sklearn.ensemble import GradientBoostingClassifier
from sklearn.ensemble import RandomForestClassifier
from sklearn.linear_model import LogisticRegression
from sklearn.naive_bayes import MultinomialNB
from sklearn.neighbors import KNeighborsClassifier
from sklearn.pipeline import Pipeline
from sklearn.svm import SVC
class HyperParameterTuning:
"""
Contains methods to return a pipeline object and a dictionary containing
classifier parameters
"""
def __init__(self, classifier, vectorizer):
"""
Args:
classifier (One of 6 sklearn classifier objects): 'logreg', 'svm', 'nb',
'knn', 'xgboost', 'randomforests'
vectorizer (CountVectorizer or TfidfVectorizer): Type of vector space model
Returns:
pipeline (sklearn pipeline object): Returns a pipeline object which is used
by GridSearchCV
model_params[self.classifier] (dict): Returns a dictionary of parameters
for the specified type of classifier
"""
self.classifier = classifier
self.vectorizer = vectorizer
def get_pipeline(self):
"""
Args:
classifier (One of 6 sklearn classifier objects): 'logreg', 'svm', 'nb',
'knn', 'xgboost', 'randomforests'
vectorizer (CountVectorizer or TfidfVectorizer): Type of vector space model
Returns:
pipeline (sklearn pipeline object): Returns a pipeline object which is
used by GridSearchCV
model_params[self.classifier] (dict): Returns a dictionary of parameters
for the specified type of classifier
"""
classifier_objects = {'logreg': LogisticRegression(),
'svm': SVC(),
'knn': KNeighborsClassifier(),
'xgboost': GradientBoostingClassifier(),
'randomforests': RandomForestClassifier(),
'nb': MultinomialNB()}
pipeline = Pipeline([('vect', self.vectorizer),
('clf', classifier_objects[self.classifier])])
return pipeline
def get_params(self):
"""
Args:
self
Returns:
model_params[self.classifier] (dict): Returns a dictionary of parameters for the
specified type of classifier
"""
model_params = {'logreg': {'clf__C': (1, 10, 100), 'clf__penalty': ('l1', 'l2')},
'svm': {'clf__C': (1, 10, 100),
'clf__kernel': ('linear', 'poly', 'rbf', 'sigmoid')},
'knn': {'clf__n_neighbors': (5, 10, 50, 100)},
'xgboost': {'clf__n_estimators': (100, 500, 1000)},
'randomforests': {'clf__n_estimators': (100, 500, 1000)},
'nb': {'clf__alpha': (0, 1), 'clf__fit_prior': (True, False)}}
return model_params[self.classifier]"><pre lang=""""" class="notranslate"><code class="notranslate">hyperparametertuning.py
(C) 2017 by Abhishek Babuji <[email protected]>
Contains methods to return a pipeline object and a dictionary containing
classifier parameters
"""
from sklearn.ensemble import GradientBoostingClassifier
from sklearn.ensemble import RandomForestClassifier
from sklearn.linear_model import LogisticRegression
from sklearn.naive_bayes import MultinomialNB
from sklearn.neighbors import KNeighborsClassifier
from sklearn.pipeline import Pipeline
from sklearn.svm import SVC
class HyperParameterTuning:
"""
Contains methods to return a pipeline object and a dictionary containing
classifier parameters
"""
def __init__(self, classifier, vectorizer):
"""
Args:
classifier (One of 6 sklearn classifier objects): 'logreg', 'svm', 'nb',
'knn', 'xgboost', 'randomforests'
vectorizer (CountVectorizer or TfidfVectorizer): Type of vector space model
Returns:
pipeline (sklearn pipeline object): Returns a pipeline object which is used
by GridSearchCV
model_params[self.classifier] (dict): Returns a dictionary of parameters
for the specified type of classifier
"""
self.classifier = classifier
self.vectorizer = vectorizer
def get_pipeline(self):
"""
Args:
classifier (One of 6 sklearn classifier objects): 'logreg', 'svm', 'nb',
'knn', 'xgboost', 'randomforests'
vectorizer (CountVectorizer or TfidfVectorizer): Type of vector space model
Returns:
pipeline (sklearn pipeline object): Returns a pipeline object which is
used by GridSearchCV
model_params[self.classifier] (dict): Returns a dictionary of parameters
for the specified type of classifier
"""
classifier_objects = {'logreg': LogisticRegression(),
'svm': SVC(),
'knn': KNeighborsClassifier(),
'xgboost': GradientBoostingClassifier(),
'randomforests': RandomForestClassifier(),
'nb': MultinomialNB()}
pipeline = Pipeline([('vect', self.vectorizer),
('clf', classifier_objects[self.classifier])])
return pipeline
def get_params(self):
"""
Args:
self
Returns:
model_params[self.classifier] (dict): Returns a dictionary of parameters for the
specified type of classifier
"""
model_params = {'logreg': {'clf__C': (1, 10, 100), 'clf__penalty': ('l1', 'l2')},
'svm': {'clf__C': (1, 10, 100),
'clf__kernel': ('linear', 'poly', 'rbf', 'sigmoid')},
'knn': {'clf__n_neighbors': (5, 10, 50, 100)},
'xgboost': {'clf__n_estimators': (100, 500, 1000)},
'randomforests': {'clf__n_estimators': (100, 500, 1000)},
'nb': {'clf__alpha': (0, 1), 'clf__fit_prior': (True, False)}}
return model_params[self.classifier]
</code></pre></div>
<p dir="auto">An example like this, that tries EVERY classifier. Of course this is very computationally and time expensive.. But if you're trying to fit it for small datasets where Machine Learning is applicable, we could brainstorm further to maybe understand which default HyperParameters to tune for each algorithm using a scorer of your choice</p> | <p dir="auto">I came across a situation where I needed to split my data into more than 2 groups, and realised that this can't be done that simply with sklearn's splitter classes as it stands. I note that stack overflow has several similar questions from other users.</p>
<p dir="auto">One can repeatedly apply splits, but this seems quite clunky given that the code seems to be readily extensible to handle <code class="notranslate">n_groups > 2</code>. Was the choice to limit to a train/test split consciously made for any specific reasons?</p> | 0 |
<p dir="auto">Does nextJS provide sourcemaps for dev? I added a debugger statement to my code and when It breaks in console, it just shows null as my code.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/1238267ff8cdc1b42cdeeb8156341031208ee86c09b5f5d0d9575bc61a08a48d/687474703a2f2f692e696d6775722e636f6d2f4c687645624e6a2e706e67"><img src="https://camo.githubusercontent.com/1238267ff8cdc1b42cdeeb8156341031208ee86c09b5f5d0d9575bc61a08a48d/687474703a2f2f692e696d6775722e636f6d2f4c687645624e6a2e706e67" alt="issue" data-canonical-src="http://i.imgur.com/LhvEbNj.png" style="max-width: 100%;"></a></p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/zeit/next.js/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h2 dir="auto">Expected Behavior</h2>
<p dir="auto">The sourcemap should be used and my actual code should show</p>
<h2 dir="auto">Current Behavior</h2>
<p dir="auto">See above</p>
<h2 dir="auto">Steps to Reproduce (for bugs)</h2>
<ol dir="auto">
<li></li>
<li></li>
<li></li>
<li></li>
</ol>
<h2 dir="auto">Context</h2>
<p dir="auto">Makes debugging really challenging</p>
<h2 dir="auto">Your Environment</h2>
<table role="table">
<thead>
<tr>
<th>Tech</th>
<th>Version</th>
</tr>
</thead>
<tbody>
<tr>
<td>next</td>
<td>3.2.1</td>
</tr>
<tr>
<td>node</td>
<td>8.4.0</td>
</tr>
<tr>
<td>OS</td>
<td>Win 10 Pro</td>
</tr>
<tr>
<td>browser</td>
<td>Chrome Version 61</td>
</tr>
<tr>
<td>etc</td>
<td></td>
</tr>
</tbody>
</table> | <ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/zeit/next.js/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h2 dir="auto">Expected Behavior</h2>
<p dir="auto">I would expect to see the source map in the dev tools of Chrome.</p>
<h2 dir="auto">Current Behavior</h2>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/3165635/30108907-87174b90-9304-11e7-9bf4-1355d87fdc95.png"><img width="234" alt="capture d ecran 2017-09-06 a 13 08 18" src="https://user-images.githubusercontent.com/3165635/30108907-87174b90-9304-11e7-9bf4-1355d87fdc95.png" style="max-width: 100%;"></a></p>
<h2 dir="auto">Steps to Reproduce (for bugs)</h2>
<p dir="auto">With Material-UI:</p>
<ol dir="auto">
<li><code class="notranslate">git clone [email protected]:callemall/material-ui.git</code></li>
<li><code class="notranslate">cd material-ui</code></li>
<li><code class="notranslate">git checkout v1-beta</code></li>
<li><code class="notranslate">yarn</code></li>
<li><code class="notranslate">yarn docs:dev</code></li>
</ol>
<p dir="auto">Or with a simpler project: <a href="https://github.com/callemall/material-ui/tree/v1-beta/examples/nextjs">https://github.com/callemall/material-ui/tree/v1-beta/examples/nextjs</a>.</p>
<h2 dir="auto">Context</h2>
<ol dir="auto">
<li>I have first noticed this issue on a project at work.</li>
<li>Hopefully, I was able to nail down the npm release that introduced the issue <a href="https://github.com/callemall/material-ui/compare/v1.0.0-beta.6...v1.0.0-beta.7#diff-b9cfc7f2cdf78a7f4b91a753d10865a2L74">by a bisection between</a> the <code class="notranslate">v1.0.0-beta.6</code> release and <code class="notranslate">v1.0.0-beta.7</code> release of Material-UI.</li>
<li>I'm also able to reproduce the issue on a simpler example, the <a href="https://github.com/callemall/material-ui/tree/v1-beta/examples/nextjs">nextjs example</a> of Material-UI.</li>
</ol>
<p dir="auto">So, it's 3 independent projects impacted by the issue. I do think that it's a strong <a href="https://en.wikipedia.org/wiki/Signal-to-noise_ratio" rel="nofollow">SNR</a> ratio.</p>
<h2 dir="auto">Your Environment</h2>
<table role="table">
<thead>
<tr>
<th>Tech</th>
<th>Version</th>
</tr>
</thead>
<tbody>
<tr>
<td>next</td>
<td>v3.2.1</td>
</tr>
<tr>
<td>node</td>
<td>v8.1.4</td>
</tr>
<tr>
<td>OS</td>
<td>MacOs</td>
</tr>
<tr>
<td>browser</td>
<td>Chrome</td>
</tr>
</tbody>
</table> | 1 |
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=gotilio" rel="nofollow">Eduardo Alberto Magdalena Aguin</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-9676?redirect=false" rel="nofollow">SPR-9676</a></strong> and commented</p>
<p dir="auto">I have a DAO class which have an "update" operation consisting on deleting current record and inserting it again as a part of a batchInsert which is done is later but fails. those are the symptoms:</p>
<ol dir="auto">
<li>I delete the record with<br>
getJdbcTemplate().update("DELETE " + table + " WHERE " + pkName + "=" + pkValue + getRelPKCriteria(table, params));</li>
</ol>
<p dir="auto">If debugging, I check in Oracle and the record is no longer there.</p>
<ol start="2" dir="auto">
<li>Afterwards, the insertion batch is excuted when is ready by SimpleJdbcInsert:</li>
</ol>
<p dir="auto">try{<br>
getInsert(currentBatchTable).executeBatch(insertBatch.toArray(BATCH));<br>
} catch(DuplicateKeyException e){<br>
/* One by one we try to insert them and warn about the wrong ones */<br>
log.warn("Batch inserting failed, trying to do one by one insert...");<br>
stepByStepInsert();<br>
}</p>
<p dir="auto">It fails without inserting anything, but just in case to know whose is the responsible We "step by step" insert every of them:</p>
<p dir="auto">private void stepByStepInsert(){<br>
SimpleJdbcInsert insert = new SimpleJdbcInsert(dataSource);<br>
insert.setTableName(currentBatchTable);</p>
<p dir="auto">for(Map<String, Object> map : insertBatch){<br>
try{<br>
insert.execute(map);<br>
}catch(DuplicateKeyException e){<br>
log.error("Unexpected duplicated record: " + map);<br>
}<br>
}<br>
}</p>
<p dir="auto">But the result is even more strange, all the insert operations throw DuplicateKeyException and the one being originaly deleted also gets inserted with the new values (despite of throwing the claimed exception).</p>
<p dir="auto">The database is Oracle 11g</p>
<p dir="auto">The Driver is ojdbc6.jar</p>
<p dir="auto">And this is how the driver is configured:</p>
<p dir="auto"><bean class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close" id="dataSourceXXX"><br>
<property name="driverClassName" value="${database.driverClassName}" /><br>
<property name="url" value="${database.url}" /><br>
<property name="username" value="${database.usernameTrialpedia}" /><br>
<property name="password" value="${database.passwordTrialpedia}" /><br>
<property name="testOnBorrow" value="true" /><br>
<property name="testOnReturn" value="true" /><br>
<property name="testWhileIdle" value="true" /><br>
<property name="defaultAutoCommit" value="true" /><br>
<property name="timeBetweenEvictionRunsMillis" value="1800000" /><br>
<property name="numTestsPerEvictionRun" value="3" /><br>
<property name="minEvictableIdleTimeMillis" value="1800000" /><br>
<property name="validationQuery" value="SELECT 1 FROM DUAL" /><br>
</bean><br>
If the cause is ignorance on my part please excuse me any troubles caused.</p>
<hr>
<p dir="auto"><strong>Affects:</strong> 3.1.2</p> | <p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=hathanhthai" rel="nofollow">Thai Ha</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-7482?redirect=false" rel="nofollow">SPR-7482</a></strong> and commented</p>
<p dir="auto">I have a JSP page using spring:eval tag as below</p>
<div class="highlight highlight-text-xml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="<spring:eval expression="command.products" var="items" />"><pre class="notranslate"><<span class="pl-ent">spring</span><span class="pl-ent">:</span><span class="pl-ent">eval</span> <span class="pl-e">expression</span>=<span class="pl-s"><span class="pl-pds">"</span>command.products<span class="pl-pds">"</span></span> <span class="pl-e">var</span>=<span class="pl-s"><span class="pl-pds">"</span>items<span class="pl-pds">"</span></span> /></pre></div>
<p dir="auto">When run the mvn jetty:run command (both jetty 6.1.22 and jetty 6.1.25), I always receive the below NullPointerException (see the stacktrace at the bottom) when I access JSP page on the second time (I don't receive any error for the first time).After debugging the code, I find out that sometimes EvalTag reuses instance variable evaluationContext for the next requests, which was initialized with the PageContext of the some previous request. Here is the code which caching evaluationContext through many requests</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="if (this.evaluationContext == null) {
this.evaluationContext = createEvaluationContext(pageContext);
}
....
String result = this.expression.getValue(this.evaluationContext, String.class);
..."><pre class="notranslate"><code class="notranslate">if (this.evaluationContext == null) {
this.evaluationContext = createEvaluationContext(pageContext);
}
....
String result = this.expression.getValue(this.evaluationContext, String.class);
...
</code></pre></div>
<p dir="auto">Here are the steps which lead to the exception:</p>
<ol dir="auto">
<li>User sends a request to page</li>
<li>Jetty creates EvalTag#1, which will initialize EvalTag#1.evaluationContext using PageContextImpl#1 (at the moment, PageContextImpl#1.request=HttpServletRequest#1). The tag will be called successfully.</li>
<li>Result is returned to user.</li>
<li>Jetty recycles PageContextImpl#1 by calling release() method. PageContextImpl#1.request=null<br>
Jetty recycles EvalTag#1 by calling release() method. But EvalTag#1.evaluationContext still != null. EvalTag#1.evaluationContext still have references to PageContextImpl#1 indirectly</li>
<li>User clicks Refresh button to reload the page</li>
<li>Jetty reuses EvalTag#1 to evaluate expression and as a result, the old value of EvalTag#1.evaluationContext is also be reused. This time Jetty creates a new object PageContextImpl#2 (note: somehow Jetty doesn't reuse the PageContextImpl#1 here on my page). At the moment, Jetty will throw NPE when EvalTag#1.doEndTag() is called because EvalTag#1.evaluationContext...PageContextImpl#1.request is null (it should be EvalTag#1.evaluationContext...PageContextImpl#2.request)</li>
</ol>
<p dir="auto">For other pages (which this NPE doesn't happen), at step 7 the PageContextImpl#1 is reused by Jetty and PageContextImpl#1.request is initialized correctly by Jetty so the NPE doesn't happen.</p>
<p dir="auto">I think EvalTag.evaluationContext should NOT be cached to avoid this error.</p>
<div class="highlight highlight-text-xml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="2010-08-21 21:40:13,093 [501538@qtp-18977449-3] ERROR [org.mortbay.log] - Nested in org.apache.jasper.JasperException: org.springframework.expression.spel.SpelEvaluationException: EL1021E:(pos 0): A problem occurred whilst attempting to access the property 'command': 'Unexpected exception occurred accessing 'command' as an implicit variable':
org.springframework.expression.spel.SpelEvaluationException: EL1021E:(pos 0): A problem occurred whilst attempting to access the property 'command': 'Unexpected exception occurred accessing 'command' as an implicit variable'
at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:199)
at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:71)
at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:52)
at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:93)
at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:88)
at org.springframework.web.servlet.tags.EvalTag.doEndTag(EvalTag.java:108)
at org.apache.jsp.search_jsp._jspx_meth_spring_eval_3(org.apache.jsp.search_jsp:320)
at org.apache.jsp.search_jsp._jspService(org.apache.jsp.search_jsp:120)
at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:109)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:389)
at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:486)
at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:380)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:511)
at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1166)
at com.opensymphony.sitemesh.webapp.SiteMeshFilter.doFilter(SiteMeshFilter.java:59)
at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
at org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:388)
at org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
at org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:182)
at org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:765)
at org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:440)
at org.mortbay.jetty.servlet.Dispatcher.forward(Dispatcher.java:327)
at org.mortbay.jetty.servlet.Dispatcher.forward(Dispatcher.java:126)
at org.springframework.web.servlet.view.InternalResourceView.renderMergedOutputModel(InternalResourceView.java:238)
at org.springframework.web.servlet.view.AbstractView.render(AbstractView.java:250)
at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1031)
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:815)
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:717)
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:644)
at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:560)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:511)
at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1166)
at com.opensymphony.sitemesh.webapp.SiteMeshFilter.obtainContent(SiteMeshFilter.java:129)
at com.opensymphony.sitemesh.webapp.SiteMeshFilter.doFilter(SiteMeshFilter.java:77)
at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
at org.tuckey.web.filters.urlrewrite.RuleChain.handleRewrite(RuleChain.java:176)
at org.tuckey.web.filters.urlrewrite.RuleChain.doRules(RuleChain.java:145)
at org.tuckey.web.filters.urlrewrite.UrlRewriter.processRequest(UrlRewriter.java:92)
at org.tuckey.web.filters.urlrewrite.UrlRewriteFilter.doFilter(UrlRewriteFilter.java:381)
at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
at net.sf.ehcache.constructs.web.filter.GzipFilter.doFilter(GzipFilter.java:80)
at net.sf.ehcache.constructs.web.filter.Filter.doFilter(Filter.java:86)
at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
at myapp.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:83)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:76)
at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:343)
at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:109)
at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:83)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:355)
at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:97)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:355)
at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:100)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:355)
at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:78)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:355)
at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:54)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:355)
at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:35)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:355)
at org.springframework.security.web.authentication.www.BasicAuthenticationFilter.doFilter(BasicAuthenticationFilter.java:177)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:355)
at org.springframework.security.web.authentication.ui.DefaultLoginPageGeneratingFilter.doFilter(DefaultLoginPageGeneratingFilter.java:91)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:355)
at org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter.doFilter(AbstractAuthenticationProcessingFilter.java:187)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:355)
at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:105)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:355)
at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:79)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:355)
at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:149)
at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:237)
at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:167)
at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:77)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:76)
at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
at org.springframework.web.multipart.support.MultipartFilter.doFilterInternal(MultipartFilter.java:113)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:76)
at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:88)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:76)
at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
at org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:388)
at org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
at org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:182)
at org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:765)
at org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:440)
at org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:230)
at org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)
at org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152)
at org.mortbay.jetty.Server.handle(Server.java:326)
at org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:542)
at org.mortbay.jetty.HttpConnection$RequestHandler.content(HttpConnection.java:943)
at org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:756)
at org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:218)
at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:404)
at org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:410)
at org.mortbay.thread.QueuedThreadPool$PoolThread.run(QueuedThreadPool.java:582)
Caused by: org.springframework.expression.AccessException: Unexpected exception occurred accessing 'command' as an implicit variable
at org.springframework.web.servlet.tags.EvalTag$JspPropertyAccessor.resolveImplicitVariable(EvalTag.java:186)
at org.springframework.web.servlet.tags.EvalTag$JspPropertyAccessor.canRead(EvalTag.java:159)
at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:189)
... 102 more
Caused by: java.lang.NullPointerException
at org.apache.jasper.runtime.PageContextImpl.doFindAttribute(PageContextImpl.java:541)
at org.apache.jasper.runtime.PageContextImpl.findAttribute(PageContextImpl.java:527)
at javax.servlet.jsp.el.ScopedAttributeELResolver.getValue(ScopedAttributeELResolver.java:123)
at javax.el.CompositeELResolver.getValue(CompositeELResolver.java:175)
at org.apache.jasper.runtime.VariableResolverImpl.resolveVariable(VariableResolverImpl.java:97)
at org.springframework.web.servlet.tags.EvalTag$JspPropertyAccessor.resolveImplicitVariable(EvalTag.java:183)
... 104 more"><pre class="notranslate">2010-08-21 21:40:13,093 [501538@qtp-18977449-3] ERROR [org.mortbay.log] - Nested in org.apache.jasper.JasperException: org.springframework.expression.spel.SpelEvaluationException: EL1021E:(pos 0): A problem occurred whilst attempting to access the property 'command': 'Unexpected exception occurred accessing 'command' as an implicit variable':
org.springframework.expression.spel.SpelEvaluationException: EL1021E:(pos 0): A problem occurred whilst attempting to access the property 'command': 'Unexpected exception occurred accessing 'command' as an implicit variable'
at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:199)
at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:71)
at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:52)
at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:93)
at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:88)
at org.springframework.web.servlet.tags.EvalTag.doEndTag(EvalTag.java:108)
at org.apache.jsp.search_jsp._jspx_meth_spring_eval_3(org.apache.jsp.search_jsp:320)
at org.apache.jsp.search_jsp._jspService(org.apache.jsp.search_jsp:120)
at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:109)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:389)
at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:486)
at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:380)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:511)
at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1166)
at com.opensymphony.sitemesh.webapp.SiteMeshFilter.doFilter(SiteMeshFilter.java:59)
at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
at org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:388)
at org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
at org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:182)
at org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:765)
at org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:440)
at org.mortbay.jetty.servlet.Dispatcher.forward(Dispatcher.java:327)
at org.mortbay.jetty.servlet.Dispatcher.forward(Dispatcher.java:126)
at org.springframework.web.servlet.view.InternalResourceView.renderMergedOutputModel(InternalResourceView.java:238)
at org.springframework.web.servlet.view.AbstractView.render(AbstractView.java:250)
at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1031)
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:815)
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:717)
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:644)
at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:560)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:511)
at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1166)
at com.opensymphony.sitemesh.webapp.SiteMeshFilter.obtainContent(SiteMeshFilter.java:129)
at com.opensymphony.sitemesh.webapp.SiteMeshFilter.doFilter(SiteMeshFilter.java:77)
at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
at org.tuckey.web.filters.urlrewrite.RuleChain.handleRewrite(RuleChain.java:176)
at org.tuckey.web.filters.urlrewrite.RuleChain.doRules(RuleChain.java:145)
at org.tuckey.web.filters.urlrewrite.UrlRewriter.processRequest(UrlRewriter.java:92)
at org.tuckey.web.filters.urlrewrite.UrlRewriteFilter.doFilter(UrlRewriteFilter.java:381)
at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
at net.sf.ehcache.constructs.web.filter.GzipFilter.doFilter(GzipFilter.java:80)
at net.sf.ehcache.constructs.web.filter.Filter.doFilter(Filter.java:86)
at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
at myapp.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:83)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:76)
at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:343)
at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:109)
at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:83)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:355)
at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:97)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:355)
at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:100)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:355)
at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:78)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:355)
at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:54)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:355)
at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:35)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:355)
at org.springframework.security.web.authentication.www.BasicAuthenticationFilter.doFilter(BasicAuthenticationFilter.java:177)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:355)
at org.springframework.security.web.authentication.ui.DefaultLoginPageGeneratingFilter.doFilter(DefaultLoginPageGeneratingFilter.java:91)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:355)
at org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter.doFilter(AbstractAuthenticationProcessingFilter.java:187)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:355)
at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:105)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:355)
at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:79)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:355)
at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:149)
at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:237)
at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:167)
at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:77)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:76)
at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
at org.springframework.web.multipart.support.MultipartFilter.doFilterInternal(MultipartFilter.java:113)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:76)
at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:88)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:76)
at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
at org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:388)
at org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
at org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:182)
at org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:765)
at org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:440)
at org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:230)
at org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)
at org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152)
at org.mortbay.jetty.Server.handle(Server.java:326)
at org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:542)
at org.mortbay.jetty.HttpConnection$RequestHandler.content(HttpConnection.java:943)
at org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:756)
at org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:218)
at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:404)
at org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:410)
at org.mortbay.thread.QueuedThreadPool$PoolThread.run(QueuedThreadPool.java:582)
Caused by: org.springframework.expression.AccessException: Unexpected exception occurred accessing 'command' as an implicit variable
at org.springframework.web.servlet.tags.EvalTag$JspPropertyAccessor.resolveImplicitVariable(EvalTag.java:186)
at org.springframework.web.servlet.tags.EvalTag$JspPropertyAccessor.canRead(EvalTag.java:159)
at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:189)
... 102 more
Caused by: java.lang.NullPointerException
at org.apache.jasper.runtime.PageContextImpl.doFindAttribute(PageContextImpl.java:541)
at org.apache.jasper.runtime.PageContextImpl.findAttribute(PageContextImpl.java:527)
at javax.servlet.jsp.el.ScopedAttributeELResolver.getValue(ScopedAttributeELResolver.java:123)
at javax.el.CompositeELResolver.getValue(CompositeELResolver.java:175)
at org.apache.jasper.runtime.VariableResolverImpl.resolveVariable(VariableResolverImpl.java:97)
at org.springframework.web.servlet.tags.EvalTag$JspPropertyAccessor.resolveImplicitVariable(EvalTag.java:183)
... 104 more</pre></div>
<hr>
<p dir="auto"><strong>Issue Links:</strong></p>
<ul dir="auto">
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398108042" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/12294" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/12294/hovercard" href="https://github.com/spring-projects/spring-framework/issues/12294">#12294</a> spring:eval causes SpelEvaluationException when page is opened in second user-session (<em><strong>"is duplicated by"</strong></em>)</li>
</ul>
<p dir="auto">3 votes, 5 watchers</p> | 0 |
<p dir="auto">The following code:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="static ASCII_SPACE: u8 = b' ';
static ASCII_SAVE_MIN: u8 = 33;
static ASCII_SAVE_MAX: u8 = 255;
fn parse_byte(c: u8) {
match c {
ASCII_SAVE_MIN .. ASCII_SAVE_MAX => { },
ASCII_SPACE => { },
_ => { }
};
}
fn main() { }"><pre class="notranslate"><code class="notranslate">static ASCII_SPACE: u8 = b' ';
static ASCII_SAVE_MIN: u8 = 33;
static ASCII_SAVE_MAX: u8 = 255;
fn parse_byte(c: u8) {
match c {
ASCII_SAVE_MIN .. ASCII_SAVE_MAX => { },
ASCII_SPACE => { },
_ => { }
};
}
fn main() { }
</code></pre></div>
<p dir="auto">results in this compiler error:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="<anon>:7:9: 7:41 error: mismatched types between arms
<anon>:7 ASCII_SAVE_MIN .. ASCII_SAVE_MAX => { },
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
error: aborting due to previous error
playpen: application terminated with error code 101"><pre class="notranslate"><code class="notranslate"><anon>:7:9: 7:41 error: mismatched types between arms
<anon>:7 ASCII_SAVE_MIN .. ASCII_SAVE_MAX => { },
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
error: aborting due to previous error
playpen: application terminated with error code 101
</code></pre></div>
<p dir="auto">Changing the literal for ASCII_SPACE makes it compile:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="- static ASCII_SPACE: u8 = b' ';
+ static ASCII_SPACE: u8 = 22;"><pre class="notranslate"><code class="notranslate">- static ASCII_SPACE: u8 = b' ';
+ static ASCII_SPACE: u8 = 22;
</code></pre></div> | <p dir="auto">I would guess it doesn't go (properly) through const eval, causing weird errors like this one:</p>
<div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="static MAX: uint = -1;
match 0 {
1u..MAX => {}, // error: mismatched types in range
_ => {}
}"><pre class="notranslate"><span class="pl-k">static</span> <span class="pl-v">MAX</span><span class="pl-kos">:</span> <span class="pl-smi">uint</span> = -<span class="pl-c1">1</span><span class="pl-kos">;</span>
<span class="pl-k">match</span> <span class="pl-c1">0</span> <span class="pl-kos">{</span>
<span class="pl-c1">1</span>u..<span class="pl-v">MAX</span> => <span class="pl-kos">{</span><span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-c">// error: mismatched types in range</span>
_ => <span class="pl-kos">{</span><span class="pl-kos">}</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">If the value of <code class="notranslate">MAX</code> is changed to <code class="notranslate">-1u</code>, the code compiles, showing that match checking looks at the value of the <code class="notranslate">static MAX</code> but not at its type or computed value.</p>
<p dir="auto">Further experimentation - using <code class="notranslate">-1 as uint</code> for <code class="notranslate">MAX</code> - produces this ICE:</p>
<div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="error: internal compiler error: node_id_to_type: no type for node `expr -1 as uint (id=26)`"><pre class="notranslate">error<span class="pl-kos">:</span> internal compiler error<span class="pl-kos">:</span> node_id_to_type<span class="pl-kos">:</span> no type <span class="pl-k">for</span> node `expr -<span class="pl-c1">1</span> as uint <span class="pl-kos">(</span>id=<span class="pl-c1">26</span><span class="pl-kos">)</span>`</pre></div> | 1 |
<p dir="auto"><strong>Describe the bug</strong><br>
When I load .glb file in creat-react-app , i just use three.js@136, but i can't see it in my iphone.It's catch error "response.body.getReader".<br>
When i use three@133, I load it successfully. I search the document, I think it's changed FileLoader with Fetch Api in three@134.</p>
<p dir="auto"><em><strong>Code</strong></em></p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// code goes here
let gltfLoader=new GLTFLoader()
gltfLoader.load(
"xxx.glb",
(gltf) => {
scene.add(gltf.scene);
},
undefined,
(error) => {
console.info(error);
// reject(error);
}
);"><pre class="notranslate"><span class="pl-c">// code goes here</span>
<span class="pl-k">let</span> <span class="pl-s1">gltfLoader</span><span class="pl-c1">=</span><span class="pl-k">new</span> <span class="pl-v">GLTFLoader</span><span class="pl-kos">(</span><span class="pl-kos">)</span>
<span class="pl-s1">gltfLoader</span><span class="pl-kos">.</span><span class="pl-en">load</span><span class="pl-kos">(</span>
<span class="pl-s">"xxx.glb"</span><span class="pl-kos">,</span>
<span class="pl-kos">(</span><span class="pl-s1">gltf</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-s1">scene</span><span class="pl-kos">.</span><span class="pl-en">add</span><span class="pl-kos">(</span><span class="pl-s1">gltf</span><span class="pl-kos">.</span><span class="pl-c1">scene</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-c1">undefined</span><span class="pl-kos">,</span>
<span class="pl-kos">(</span><span class="pl-s1">error</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">info</span><span class="pl-kos">(</span><span class="pl-s1">error</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-c">// reject(error);</span>
<span class="pl-kos">}</span>
<span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto"><strong>Platform:</strong></p>
<ul dir="auto">
<li>Device: Mobile</li>
<li>OS:IOS</li>
<li>Browser: Chrome</li>
<li>Three.js version: [dev, r134]</li>
</ul> | <p dir="auto"><strong>[TypeError: undefined is not an object (evaluating ‘response.body.getReader’)]</strong></p>
<p dir="auto">Above error is produced when load function of any loader ( like GLTFLoader or ObjectLoader ) is called.</p>
<p dir="auto">Platforms tested on:</p>
<p dir="auto">Mobile - iPhone<br>
OS: iOS, MacOS<br>
Three.js version 0.135.0<br>
expo-three version 6.0.1<br>
expo-gl version 11.0.3<br>
expo version 43.0.2<br>
react version 17.0.1<br>
react-native version 0.64.3</p>
<p dir="auto">Sample Code:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="const asset = Asset.fromModule(
require("./assets/v_knife_karam/v_knife_karam.gltf")
);
await asset.downloadAsync();
const loader = new GLTFLoader();
loader.load(
asset.uri,
(gltf) => {
// model = gltf.scene;
scene.add(gltf.scene);
},
(xhr) => {
console.log(`${(xhr.loaded / xhr.total) * 100}% loaded`);
},
(error) => {
console.error("An error happened", error);
}
);"><pre class="notranslate"><code class="notranslate">const asset = Asset.fromModule(
require("./assets/v_knife_karam/v_knife_karam.gltf")
);
await asset.downloadAsync();
const loader = new GLTFLoader();
loader.load(
asset.uri,
(gltf) => {
// model = gltf.scene;
scene.add(gltf.scene);
},
(xhr) => {
console.log(`${(xhr.loaded / xhr.total) * 100}% loaded`);
},
(error) => {
console.error("An error happened", error);
}
);
</code></pre></div>
<p dir="auto">Error : [TypeError: undefined is not an object (evaluating ‘response.body.getReader’)]</p> | 1 |
<p dir="auto">Hello!<br>
Would like to use it with RequireJS as define module.<br>
Possible solution is here: <a href="https://github.com/umdjs/umd/blob/master/jqueryPlugin.js">https://github.com/umdjs/umd/blob/master/jqueryPlugin.js</a></p> | <p dir="auto">Wouldn't this feature be very nice?</p> | 0 |
<p dir="auto">Using electron > 0.32.0 makes inline style corrupt that contain float values.</p>
<p dir="auto">Running the following code in the console:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="window.location = "http://www.google.com";
document.querySelector('.content').style.paddingBottom = "100.50px";"><pre class="notranslate"><code class="notranslate">window.location = "http://www.google.com";
document.querySelector('.content').style.paddingBottom = "100.50px";
</code></pre></div>
<p dir="auto">Will print "100.50px", but if I re-query the value:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="document.querySelector('.content').style.paddingBottom"><pre class="notranslate"><code class="notranslate">document.querySelector('.content').style.paddingBottom
</code></pre></div>
<p dir="auto">It will print "100,50px" instead?! Also, looking in the elements tab and selecting the "class=content" node, shows the css value with a warning sign and "Invalid property value" note. How come that the "." is changed to ","?</p>
<p dir="auto">It worked until electron 0.31.2.<br>
I'm running OS X 10.10.5 with Swedish system language.</p> | <p dir="auto">Since version 0.32.0 when I do something like that :</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="angular.element(document.querySelector('#something')).css('height', '0.5px');"><pre class="notranslate"><code class="notranslate">angular.element(document.querySelector('#something')).css('height', '0.5px');
</code></pre></div>
<p dir="auto">or</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$('#plop').css('transition', 'all 0.5s linear');"><pre class="notranslate"><code class="notranslate">$('#plop').css('transition', 'all 0.5s linear');
</code></pre></div>
<p dir="auto">The result in the DOM is <code class="notranslate">height: 0,5px</code> or <code class="notranslate">transition: all 0,5s linear</code></p>
<p dir="auto">If you want to reproduce the bug is pretty simple :</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="<body>
<div id="plop"></div>
<script>
var $ = require('./dist/js/jquery.min.js');
$( document ).ready(function() {
$('#plop').css('transition', 'all 0.5s linear');
})
</script>
</body>"><pre class="notranslate"><code class="notranslate"><body>
<div id="plop"></div>
<script>
var $ = require('./dist/js/jquery.min.js');
$( document ).ready(function() {
$('#plop').css('transition', 'all 0.5s linear');
})
</script>
</body>
</code></pre></div>
<p dir="auto">I use the prebuilt osx</p> | 1 |
<p dir="auto">I have <a href="http://www.webupd8.org/" rel="nofollow">Webupd8</a> has a PPA <a href="https://launchpad.net/~webupd8team/+archive/ubuntu/atom" rel="nofollow">here</a>. But it doesn't get very frequently updated. It'd be great to have a PPA by the atom folks themselves, so when the publish a new release on GitHub, they can push it to the PPA as well.</p> | <ul dir="auto">
<li><a href="https://help.launchpad.net/Packaging/PPA/BuildingASourcePackage" rel="nofollow">BuildingASourcePackage</a></li>
<li><a href="https://help.launchpad.net/Packaging/PPA/Uploading" rel="nofollow">Uploading</a></li>
</ul>
<p dir="auto">Seems like it's a matter of having the right key installed on the right box, and running</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="debuild -S -sa
dput ppa:atomeditor/ppa <filename>.changes"><pre class="notranslate"><code class="notranslate">debuild -S -sa
dput ppa:atomeditor/ppa <filename>.changes
</code></pre></div>
<p dir="auto">Relevant, of course is the <a href="http://packaging.ubuntu.com/html/" rel="nofollow">Ubuntu Packaging Guide</a></p> | 1 |
<p dir="auto">Hi</p>
<p dir="auto">I create the new "typescript" project.<br>
I generate the description file for the app.ts by <code class="notranslate">tsp --target es5 -d app.ts</code></p>
<p dir="auto">I immediately receive the duplicate identifier error.<br>
I am not sure how to deal with this issue as I want to have both implementation and description files in my project.</p>
<p dir="auto">Here are the files <code class="notranslate">app.ts</code></p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="class Greeter {
element: HTMLElement;
span: HTMLElement;
timerToken: number;
constructor(element: HTMLElement) {
this.element = element;
this.element.innerHTML += "The time is: ";
this.span = document.createElement('span');
this.element.appendChild(this.span);
this.span.innerText = new Date().toUTCString();
}
start() {
this.timerToken = setInterval(() => this.span.innerHTML = new Date().toUTCString(), 500);
}
stop() {
clearTimeout(this.timerToken);
}
}
window.onload = () => {
var el = document.getElementById('content');
var greeter = new Greeter(el);
greeter.start();
};"><pre class="notranslate"><span class="pl-k">class</span> <span class="pl-v">Greeter</span> <span class="pl-kos">{</span>
<span class="pl-c1">element</span>: <span class="pl-c1">HTMLElement</span><span class="pl-kos">;</span>
<span class="pl-c1">span</span>: <span class="pl-c1">HTMLElement</span><span class="pl-kos">;</span>
<span class="pl-c1">timerToken</span>: <span class="pl-s1">number</span><span class="pl-kos">;</span>
<span class="pl-en">constructor</span><span class="pl-kos">(</span><span class="pl-s1">element</span>: <span class="pl-v">HTMLElement</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">element</span> <span class="pl-c1">=</span> <span class="pl-s1">element</span><span class="pl-kos">;</span>
<span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">element</span><span class="pl-kos">.</span><span class="pl-c1">innerHTML</span> <span class="pl-c1">+=</span> <span class="pl-s">"The time is: "</span><span class="pl-kos">;</span>
<span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">span</span> <span class="pl-c1">=</span> <span class="pl-smi">document</span><span class="pl-kos">.</span><span class="pl-en">createElement</span><span class="pl-kos">(</span><span class="pl-s">'span'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">element</span><span class="pl-kos">.</span><span class="pl-en">appendChild</span><span class="pl-kos">(</span><span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">span</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">span</span><span class="pl-kos">.</span><span class="pl-c1">innerText</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-v">Date</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">toUTCString</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-en">start</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">timerToken</span> <span class="pl-c1">=</span> <span class="pl-en">setInterval</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">span</span><span class="pl-kos">.</span><span class="pl-c1">innerHTML</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-v">Date</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">toUTCString</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">,</span> <span class="pl-c1">500</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-en">stop</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-en">clearTimeout</span><span class="pl-kos">(</span><span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">timerToken</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-smi">window</span><span class="pl-kos">.</span><span class="pl-en">onload</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-k">var</span> <span class="pl-s1">el</span> <span class="pl-c1">=</span> <span class="pl-smi">document</span><span class="pl-kos">.</span><span class="pl-en">getElementById</span><span class="pl-kos">(</span><span class="pl-s">'content'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-s1">greeter</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-v">Greeter</span><span class="pl-kos">(</span><span class="pl-s1">el</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">greeter</span><span class="pl-kos">.</span><span class="pl-en">start</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">and <code class="notranslate">app.d.ts</code></p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="declare class Greeter {
element: HTMLElement;
span: HTMLElement;
timerToken: number;
constructor(element: HTMLElement);
start(): void;
stop(): void;
}"><pre class="notranslate"><span class="pl-s1">declare</span> <span class="pl-k">class</span> <span class="pl-v">Greeter</span> <span class="pl-kos">{</span>
<span class="pl-c1">element</span>: <span class="pl-c1">HTMLElement</span><span class="pl-kos">;</span>
<span class="pl-c1">span</span>: <span class="pl-c1">HTMLElement</span><span class="pl-kos">;</span>
<span class="pl-c1">timerToken</span>: <span class="pl-s1">number</span><span class="pl-kos">;</span>
<span class="pl-c1">constructor</span><span class="pl-kos">(</span><span class="pl-s1">element</span>: <span class="pl-v">HTMLElement</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-c1">start</span><span class="pl-kos">(</span><span class="pl-kos">)</span>: <span class="pl-k">void</span><span class="pl-kos">;</span>
<span class="pl-c1">stop</span><span class="pl-kos">(</span><span class="pl-kos">)</span>: <span class="pl-k">void</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span></pre></div> | <p dir="auto">I have object with function like this</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="db.query({ /* queryParameter */ },function(err,data) { });"><pre class="notranslate"><code class="notranslate">db.query({ /* queryParameter */ },function(err,data) { });
</code></pre></div>
<p dir="auto">So I write jsdoc for pass this object in my function. And it got error</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/1042507/12941269/59f92d56-d003-11e5-8728-9e6b8635b4c0.png"><img src="https://cloud.githubusercontent.com/assets/1042507/12941269/59f92d56-d003-11e5-8728-9e6b8635b4c0.png" alt="screen shot 2559-02-10 at 2 30 14 pm" style="max-width: 100%;"></a></p>
<p dir="auto">Also jsdoc is not support both <code class="notranslate">@typedef</code> and <code class="notranslate">@callback</code> so I got stuck here</p> | 0 |
<p dir="auto">Describe what you were doing when the bug occurred:<br>
1.<br>
2.<br>
3.</p>
<hr>
<h2 dir="auto">Please do not remove the text below this line</h2>
<p dir="auto">DevTools version: 4.2.1-3816ae7c3</p>
<p dir="auto">Call stack: at chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:157108<br>
at Map.forEach ()<br>
at commitIndex (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:157054)<br>
at e.getRankedChartData (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:157577)<br>
at vl (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:314907)<br>
at gi (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:32:59907)<br>
at jl (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:32:107381)<br>
at Lc (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:32:92715)<br>
at Pc (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:32:92640)<br>
at wc (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:32:89544)</p>
<p dir="auto">Component stack: in vl<br>
in div<br>
in div<br>
in div<br>
in wo<br>
in Unknown<br>
in n<br>
in Unknown<br>
in div<br>
in div<br>
in Li<br>
in $e<br>
in dn<br>
in Ca<br>
in Pc</p> | <p dir="auto">PLEASE INCLUDE REPRO INSTRUCTIONS AND EXAMPLE CODE</p>
<p dir="auto">I got this error when I click 'Ranked'.</p>
<hr>
<h2 dir="auto">Please do not remove the text below this line</h2>
<p dir="auto">DevTools version: 4.0.4-3c6a219</p>
<p dir="auto">Call stack: at chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:11:11441<br>
at Map.forEach ()<br>
at commitIndex (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:11:11387)<br>
at e.getRankedChartData (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:11:11920)<br>
at _i (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:56:277123)<br>
at Ha (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:43:55890)<br>
at Xl (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:43:98280)<br>
at Hl (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:43:84255)<br>
at Fl (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:43:81285)<br>
at chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:43:25363</p>
<p dir="auto">Component stack: in _i<br>
in div<br>
in div<br>
in div<br>
in Or<br>
in Unknown<br>
in n<br>
in Unknown<br>
in div<br>
in div<br>
in Ha<br>
in le<br>
in ve<br>
in ko<br>
in Ul</p> | 1 |
<p dir="auto">Updated from v92 to v110 and have flicker on the edges. I use PlaneBufferGeometry with null z values to represent unknown elevations(holes). The sparse grid shows a flicker where the nulls' edges are. Was not seen with flatShading: true or v92:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/18248938/68339808-812af700-00a2-11ea-8f01-ec761d009580.png"><img src="https://user-images.githubusercontent.com/18248938/68339808-812af700-00a2-11ea-8f01-ec761d009580.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">I know you are going to say NaN are not supported in geometries, but any chance you could fix this or point me in proper direction?</p>
<h5 dir="auto">Three.js version</h5>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Dev</li>
<li>[x ] r110</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> ...</li>
</ul>
<h5 dir="auto">Browser</h5>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> All of them</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Chrome</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Firefox</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Internet Explorer</li>
</ul>
<h5 dir="auto">OS</h5>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> All of them</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Windows</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> macOS</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Linux</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Android</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> iOS</li>
</ul>
<h5 dir="auto">Hardware Requirements (graphics card, VR Device, ...)</h5> | <p dir="auto">Samsung S3 Android 4.3 Chrome Dev.</p>
<ol dir="auto">
<li>the video vr example <a href="http://threejs.org/examples/#webvr_video" rel="nofollow">http://threejs.org/examples/#webvr_video</a></li>
<li>Click Enter VR</li>
<li>Presenting triggers an error. Should it fallback to sending the canvas fullscreen here for cardboard device view ? In WebVR 1.0 it tries to use the new API for presenting to displays.</li>
</ol>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="VREffect.js:221 Uncaught (in promise) DOMException: VRDisplay cannot present"><pre class="notranslate"><code class="notranslate">VREffect.js:221 Uncaught (in promise) DOMException: VRDisplay cannot present
</code></pre></div> | 0 |
<p dir="auto"><code class="notranslate">t = pd.DataFrame(np.random.uniform(0,1,[100,100]),index=np.random.uniform(0,1,100)).rolling(10).apply(lambda x: </code>x.argmax()).tail()``<br>
The above code shows only integer values. However, the index defined is solely in floats (no integers).</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" 0 1 2 3 4 5 6 7 8 9 ..."><pre class="notranslate"><code class="notranslate"> 0 1 2 3 4 5 6 7 8 9 ...
</code></pre></div>
<p dir="auto">0.886683 1.0 4.0 1.0 7.0 3.0 6.0 2.0 7.0 5.0 4.0 ...<br>
0.932133 9.0 3.0 0.0 6.0 2.0 9.0 1.0 6.0 4.0 3.0 ...<br>
0.555330 8.0 2.0 4.0 5.0 9.0 8.0 0.0 5.0 3.0 2.0 ...<br>
0.369954 7.0 1.0 3.0 4.0 8.0 7.0 5.0 4.0 2.0 1.0 ...<br>
0.793682 6.0 0.0 2.0 3.0 7.0 9.0 4.0 3.0 1.0 0.0 ...</p>
<p dir="auto">The reason here is that what gets passed into the rolling data frame is a ndarray and not a data frame so access to the index isn't possible. This limits the rolling function's usefulness especially when dealing with time series data where the index can matter a lot.</p>
<h4 dir="auto">Output of <code class="notranslate">pd.show_versions()</code></h4>
<details>
<h2 dir="auto">INSTALLED VERSIONS</h2>
<p dir="auto">commit: None<br>
python: 3.6.3.final.0<br>
python-bits: 64<br>
OS: Windows<br>
OS-release: 10<br>
machine: AMD64<br>
processor: Intel64 Family 6 Model 158 Stepping 9, GenuineIntel<br>
byteorder: little<br>
LC_ALL: None<br>
LANG: en<br>
LOCALE: None.None</p>
<p dir="auto">pandas: 0.20.3<br>
pytest: 3.2.1<br>
pip: 9.0.1<br>
setuptools: 36.5.0.post20170921<br>
Cython: 0.26.1<br>
numpy: 1.13.3<br>
scipy: 0.19.1<br>
xarray: None<br>
IPython: 6.1.0<br>
sphinx: 1.6.3<br>
patsy: 0.4.1<br>
dateutil: 2.6.1<br>
pytz: 2017.2<br>
blosc: None<br>
bottleneck: 1.2.1<br>
tables: 3.4.2<br>
numexpr: 2.6.2<br>
feather: None<br>
matplotlib: 2.1.0<br>
openpyxl: 2.4.8<br>
xlrd: 1.1.0<br>
xlwt: 1.3.0<br>
xlsxwriter: 1.0.2<br>
lxml: 4.1.0<br>
bs4: 4.6.0<br>
html5lib: 0.9999999<br>
sqlalchemy: 1.1.13<br>
pymysql: None<br>
psycopg2: None<br>
jinja2: 2.9.6<br>
s3fs: None<br>
pandas_gbq: None<br>
pandas_datareader: None</p>
</details> | <p dir="auto">Returning a Series: <a href="http://stackoverflow.com/questions/19121854/using-rolling-apply-on-a-dataframe-object" rel="nofollow">http://stackoverflow.com/questions/19121854/using-rolling-apply-on-a-dataframe-object</a></p>
<p dir="auto">Returning a Scalar: <a href="http://stackoverflow.com/questions/21040766/python-pandas-rolling-apply-two-column-input-into-function/21045831#21045831" rel="nofollow">http://stackoverflow.com/questions/21040766/python-pandas-rolling-apply-two-column-input-into-function/21045831#21045831</a></p> | 1 |
<p dir="auto">[Router 3.0.0-beta.2] "data" parameter exists in Route and we can pass static data through route definition, but unable to pass dynamic data through RouteLink or navigate method of Router.</p> | <p dir="auto">Is it possible to navigate to an URL and give a json object to it?<br>
As:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// exactly like @RouteConfig
this.router.navigateByUrl('/path', { data: { entity: 'entity' } })"><pre class="notranslate"><span class="pl-c">// exactly like <span class="pl-k">@RouteConfig</span></span>
<span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">router</span><span class="pl-kos">.</span><span class="pl-en">navigateByUrl</span><span class="pl-kos">(</span><span class="pl-s">'/path'</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> <span class="pl-c1">data</span>: <span class="pl-kos">{</span> <span class="pl-c1">entity</span>: <span class="pl-s">'entity'</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span><span class="pl-kos">)</span></pre></div>
<p dir="auto">Best regards,<br>
Tiago Braga</p> | 1 |
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=marschall" rel="nofollow">Philippe Marschall</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-9316?redirect=false" rel="nofollow">SPR-9316</a></strong> and commented</p>
<p dir="auto">AutowiredAnnotationBeanPostProcessor.determineRequiredStatus uses ReflectionUtils.findMethod to look up a method named "required". If there is no such method then ReflectionUtils.findMethod returns null. However AutowiredAnnotationBeanPostProcessor.determineRequiredStatus never checks for null instead it directly passes the method to ReflectionUtils.invokeMethod which throws a NullPointerException which is then caught in a catch (Exception ex) block in AutowiredAnnotationBeanPostProcessor.determineRequiredStatus.</p>
<p dir="auto">Annoations that don't have a method named "required" include <code class="notranslate">@Inject</code> <code class="notranslate">@Value</code> <code class="notranslate">@Resource</code>.</p>
<p dir="auto">This is not so nice for several reasons:</p>
<ul dir="auto">
<li>when you debug one of your own NullPointerExceptions and set an exception breakpoint on NullPointerException you end up in Spring code</li>
<li>it uses NullPointerExceptions and catching them as part of normal control flow</li>
<li>filling in the stack trace of an exception is slow</li>
</ul>
<hr>
<p dir="auto"><strong>Affects:</strong> 3.1.1</p>
<p dir="auto"><strong>Issue Links:</strong></p>
<ul dir="auto">
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398118871" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/14001" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/14001/hovercard" href="https://github.com/spring-projects/spring-framework/issues/14001">#14001</a> AutowiredAnnotationBeanPostProcessor.determineRequiredStatus(Annotation) throws NullPointerException if method wasnt found. (<em><strong>"is duplicated by"</strong></em>)</li>
</ul>
<p dir="auto"><strong>Referenced from:</strong> commits <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/spring-projects/spring-framework/commit/26ee0c4842ca83dec213b5422d0af18ba2e3ce6c/hovercard" href="https://github.com/spring-projects/spring-framework/commit/26ee0c4842ca83dec213b5422d0af18ba2e3ce6c"><tt>26ee0c4</tt></a>, <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/spring-projects/spring-framework/commit/2624b909060e0967e16771de7a35261decd5a4a9/hovercard" href="https://github.com/spring-projects/spring-framework/commit/2624b909060e0967e16771de7a35261decd5a4a9"><tt>2624b90</tt></a>, <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/spring-projects/spring-framework/commit/46bdb2de077063663f0daae85431ebe5c430edc8/hovercard" href="https://github.com/spring-projects/spring-framework/commit/46bdb2de077063663f0daae85431ebe5c430edc8"><tt>46bdb2d</tt></a></p> | <p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=arjen.poutsma" rel="nofollow">Arjen Poutsma</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-7803?redirect=false" rel="nofollow">SPR-7803</a></strong> and commented</p>
<p dir="auto">Something like:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="RestTemplate template = new RestTemplate("http://twitter.com");
template.GetForObject<string>("/statuses/user_timeline.xml?screen_name={id}", "poutsma");"><pre class="notranslate"><code class="notranslate">RestTemplate template = new RestTemplate("http://twitter.com");
template.GetForObject<string>("/statuses/user_timeline.xml?screen_name={id}", "poutsma");
</code></pre></div>
<hr>
<p dir="auto"><strong>Issue Links:</strong></p>
<ul dir="auto">
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398179726" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/17627" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/17627/hovercard" href="https://github.com/spring-projects/spring-framework/issues/17627">#17627</a> Ability to prefix each RestTemplate request using some kind of UriPrefixingClientHttpRequestFactory (<em><strong>"duplicates"</strong></em>)</li>
</ul> | 0 |
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/mui-org/material-ui/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h2 dir="auto">Expected Behavior</h2>
<p dir="auto">If the "Collapse" transition has finished, the content / children should be in the final position / layout.</p>
<p dir="auto">To Reproduce you need the following composition:<br>
A Collapse with an Input inside, which has a IconButton as Adornment.<br>
Without the IconButton, everything works fine.</p>
<h2 dir="auto">Current Behavior</h2>
<p dir="auto">After the transition, the input jumps a little bit downwards, when you are enter the first character.</p>
<h2 dir="auto">Steps to Reproduce (for bugs)</h2>
<p dir="auto"><a href="https://codesandbox.io/s/l3rvkxkvr7" rel="nofollow">https://codesandbox.io/s/l3rvkxkvr7</a></p>
<ol dir="auto">
<li>click on button collapse</li>
<li>enter a character</li>
<li>input is moving / jumping around</li>
</ol>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/2846460/36035031-13140b3e-0db6-11e8-94b6-606d75cc16e5.gif"><img src="https://user-images.githubusercontent.com/2846460/36035031-13140b3e-0db6-11e8-94b6-606d75cc16e5.gif" alt="collapse - input with iconbutton as adornment" data-animated-image="" style="max-width: 100%;"></a></p>
<h2 dir="auto">Context</h2>
<h2 dir="auto">Your Environment</h2>
<p dir="auto">[email protected]<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/2846460/36034758-620d7ffa-0db5-11e8-8b76-64209c018ed6.png"><img src="https://user-images.githubusercontent.com/2846460/36034758-620d7ffa-0db5-11e8-8b76-64209c018ed6.png" alt="image" style="max-width: 100%;"></a></p> | <h3 dir="auto">Description</h3>
<p dir="auto">I have a hard time indicating that the website is making a server request and the user might wait and at the same time prevent the user from clicking login again. Some of our users repeatedly click login if the server responds slowly.</p>
<p dir="auto">It cloud be an excellent feature if the button could expect at "loading" prop. When the button is passed loading={true} it should disable interaction and indicate it is loading.</p>
<p dir="auto">I am currently using material-ui@next in a project which is planned to be put into production soon :-) Great progress :-)!</p>
<h3 dir="auto">Images & references</h3>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/16625262/27483612-72828866-5826-11e7-841c-36602d2460de.png"><img src="https://user-images.githubusercontent.com/16625262/27483612-72828866-5826-11e7-841c-36602d2460de.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/16625262/27483599-654b8828-5826-11e7-9fbf-0c314f082bc8.png"><img src="https://user-images.githubusercontent.com/16625262/27483599-654b8828-5826-11e7-9fbf-0c314f082bc8.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">Screenshots is taken from <a href="https://vuetifyjs.com/components/buttons" rel="nofollow">https://vuetifyjs.com/components/buttons</a> (Loaders section).</p> | 0 |
<p dir="auto">I originally opened <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="478069455" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/2333" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/2333/hovercard" href="https://github.com/microsoft/terminal/issues/2333">#2333</a> which was supposed to be resolved by <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="474630455" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/2150" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/terminal/pull/2150/hovercard" href="https://github.com/microsoft/terminal/pull/2150">#2150</a> but I am still seeing the issue in 0.5</p>
<h1 dir="auto">Environment</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: Microsoft Windows NT 10.0.18362.0
Windows Terminal version (if applicable): 0.5.2762.0
"><pre lang="none" class="notranslate"><code class="notranslate">Windows build number: Microsoft Windows NT 10.0.18362.0
Windows Terminal version (if applicable): 0.5.2762.0
</code></pre></div>
<h1 dir="auto">Steps to reproduce</h1>
<p dir="auto">Set showTabsInTitlebar to true.</p>
<h1 dir="auto">Expected behavior</h1>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/6216e1f89a262053c58b1284f1f912772c2bc738405d98c675c7474cc170884e/68747470733a2f2f646576626c6f67732e6d6963726f736f66742e636f6d2f636f6d6d616e646c696e652f77702d636f6e74656e742f75706c6f6164732f73697465732f33332f323031392f30372f7469746c652d6261722d7630332e706e67"><img src="https://camo.githubusercontent.com/6216e1f89a262053c58b1284f1f912772c2bc738405d98c675c7474cc170884e/68747470733a2f2f646576626c6f67732e6d6963726f736f66742e636f6d2f636f6d6d616e646c696e652f77702d636f6e74656e742f75706c6f6164732f73697465732f33332f323031392f30372f7469746c652d6261722d7630332e706e67" alt="working" data-canonical-src="https://devblogs.microsoft.com/commandline/wp-content/uploads/sites/33/2019/07/title-bar-v03.png" style="max-width: 100%;"></a></p>
<h1 dir="auto">Actual behavior</h1>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/8a1da44a795e0ebc41c96af6e402d0bf7c8fc2331cd63cb3e73a826e5849fec1/68747470733a2f2f692e696d6775722e636f6d2f7a5536575843522e706e67"><img src="https://camo.githubusercontent.com/8a1da44a795e0ebc41c96af6e402d0bf7c8fc2331cd63cb3e73a826e5849fec1/68747470733a2f2f692e696d6775722e636f6d2f7a5536575843522e706e67" alt="true" data-canonical-src="https://i.imgur.com/zU6WXCR.png" style="max-width: 100%;"></a></p>
<p dir="auto">When showTabsInTitlebar is false</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/f2ca7d41a892c4f0e69a188f61f76592a7de137535027c0d7de7efb2079085c2/68747470733a2f2f692e696d6775722e636f6d2f4372636b3830422e706e67"><img src="https://camo.githubusercontent.com/f2ca7d41a892c4f0e69a188f61f76592a7de137535027c0d7de7efb2079085c2/68747470733a2f2f692e696d6775722e636f6d2f4372636b3830422e706e67" alt="false" data-canonical-src="https://i.imgur.com/Crck80B.png" style="max-width: 100%;"></a></p> | <p dir="auto">Steps to repro:</p>
<ol dir="auto">
<li>Open cmd.exe or Powershel.exe</li>
<li>Press Win+. in order to open the Emoji Picker overlay</li>
<li>Click on any emoji, multiple times, until the console crashes</li>
</ol> | 0 |
<p dir="auto">I'd like to add a method to <code class="notranslate">os/exec.Cmd</code> to ease setting environment variables on commands before they're run.</p>
<p dir="auto">Manipulating <code class="notranslate">Env []string</code> lists is tedious and error-prone, especially considering potential duplicates. (since programs would others choose either the first or last occurrence, unpredictably)</p>
<p dir="auto">The proposed <code class="notranslate">Cmd.SetEnv(key, value string)</code> method would be documented as removing duplicates.</p>
<p dir="auto">On Windows, environment variables are case-insensitive, so the method on Windows should de-dup case insensitively.</p>
<p dir="auto">This method would replace a handful of copies of <code class="notranslate">func mergeEnvLists</code> that exist in various forms around the standard library, tests, and x/* repos.</p>
<p dir="auto">/cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ianlancetaylor/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ianlancetaylor">@ianlancetaylor</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/adg/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/adg">@adg</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/rsc/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/rsc">@rsc</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/griesemer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/griesemer">@griesemer</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/robpike/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/robpike">@robpike</a></p> | <pre class="notranslate">I am working in a severely bandwidth-limited environment and am trying to strip down the
http responses generated by net/http. I would like to prevent the Content-Type and
Connection headers from being inserted into the http response. (The Connection header
should be safe to remove at least for HTTP/1.0 requests.) It does not currently seem
possible.
I would ideally like this to remove the Content-Type and Connection headers (it
currently works for removing the Date header):
header := resp.Header()
header["Content-Type"] = nil
header["Connection"] = nil
As a bonus bug:
header["Content-Type"] = []string{""}
causes duplicate Content-Type headers in the response:
HTTP/1.0 200 OK
Content-Type:
Content-Type: text/plain; charset=utf-8
Content-Length: 0
Connection: close
I would be happy to write a patch for this, if so desired.
Which version are you using? (run 'go version')
1.1.1</pre> | 0 |
<p dir="auto">col-md-12 don't have the css attribute float:left like others columns.<br>
The behavior is different (margin, padding, position ...)</p> | <p dir="auto">Example:<br>
`</p><div dir="auto"><p dir="auto"></p>
<div dir="auto">.col-xs-6 .col-md-4</div>
<div dir="auto">.col-xs-6 .col-md-4</div>
<div dir="auto">.col-xs-6 .col-md-4</div>
</div>`
<p dir="auto">see: <a href="http://stackoverflow.com/questions/18428450/bootstrap-3-layout-with-panel-display-not-correct-on-small-device/18433782" rel="nofollow">http://stackoverflow.com/questions/18428450/bootstrap-3-layout-with-panel-display-not-correct-on-small-device/18433782</a></p> | 1 |
<p dir="auto"><em>Original ticket <a href="http://projects.scipy.org/scipy/ticket/534" rel="nofollow">http://projects.scipy.org/scipy/ticket/534</a> on 2007-11-06 by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/nilswagner01/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/nilswagner01">@nilswagner01</a>, assigned to unknown.</em></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="python /data/home/nwagner/local/lib64/python2.3/site-packages/scipy/io/tests/test_mio.py
Traceback (most recent call last):
File "/data/home/nwagner/local/lib64/python2.3/site-packages/scipy/io/tests/test_mio.py", line 25, in ?
class TestMIOArray(NumpyTestCase):
File "/data/home/nwagner/local/lib64/python2.3/site-packages/scipy/io/tests/test_mio.py", line 235, in TestMIOArray
format = case in case_table4 and '4' or '5'
ValueError: The truth value of an array with more than one element is ambiguous. Use a.any() or a.all()"><pre class="notranslate"><code class="notranslate">python /data/home/nwagner/local/lib64/python2.3/site-packages/scipy/io/tests/test_mio.py
Traceback (most recent call last):
File "/data/home/nwagner/local/lib64/python2.3/site-packages/scipy/io/tests/test_mio.py", line 25, in ?
class TestMIOArray(NumpyTestCase):
File "/data/home/nwagner/local/lib64/python2.3/site-packages/scipy/io/tests/test_mio.py", line 235, in TestMIOArray
format = case in case_table4 and '4' or '5'
ValueError: The truth value of an array with more than one element is ambiguous. Use a.any() or a.all()
</code></pre></div> | <p dir="auto">In the documentation for <code class="notranslate">rv_continuous</code>, there is a clear note that only positive arguments are valid by default. However, such note is missing for <code class="notranslate">rv_discrete</code>. This is quite unintuitive and I would have like to be warned of that behavior instead of getting a <code class="notranslate">ValueError: Domain error in arguments.</code> exception.</p>
<p dir="auto">While I understand it's not always a good idea to duplicate documentation, I think it'd be worth it to add a small note in the <code class="notranslate">rv_discrete</code> to remind readers of this fact, instead of just saying: “<em>This class is similar to rv_continuous</em>”.</p>
<p dir="auto">I'm happy to send a pull request to support this issue.</p> | 0 |
<p dir="auto">I18n is essetial i think so:<br>
ICU/Intl is require but there is a problem in JS word to using i18n:</p>
<ul dir="auto">
<li>There is no valid implementation ISO for Intl. It's wired implementation for JS.</li>
<li>It's not the entire ICU library it's just simple the implementation that not cover all use cases.</li>
<li>There is no parser for Convert none Georgian calendar to Standard Unix time or Standard Date Object. and etc.</li>
<li>Access standard CLDR data (json output: <a href="https://github.com/unicode-cldr/cldr-json">https://github.com/unicode-cldr/cldr-json</a>). List of valid locales and currency/calendar and etc ...specs... why it's not essential part of JS core ? I donno !!!</li>
</ul>
<p dir="auto"><a href="https://stackoverflow.com/questions/29961992/javascript-intl-datetimeformatter-as-iso-8601custom-output-pattern" rel="nofollow">https://stackoverflow.com/questions/29961992/javascript-intl-datetimeformatter-as-iso-8601custom-output-pattern</a><br>
<a href="https://medium.com/@semnanweb/javascript-intl-fails-da3cda114370" rel="nofollow">https://medium.com/@semnanweb/javascript-intl-fails-da3cda114370</a></p>
<p dir="auto">I suggest to see PHP implementation instead of Using same problem for JS<br>
<a href="https://www.php.net/manual/en/book.intl.php" rel="nofollow">https://www.php.net/manual/en/book.intl.php</a><br>
C library:<br>
<a href="https://unicode-org.github.io/icu-docs/apidoc/released/icu4c/" rel="nofollow">https://unicode-org.github.io/icu-docs/apidoc/released/icu4c/</a><br>
CLDR data:<br>
<a href="http://cldr.unicode.org/" rel="nofollow">http://cldr.unicode.org/</a></p> | <p dir="auto">As seen in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="422116599" data-permission-text="Title is private" data-url="https://github.com/denoland/deno/issues/1952" data-hovercard-type="issue" data-hovercard-url="/denoland/deno/issues/1952/hovercard" href="https://github.com/denoland/deno/issues/1952">#1952</a> / <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="405562913" data-permission-text="Title is private" data-url="https://github.com/denoland/deno/issues/1636" data-hovercard-type="issue" data-hovercard-url="/denoland/deno/issues/1636/hovercard" href="https://github.com/denoland/deno/issues/1636">#1636</a> ICU needs to be added in Deno build.</p>
<p dir="auto">Switching this flag to true maybe: <a href="https://github.com/denoland/deno/blob/master/.gn#L50">https://github.com/denoland/deno/blob/master/.gn#L50</a> ?</p>
<p dir="auto">ref: <a href="https://v8.dev/docs/i18n" rel="nofollow">https://v8.dev/docs/i18n</a></p> | 1 |
<p dir="auto"><strong>Is this a request for help?</strong> (If yes, you should use our troubleshooting guide and community support channels, see <a href="http://kubernetes.io/docs/troubleshooting/" rel="nofollow">http://kubernetes.io/docs/troubleshooting/</a>.): No</p>
<p dir="auto"><strong>What keywords did you search in Kubernetes issues before filing this one?</strong> (If you have found any duplicates, you should instead reply there.): configure-helper.sh</p>
<hr>
<p dir="auto"><strong>Is this a BUG REPORT or FEATURE REQUEST?</strong> (choose one): BUG REPORT</p>
<p dir="auto"><strong>Kubernetes version</strong> (use <code class="notranslate">kubectl version</code>): 1.5 beta</p>
<p dir="auto"><strong>Environment</strong>:</p>
<ul dir="auto">
<li><strong>Cloud provider or hardware configuration</strong>: GCE (using GCI for the master)</li>
<li><strong>OS</strong> (e.g. from /etc/os-release): GCI</li>
<li><strong>Kernel</strong> (e.g. <code class="notranslate">uname -a</code>):</li>
<li><strong>Install tools</strong>: kube-up.sh</li>
<li><strong>Others</strong>:</li>
</ul>
<p dir="auto"><strong>What happened</strong>: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="190886594" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/37257" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/37257/hovercard" href="https://github.com/kubernetes/kubernetes/issues/37257">#37257</a> exposed a bug where configure-helper.sh was broken. The script got past mounting the master PD, so fixing it locally and trying to re-run it has no effect because it gets to the step where it tries to mount the master PD and then errors out. We should fix the script to be tolerant of having the master PD be mounted so that if the script gets interrupted for some reason and then re-run by systemd it can run to completion.</p>
<p dir="auto"><strong>What you expected to happen</strong>: configure-helper.sh should be able to run successfully even if the master PD has already been mounted</p>
<p dir="auto"><strong>How to reproduce it</strong> (as minimally and precisely as possible):</p>
<ol dir="auto">
<li>sync to master release-1.4 branch; run <code class="notranslate">make clean; make quick-release</code>; run <code class="notranslate">cluster/kube-up.sh</code></li>
<li>sync to the release-1.5 branch; run <code class="notranslate">cluster/gce/upgrade.sh -M v1.5.0-beta.1</code></li>
<li>Log into the kubernetes master, fix the error in the shell script (vi <code class="notranslate">/home/kubernetes/bin/configure-helper.sh</code> and fix line 809 as was done in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="191213946" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/37358" data-hovercard-type="pull_request" data-hovercard-url="/kubernetes/kubernetes/pull/37358/hovercard" href="https://github.com/kubernetes/kubernetes/pull/37358">#37358</a>) then run <code class="notranslate">sudo /home/kubernetes/bin/configure-helper.sh</code> to see the script bail out</li>
</ol> | <p dir="auto"><strong>Is this a request for help?</strong> (If yes, you should use our troubleshooting guide and community support channels, see <a href="http://kubernetes.io/docs/troubleshooting/" rel="nofollow">http://kubernetes.io/docs/troubleshooting/</a>.): no</p>
<p dir="auto"><strong>What keywords did you search in Kubernetes issues before filing this one?</strong> (If you have found any duplicates, you should instead reply there.): kubeadm</p>
<hr>
<p dir="auto"><strong>Is this a BUG REPORT or FEATURE REQUEST?</strong> (choose one): BUG REPORT</p>
<p dir="auto"><strong>Kubernetes version</strong> (use <code class="notranslate">kubectl version</code>):</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ kubectl version
Client Version: version.Info{Major:"1", Minor:"4", GitVersion:"v1.4.0", GitCommit:"a16c0a7f71a6f93c7e0f222d961f4675cd97a46b", GitTreeState:"clean", BuildDate:"2016-09-26T18:16:57Z", GoVersion:"go1.6.3", Compiler:"gc", Platform:"linux/amd64"}
Server Version: version.Info{Major:"1", Minor:"4", GitVersion:"v1.4.0", GitCommit:"a16c0a7f71a6f93c7e0f222d961f4675cd97a46b", GitTreeState:"clean", BuildDate:"2016-09-26T18:10:32Z", GoVersion:"go1.6.3", Compiler:"gc", Platform:"linux/amd64"}"><pre class="notranslate"><code class="notranslate">$ kubectl version
Client Version: version.Info{Major:"1", Minor:"4", GitVersion:"v1.4.0", GitCommit:"a16c0a7f71a6f93c7e0f222d961f4675cd97a46b", GitTreeState:"clean", BuildDate:"2016-09-26T18:16:57Z", GoVersion:"go1.6.3", Compiler:"gc", Platform:"linux/amd64"}
Server Version: version.Info{Major:"1", Minor:"4", GitVersion:"v1.4.0", GitCommit:"a16c0a7f71a6f93c7e0f222d961f4675cd97a46b", GitTreeState:"clean", BuildDate:"2016-09-26T18:10:32Z", GoVersion:"go1.6.3", Compiler:"gc", Platform:"linux/amd64"}
</code></pre></div>
<p dir="auto"><strong>Environment</strong>: kubeadm install on fresh Ubuntu 16.04 machine</p>
<ul dir="auto">
<li><strong>Cloud provider or hardware configuration</strong>: VirtualBox VM, host = x86_64 = guest</li>
<li><strong>OS</strong> (e.g. from /etc/os-release): 16.04 LTS (Xenial Xerus)</li>
<li><strong>Kernel</strong> (e.g. <code class="notranslate">uname -a</code>): Linux mvespa4-2 4.4.0-43-generic <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="35518434" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/63" data-hovercard-type="pull_request" data-hovercard-url="/kubernetes/kubernetes/pull/63/hovercard" href="https://github.com/kubernetes/kubernetes/pull/63">#63</a>-Ubuntu SMP Wed Oct 12 13:48:03 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux</li>
<li><strong>Install tools</strong>: kubeadm</li>
<li><strong>Others</strong>:</li>
</ul>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ sudo docker info
Containers: 14
Running: 12
Paused: 0
Stopped: 2
Images: 8
Server Version: 1.12.2
Storage Driver: aufs
Root Dir: /var/lib/docker/aufs
Backing Filesystem: extfs
Dirs: 49
Dirperm1 Supported: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
Volume: local
Network: null host bridge overlay
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Security Options: apparmor seccomp
Kernel Version: 4.4.0-43-generic
Operating System: Ubuntu 16.04 LTS
OSType: linux
Architecture: x86_64
CPUs: 4
Total Memory: 7.796 GiB
Name: mvespa4-2
ID: 33RL:MPT4:RYCF:HH2K:POGH:MPGE:NID7:VVV6:IMYC:2NYU:BECI:YQQZ
Docker Root Dir: /var/lib/docker
Debug Mode (client): false
Debug Mode (server): false
Registry: https://index.docker.io/v1/
WARNING: No swap limit support
Insecure Registries:
127.0.0.0/8"><pre class="notranslate"><code class="notranslate">$ sudo docker info
Containers: 14
Running: 12
Paused: 0
Stopped: 2
Images: 8
Server Version: 1.12.2
Storage Driver: aufs
Root Dir: /var/lib/docker/aufs
Backing Filesystem: extfs
Dirs: 49
Dirperm1 Supported: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
Volume: local
Network: null host bridge overlay
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Security Options: apparmor seccomp
Kernel Version: 4.4.0-43-generic
Operating System: Ubuntu 16.04 LTS
OSType: linux
Architecture: x86_64
CPUs: 4
Total Memory: 7.796 GiB
Name: mvespa4-2
ID: 33RL:MPT4:RYCF:HH2K:POGH:MPGE:NID7:VVV6:IMYC:2NYU:BECI:YQQZ
Docker Root Dir: /var/lib/docker
Debug Mode (client): false
Debug Mode (server): false
Registry: https://index.docker.io/v1/
WARNING: No swap limit support
Insecure Registries:
127.0.0.0/8
</code></pre></div>
<p dir="auto"><strong>What happened</strong>:<br>
I ran the first two steps of <a href="http://kubernetes.io/docs/getting-started-guides/kubeadm/" rel="nofollow">http://kubernetes.io/docs/getting-started-guides/kubeadm/</a> . I found a duplicated command argument in the manifest for the apiserver:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="root@mvespa4-2:/etc/kubernetes/manifests# cat kube-apiserver.json
{
"kind": "Pod",
"apiVersion": "v1",
"metadata": {...}
},
"spec": {
"volumes": [...],
"containers": [
{
"name": "kube-apiserver",
"image": "gcr.io/google_containers/kube-apiserver-amd64:v1.4.0",
"command": [
"/usr/local/bin/kube-apiserver",
"--v=4",
"--insecure-bind-address=127.0.0.1",
"--etcd-servers=http://127.0.0.1:2379",
"--admission-control=NamespaceLifecycle,LimitRanger,ServiceAccount,PersistentVolumeLabel,DefaultStorageClass,ResourceQuota",
"--service-cluster-ip-range=100.64.0.0/12",
"--service-account-key-file=/etc/kubernetes/pki/apiserver-key.pem",
"--client-ca-file=/etc/kubernetes/pki/ca.pem",
"--tls-cert-file=/etc/kubernetes/pki/apiserver.pem",
"--tls-private-key-file=/etc/kubernetes/pki/apiserver-key.pem",
"--token-auth-file=/etc/kubernetes/pki/tokens.csv",
"--secure-port=443",
"--allow-privileged",
"--etcd-servers=http://127.0.0.1:2379"
],
..."><pre class="notranslate"><code class="notranslate">root@mvespa4-2:/etc/kubernetes/manifests# cat kube-apiserver.json
{
"kind": "Pod",
"apiVersion": "v1",
"metadata": {...}
},
"spec": {
"volumes": [...],
"containers": [
{
"name": "kube-apiserver",
"image": "gcr.io/google_containers/kube-apiserver-amd64:v1.4.0",
"command": [
"/usr/local/bin/kube-apiserver",
"--v=4",
"--insecure-bind-address=127.0.0.1",
"--etcd-servers=http://127.0.0.1:2379",
"--admission-control=NamespaceLifecycle,LimitRanger,ServiceAccount,PersistentVolumeLabel,DefaultStorageClass,ResourceQuota",
"--service-cluster-ip-range=100.64.0.0/12",
"--service-account-key-file=/etc/kubernetes/pki/apiserver-key.pem",
"--client-ca-file=/etc/kubernetes/pki/ca.pem",
"--tls-cert-file=/etc/kubernetes/pki/apiserver.pem",
"--tls-private-key-file=/etc/kubernetes/pki/apiserver-key.pem",
"--token-auth-file=/etc/kubernetes/pki/tokens.csv",
"--secure-port=443",
"--allow-privileged",
"--etcd-servers=http://127.0.0.1:2379"
],
...
</code></pre></div>
<p dir="auto"><strong>What you expected to happen</strong>:<br>
I expected no duplicated arguments.</p>
<p dir="auto"><strong>How to reproduce it</strong> (as minimally and precisely as possible):<br>
Follow the first two steps of the cited doc on a fresh Ubuntu 16.04 machine with Docker 1.12.2.</p>
<p dir="auto"><strong>Anything else do we need to know</strong>:</p> | 0 |
<p dir="auto">I've noticed that when opening/closing a modal box causes a little flicker on Chrome, so I realized that the cause of that is the next couple of lines in the CSS stylesheet for the .modal.fade .modal-dialog:</p>
<div class="highlight highlight-source-css notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" -webkit-transition: -webkit-transform 0.3s ease-out;
-moz-transition: -moz-transform 0.3s ease-out;
-o-transition: -o-transform 0.3s ease-out;
transition: transform 0.3s ease-out;"><pre class="notranslate"> <span class="pl-c1">-webkit-transition</span><span class="pl-kos">:</span> -webkit-transform <span class="pl-c1">0.3<span class="pl-smi">s</span></span> ease-out;
<span class="pl-c1">-moz-transition</span><span class="pl-kos">:</span> -moz-transform <span class="pl-c1">0.3<span class="pl-smi">s</span></span> ease-out;
<span class="pl-c1">-o-transition</span><span class="pl-kos">:</span> -o-transform <span class="pl-c1">0.3<span class="pl-smi">s</span></span> ease-out;
<span class="pl-c1">transition</span><span class="pl-kos">:</span> transform <span class="pl-c1">0.3<span class="pl-smi">s</span></span> ease-out;</pre></div> | <p dir="auto">This issue has been bouncing around a bit; basically, on my modal dialogs, I see a bit of "flicker" (the content rapidly appearing/disappearing) when hiding or unhiding the dialog.</p>
<p dir="auto">I was able to capture some of it in a screen capture:</p>
<p dir="auto"><a href="https://vimeo.com/73808307" rel="nofollow">https://vimeo.com/73808307</a></p>
<p dir="auto">It is most visible when closing the dialog.</p>
<p dir="auto">This is on Mac 10.7.5 and Chrome 29.0.1547.65.</p> | 1 |
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/apache/dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/apache/dubbo/blob/master/FAQ.md">FAQ</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h3 dir="auto">Environment</h3>
<ul dir="auto">
<li>Dubbo version: 2.7.5-SNAPSHOT</li>
<li>Operating System version: macos 10.15.2</li>
<li>Java version: openjdk 11.0.5</li>
</ul> | <ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/apache/dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/apache/dubbo/blob/master/FAQ.md">FAQ</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h3 dir="auto">Environment</h3>
<ul dir="auto">
<li>Dubbo version: 2.7.x</li>
<li>Operating System version: centos</li>
<li>Java version: 1.8</li>
</ul>
<h3 dir="auto">Steps to reproduce this issue</h3>
<p dir="auto">Dubbo在构建服务调用参数信息时,现有的TypeDefinition无法对<a href="https://github.com/vigna/fastutil">FastUtil</a>中的Map进行解析。<br>
例如,FastUtil中的Int2ObjectMap的<code class="notranslate">getActualTypeArguments</code>参数长度为1,<code class="notranslate">MapTypeBuilder</code>会对长度进行校验,导致抛出IllegalArgumentException异常。<br>
TypeBuilder是支持SPI扩展的,可以自定义实现支持FastUtil的Builder,但是由于TypeBuilder中没有定义优先级顺序,因此在<code class="notranslate">TypeDefinitionBuilder</code>无法提升自定义TypeBuilder的优先级,导致无法构建相应参数定义信息。</p>
<p dir="auto">异常信息:<br>
[ServiceDefinitionBuilder] Map type [it.unimi.dsi.fastutil.ints.Int2ObjectMap<it.unimi.dsi.fastutil.shorts.ShortList>] with unexpected amount of arguments [[Ljava.lang.reflect.Type;@38866769].[interface it.unimi.dsi.fastutil.shorts.ShortList]</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/13111067/84353556-f9860780-abf1-11ea-8730-668bcfaf7a11.png"><img src="https://user-images.githubusercontent.com/13111067/84353556-f9860780-abf1-11ea-8730-668bcfaf7a11.png" alt="image" style="max-width: 100%;"></a></p> | 0 |
<p dir="auto">all it does is close and update, never restarts for me.</p>
<p dir="auto">Tested with .193 => .196</p> | <p dir="auto">Using the Restart and Update button on the release notes view doesn't properly restart and update. Atom closes, but it never restarts. When launched again, it hasn't updated. Restart and update from the Atom Menu works fine.</p>
<p dir="auto">2010 iMac, OSX 10.10.2</p> | 1 |
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have searched the <a href="https://github.com/apache/incubator-dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have checked the <a href="https://github.com/apache/incubator-dubbo/blob/master/FAQ.md">FAQ</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="
links are 404 in README
"><pre class="notranslate"><code class="notranslate">
links are 404 in README
</code></pre></div> | <ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/apache/dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/apache/dubbo/blob/master/FAQ.md">FAQ</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h3 dir="auto">Environment</h3>
<ul dir="auto">
<li>Dubbo version: 2.7.4.1</li>
<li>Operating System version: macOS</li>
<li>Java version: 1.8</li>
</ul>
<h3 dir="auto">Steps to reproduce this issue</h3>
<ol dir="auto">
<li>使用 GenericService 进行泛化调用</li>
<li>提供者provider不可用</li>
<li>吞噬抛出的异常并循环继续尝试调用(不重启)</li>
</ol>
<p dir="auto">` ReferenceConfig reference = new ReferenceConfig<>();<br>
reference.setApplication(this.applicationConfig);<br>
reference.setRegistry(this.registryConfig);<br>
// 接口名<br>
reference.setInterface(interfaceClass);<br>
// 声明为泛化接口<br>
reference.setGeneric(true);<br>
//禁用重试,避免某些场景产生重复数据调用<br>
reference.setRetries(0);</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" ReferenceConfigCache cache = ReferenceConfigCache.getCache();
while (true) {
try {
GenericService genericService = cache.get(reference);
genericService.$invoke(methodName, paramClassPath, params);
Thread.sleep(10);
} catch (Exception e) {
e.printStackTrace();
}
}`"><pre class="notranslate"><code class="notranslate"> ReferenceConfigCache cache = ReferenceConfigCache.getCache();
while (true) {
try {
GenericService genericService = cache.get(reference);
genericService.$invoke(methodName, paramClassPath, params);
Thread.sleep(10);
} catch (Exception e) {
e.printStackTrace();
}
}`
</code></pre></div>
<p dir="auto">Pls. provide [GitHub address] to reproduce this issue.</p>
<h3 dir="auto">Expected Result</h3>
<p dir="auto">1,消费者成功注册;<br>
2,打印异常并继续尝试调用;<br>
3,消费者注册节点不增加;</p>
<h3 dir="auto">Actual Result</h3>
<p dir="auto">1,消费者成功注册;<br>
2,打印异常并且继续尝试调用;<br>
3,消费者注册节点随着尝试次数的增加而增加并且无上限;</p>
<p dir="auto">If there is an exception, please attach the exception trace:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Just put your stack trace here!"><pre class="notranslate"><code class="notranslate">Just put your stack trace here!
</code></pre></div> | 0 |
<p dir="auto">web-workers/worker/application_common.ts duplicates a lot of code from core/application_common.ts. It's primarily duplicating DI bindings. I talked to <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/vsavkin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/vsavkin">@vsavkin</a> about this today and the current plan is to move all the export all the bindings that the webworker needs to a separate file and import that file in both core/application_common.ts and web-workers/worker/application_common.ts</p> | <p dir="auto">Hello.<br>
I have the code <a href="http://plnkr.co/edit/PNMu9bYdcH8HUNQOSKTn" rel="nofollow">http://plnkr.co/edit/PNMu9bYdcH8HUNQOSKTn</a> on angular 1.x<br>
and I try to do the same on angular 2 - <a href="http://plnkr.co/edit/Yx51PogyCQXYE8bKM65l" rel="nofollow">http://plnkr.co/edit/Yx51PogyCQXYE8bKM65l</a><br>
but it doesn't work on angular2<br>
maybe I made mistake?</p> | 0 |
<p dir="auto">See the behavior on this fiddle when you click the button to change the state of a item: <a href="http://jsfiddle.net/oe7axeab/30/" rel="nofollow">http://jsfiddle.net/oe7axeab/30/</a></p> | <p dir="auto">I can't find a nice way for a parent to retrieve values from child models created with v-repeat, as shown at <a href="http://jsfiddle.net/bdaglish/W9xcP/13/" rel="nofollow">http://jsfiddle.net/bdaglish/W9xcP/13/</a> . All values are set initially, but subsequent changes in the input aren't reflected in the parent.</p>
<p dir="auto">Ideally, I'd like the first example to work, looping through a one set of keys, but binding to another object. As you can see, I have a temporary workaround, but it's not very satisfactory!</p> | 0 |
<p dir="auto">When targeting ES6 with the new typescript 1.5.3, the es6-promise definitions referenced in angular2.d.ts conflict with the promise definition built in to the es6 library definitions, giving a duplicate identifier error:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ tsc
/usr/local/lib/node_modules/typescript/bin/lib.es6.d.ts(4775,11): error TS2300: Duplicate identifier 'Promise'.
/usr/local/lib/node_modules/typescript/bin/lib.es6.d.ts(4855,13): error TS2300: Duplicate identifier 'Promise'.
typings/es6-promise/es6-promise.d.ts(11,15): error TS2300: Duplicate identifier 'Promise'.
typings/es6-promise/es6-promise.d.ts(42,16): error TS2300: Duplicate identifier 'Promise'."><pre class="notranslate"><code class="notranslate">$ tsc
/usr/local/lib/node_modules/typescript/bin/lib.es6.d.ts(4775,11): error TS2300: Duplicate identifier 'Promise'.
/usr/local/lib/node_modules/typescript/bin/lib.es6.d.ts(4855,13): error TS2300: Duplicate identifier 'Promise'.
typings/es6-promise/es6-promise.d.ts(11,15): error TS2300: Duplicate identifier 'Promise'.
typings/es6-promise/es6-promise.d.ts(42,16): error TS2300: Duplicate identifier 'Promise'.
</code></pre></div>
<p dir="auto">If I remove the reference to es6-promise.d.ts in angular2.d.ts, everything compiles fine. I don't know what the best way is to handle situations like this, but perhaps having a separate angular2-es6.d.ts would work. This would basically be the existing definitions, without the reference to es6-promise. angular2.d.ts would then just reference es6-promise and angular2-es6.</p> | <p dir="auto">Hi <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ericanderson/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ericanderson">@ericanderson</a></p>
<p dir="auto">I'm having many problems with <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commit/9b5329839558a78550bf078c3e5f323c2f0f3b86">this change</a> when used in practice:</p>
<h2 dir="auto">Problem 1: Go To Definition</h2>
<p dir="auto">When you press Go To Definition on a property of props or state, Typescript is not able to resolve it.</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="interface MyComponentProps {
name: string;
}
export abstract class MyComponent extends React.Component<MyComponentProps , void> {
myMethood() {
this.props.name; //<-- Go To definition in name
}
}"><pre class="notranslate"><span class="pl-k">interface</span> <span class="pl-smi">MyComponentProps</span> <span class="pl-kos">{</span>
<span class="pl-c1">name</span>: <span class="pl-smi">string</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">export</span> <span class="pl-k">abstract</span> <span class="pl-k">class</span> <span class="pl-smi">MyComponent</span> <span class="pl-k">extends</span> <span class="pl-smi">React</span><span class="pl-kos">.</span><span class="pl-c1">Component</span><span class="pl-kos"><</span><span class="pl-smi">MyComponentProps</span> <span class="pl-kos">,</span> <span class="pl-smi"><span class="pl-k">void</span></span><span class="pl-kos">></span> <span class="pl-kos">{</span>
<span class="pl-en">myMethood</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">props</span><span class="pl-kos">.</span><span class="pl-c1">name</span><span class="pl-kos">;</span> <span class="pl-c">//<-- Go To definition in name</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/720953/22306476/b6cf0942-e33f-11e6-857d-65753e636de7.png"><img src="https://cloud.githubusercontent.com/assets/720953/22306476/b6cf0942-e33f-11e6-857d-65753e636de7.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">Makes sense because the member is synthetically generated, but is annoying anyway.</p>
<h2 dir="auto">Problem 2: Hierarchies of components (Generic P with constraints)</h2>
<p dir="auto">More important, if you make abstract component like this:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="interface MyBaseProps {
onChange?: (val: any) => void;
}
export abstract class MyBase<P extends MyBaseProps> extends React.Component<P, void> {
myMethood() {
this.props.onChange!(2); //The type is S["onChange"] instead of (val: any) => void and so is not invocable.
}
}"><pre class="notranslate"><span class="pl-k">interface</span> <span class="pl-smi">MyBaseProps</span> <span class="pl-kos">{</span>
<span class="pl-c1">onChange</span>?: <span class="pl-kos">(</span><span class="pl-s1">val</span>: <span class="pl-smi">any</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-smi"><span class="pl-k">void</span></span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">export</span> <span class="pl-k">abstract</span> <span class="pl-k">class</span> <span class="pl-smi">MyBase</span><span class="pl-c1"><</span><span class="pl-smi">P</span> <span class="pl-k">extends</span> <span class="pl-smi">MyBaseProps</span><span class="pl-c1">></span> <span class="pl-k">extends</span> <span class="pl-smi">React</span><span class="pl-kos">.</span><span class="pl-c1">Component</span><span class="pl-kos"><</span><span class="pl-smi">P</span><span class="pl-kos">,</span> <span class="pl-smi"><span class="pl-k">void</span></span><span class="pl-kos">></span> <span class="pl-kos">{</span>
<span class="pl-en">myMethood</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">props</span><span class="pl-kos">.</span><span class="pl-c1">onChange</span><span class="pl-c1">!</span><span class="pl-kos">(</span><span class="pl-c1">2</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">//The type is S["onChange"] instead of (val: any) => void and so is not invocable. </span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">TS is able to show that there is a property onChange, but sometimes can not discover his type.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/720953/22306397/710d2ea2-e33f-11e6-902a-e1d93607d473.png"><img src="https://cloud.githubusercontent.com/assets/720953/22306397/710d2ea2-e33f-11e6-902a-e1d93607d473.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto"><strong>This is the most important change</strong> since if prevents me to have hierarchies of components that share common props and functionality. It looks like a problem in TS compiler but until it's fixed.</p>
<h2 dir="auto">Problem 3: Not so Readonly.</h2>
<p dir="auto">While I agree that this change captures well the functional intent of React, there are valid situations where you can modify the state imperatively, like in the constructor, and also if you change the state and call forceUpdate everithing works OK.</p>
<div class="highlight highlight-source-cs notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="this.state.name = "John";
this.forceUpdate(); //Ok as long as you don't setState afterwards, but calling setState also is annoying with the callback. "><pre class="notranslate"><span class="pl-k">this</span><span class="pl-kos">.</span>state<span class="pl-kos">.</span>name <span class="pl-c1">=</span> <span class="pl-s"><span class="pl-s">"</span>John<span class="pl-s">"</span></span><span class="pl-kos">;</span>
<span class="pl-k">this</span><span class="pl-kos">.</span><span class="pl-en">forceUpdate</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">//Ok as long as you don't setState afterwards, but calling setState also is annoying with the callback. </span></pre></div>
<p dir="auto">Is it recomended? No.<br>
Is it forbidden? Also not, otherwise forceUpdate won't exist.</p>
<p dir="auto">Of course you could cast the state to <code class="notranslate">S</code> (or <code class="notranslate">any</code>) and make the change, but if it's a common pattern gets cumbersome.</p>
<h2 dir="auto">Conclusion: Is it worth?</h2>
<p dir="auto">I feel sad that the new shiny feature of TS makes more problems than solutions in this case, but I honestly think this is the case here.</p>
<p dir="auto">On the other side, the change of <code class="notranslate">setState</code> is great 👍 , didn't know about <code class="notranslate">Pick<S,K></code>.</p> | 0 |
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="@inline function f(A, I)
@boundscheck checkbounds(A, I)
@inbounds A[I]
end
g(A, I) = @inbounds f(A, I)"><pre class="notranslate"><code class="notranslate">@inline function f(A, I)
@boundscheck checkbounds(A, I)
@inbounds A[I]
end
g(A, I) = @inbounds f(A, I)
</code></pre></div>
<p dir="auto">On <code class="notranslate">0.7-beta2</code> <code class="notranslate">@code_typed g(ones(1), 1)</code> will contain a <code class="notranslate">checkbounds</code> call.</p>
<p dir="auto">cc: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/mbauman/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mbauman">@mbauman</a></p> | <p dir="auto">It would be nice to be able to remove more dead code in the julia-level optimizer. Example case:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="julia> function f(A)
@inbounds for I in 1:length(A)
view(A, I)
end
end
f (generic function with 1 method)
julia> @code_typed f([1])
CodeInfo(
2 1 ── %1 = Base.arraylen(%%A)::Int64 │╻ length
│ %2 = Base.sle_int(1, %1)::Bool ││╻╷╷╷ Type
│ Base.sub_int(%1, 1) │││╻ unitrange_last
│ %4 = Base.ifelse(%2, %1, 0)::Int64 ││││
│ %5 = Base.slt_int(%4, 1)::Bool ││╻╷╷ isempty
└─── goto 3 if not %5 ││
2 ── goto 4 ││
3 ── goto 4 ││
4 ┄─ %9 = φ (2 => true, 3 => false)::Bool │
│ %10 = φ (3 => 1)::Int64 │
│ %11 = φ (3 => 1)::Int64 │
│ %12 = Base.not_int(%9)::Bool │
└─── goto 16 if not %12 │
5 ┄─ %14 = φ (4 => %10, 15 => %35)::Int64 │
│ %15 = φ (4 => %11, 15 => %36)::Int64 │
3 └─── goto 10 if not false │╻ view
6 ── %17 = Core.tuple(%14)::Tuple{Int64} ││
│ %18 = Base.arraysize(%%A, 1)::Int64 ││╻╷╷╷╷ checkbounds
│ %19 = Base.slt_int(%18, 0)::Bool │││╻╷╷╷ checkbounds
│ %20 = Base.ifelse(%19, 0, %18)::Int64 ││││┃││││││ eachindex
│ %21 = Base.sle_int(1, %14)::Bool │││││╻ <=
│ %22 = Base.sle_int(%14, %20)::Bool ││││││
│ %23 = Base.and_int(%21, %22)::Bool │││││╻ &
└─── goto 8 if not %23 │││
7 ── goto 9 │││
8 ── invoke Base.throw_boundserror(%%A::Array{Int64,1}, %17::Tuple{Int64})
└─── unreachable │││
9 ── nothing │
10 ┄ goto 11 │╻ view
11 ─ %30 = Base.:===(%15, %4)::Bool ││╻ ==
└─── goto 13 if not %30 ││
12 ─ goto 14 ││
13 ─ %33 = Base.add_int(%15, 1)::Int64 ││╻ +
└─── goto 14 │╻ iterate
14 ┄ %35 = φ (13 => %33)::Int64 │
│ %36 = φ (13 => %33)::Int64 │
│ %37 = φ (12 => true, 13 => false)::Bool │
│ %38 = Base.not_int(%37)::Bool │
└─── goto 16 if not %38 │
15 ─ goto 5 │
16 ┄ return nothing │
) => Nothing"><pre class="notranslate"><code class="notranslate">julia> function f(A)
@inbounds for I in 1:length(A)
view(A, I)
end
end
f (generic function with 1 method)
julia> @code_typed f([1])
CodeInfo(
2 1 ── %1 = Base.arraylen(%%A)::Int64 │╻ length
│ %2 = Base.sle_int(1, %1)::Bool ││╻╷╷╷ Type
│ Base.sub_int(%1, 1) │││╻ unitrange_last
│ %4 = Base.ifelse(%2, %1, 0)::Int64 ││││
│ %5 = Base.slt_int(%4, 1)::Bool ││╻╷╷ isempty
└─── goto 3 if not %5 ││
2 ── goto 4 ││
3 ── goto 4 ││
4 ┄─ %9 = φ (2 => true, 3 => false)::Bool │
│ %10 = φ (3 => 1)::Int64 │
│ %11 = φ (3 => 1)::Int64 │
│ %12 = Base.not_int(%9)::Bool │
└─── goto 16 if not %12 │
5 ┄─ %14 = φ (4 => %10, 15 => %35)::Int64 │
│ %15 = φ (4 => %11, 15 => %36)::Int64 │
3 └─── goto 10 if not false │╻ view
6 ── %17 = Core.tuple(%14)::Tuple{Int64} ││
│ %18 = Base.arraysize(%%A, 1)::Int64 ││╻╷╷╷╷ checkbounds
│ %19 = Base.slt_int(%18, 0)::Bool │││╻╷╷╷ checkbounds
│ %20 = Base.ifelse(%19, 0, %18)::Int64 ││││┃││││││ eachindex
│ %21 = Base.sle_int(1, %14)::Bool │││││╻ <=
│ %22 = Base.sle_int(%14, %20)::Bool ││││││
│ %23 = Base.and_int(%21, %22)::Bool │││││╻ &
└─── goto 8 if not %23 │││
7 ── goto 9 │││
8 ── invoke Base.throw_boundserror(%%A::Array{Int64,1}, %17::Tuple{Int64})
└─── unreachable │││
9 ── nothing │
10 ┄ goto 11 │╻ view
11 ─ %30 = Base.:===(%15, %4)::Bool ││╻ ==
└─── goto 13 if not %30 ││
12 ─ goto 14 ││
13 ─ %33 = Base.add_int(%15, 1)::Int64 ││╻ +
└─── goto 14 │╻ iterate
14 ┄ %35 = φ (13 => %33)::Int64 │
│ %36 = φ (13 => %33)::Int64 │
│ %37 = φ (12 => true, 13 => false)::Bool │
│ %38 = Base.not_int(%37)::Bool │
└─── goto 16 if not %38 │
15 ─ goto 5 │
16 ┄ return nothing │
) => Nothing
</code></pre></div>
<p dir="auto">In this IR there are a couple redundant basic blocks (consisting only of a goto to the next block). There is also unreachable bounds error code (<code class="notranslate">goto 10 if not false</code>). LLVM can remove this code very easily, but it would still be useful for us to remove it (1) to cut down stored IR size, (2) for inlining heuristics, and (3) to spend less time lowering to LLVM.</p> | 1 |
<p dir="auto"><strong>Neo4j Version:</strong> 2.3.1<br>
<strong>Operating System:</strong> Ubuntu 14.10</p>
<h3 dir="auto">Steps to reproduce</h3>
<p dir="auto">Creating a collection of collections, e.g.</p>
<p dir="auto"><code class="notranslate">Collect([TOINT(idn),STR(name),TOINT(status),TOINT(days_norm),TOINT(days_spent)]) as flowsteps</code></p>
<p dir="auto">and later on adding up corresponding items</p>
<p dir="auto"><code class="notranslate">REDUCE (x=0, i IN flowsteps | x + TOINT(STRING(i[3]))) as normP</code></p>
<p dir="auto">throws an error</p>
<p dir="auto"><code class="notranslate">Cypher error: Type mismatch: expected Float, Integer or String but was Any (line 33, column 57 (offset: 1271)) " REDUCE (x=0, i IN flowsteps | x + TOINT(TOSTRING(i[3]))) as normP</code></p>
<h3 dir="auto">Expected behavior</h3>
<p dir="auto">If I cast something WITH TOINT(), then this should work:</p>
<p dir="auto"><code class="notranslate">REDUCE (x=0, i IN flowsteps | x + i[3]) as normP</code></p>
<h3 dir="auto">Actual behavior</h3>
<p dir="auto">Only works with a workaround by TOINT(STR()), which is no longer works in 3.0, because STR() is no longer available.</p> | <p dir="auto">Hi,</p>
<p dir="auto">We coding a program for make an import of our sql database to neo4j. We use HTTP API and CSV import query for import all datas</p>
<p dir="auto">We have no probleme with MERGE on nodes but with MERGE on relationships take very very long time (take 15min just for MERGE 10 000 relations ...). We replaced it by CREATE command and it's really better faster but it's a problem because all relationships are duplicate ... and clear all of them with this command crash the server</p>
<p dir="auto">MATCH (s:Ticket)-[r:AskOn]-(t:Project)<br>
WITH s, t, TAIL (COLLECT (r)) as rr<br>
FOREACH (r IN rr | DELETE r)</p>
<p dir="auto">And more database is big and more time MERGE command take<br>
We have lots of data, few millions of relationship and nodes</p>
<p dir="auto">So what your recommandations ? We love neo4j but it's a real problem for us and we can't wait so much time to set up to date our neo4j database</p>
<p dir="auto">We also coded 3 process :</p>
<ul dir="auto">
<li>One for up to date neo database everytime that we have change in our sql database, but some time we have problem and some data missing ...</li>
<li>On for set up first time all data from sql database to neo database, and it's very very slow, we still not succeed to insert all data :(</li>
<li>On for set up to date the last week data of sql database to neo4j</li>
</ul>
<p dir="auto">Thanks you for your helps ans recommandations</p> | 0 |
<ul dir="auto">
<li>VSCode Version: 1.0.0</li>
<li>OS Version: Linux</li>
</ul>
<p dir="auto">Steps to Reproduce:</p>
<ol dir="auto">
<li>Smoke test (clone <a href="https://monacotools.visualstudio.com/DefaultCollection/Samples/_git/vscode-smoketest-express" rel="nofollow">https://monacotools.visualstudio.com/DefaultCollection/Samples/_git/vscode-smoketest-express</a>)</li>
<li>open bin/www</li>
<li>Show quick outline. Note that several entries are duplicated<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/6461412/14497738/197eff32-0198-11e6-93c8-173dca8eb027.png"><img src="https://cloud.githubusercontent.com/assets/6461412/14497738/197eff32-0198-11e6-93c8-173dca8eb027.png" alt="image" style="max-width: 100%;"></a></li>
</ol> | <p dir="auto">As far as I can tell, extensions can set a <code class="notranslate">LanguageConfiguration</code> object for a language with <code class="notranslate">languages.setLanguageConfiguration()</code>, but they can't get an existing one. This would be very useful for getting information about the language of the current document.</p> | 0 |
<p dir="auto">See the log below. A pod (created by a RC) failed to schedule several times. All of the failed attempts are visible along with the one that succeeded. RC's replicas is set to 1.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ kubectl get pods --all-namespaces
NAMESPACE NAME READY STATUS RESTARTS AGE
[...]
kube-system monitoring-heapster-v7-1xljv 1/1 Running 1 1m
kube-system monitoring-heapster-v7-czp8j 0/1 InsufficientFreeCPU 0 1m
kube-system monitoring-heapster-v7-iio5r 0/1 InsufficientFreeCPU 0 1m
kube-system monitoring-heapster-v7-r1ddh 0/1 InsufficientFreeCPU 0 1m"><pre class="notranslate"><code class="notranslate">$ kubectl get pods --all-namespaces
NAMESPACE NAME READY STATUS RESTARTS AGE
[...]
kube-system monitoring-heapster-v7-1xljv 1/1 Running 1 1m
kube-system monitoring-heapster-v7-czp8j 0/1 InsufficientFreeCPU 0 1m
kube-system monitoring-heapster-v7-iio5r 0/1 InsufficientFreeCPU 0 1m
kube-system monitoring-heapster-v7-r1ddh 0/1 InsufficientFreeCPU 0 1m
</code></pre></div>
<p dir="auto">ref: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="100051594" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/12476" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/12476/hovercard" href="https://github.com/kubernetes/kubernetes/issues/12476">#12476</a></p> | <p dir="auto"><strong>Is this a request for help?</strong> (If yes, you should use our troubleshooting guide and community support channels, see <a href="http://kubernetes.io/docs/troubleshooting/" rel="nofollow">http://kubernetes.io/docs/troubleshooting/</a>.): No</p>
<p dir="auto"><strong>What keywords did you search in Kubernetes issues before filing this one?</strong> (If you have found any duplicates, you should instead reply there.): kubernetes endpoint namespace unique name collision</p>
<hr>
<p dir="auto"><strong>Is this a BUG REPORT or FEATURE REQUEST?</strong> (choose one): Bug report</p>
<p dir="auto"><strong>Kubernetes version</strong> (use <code class="notranslate">kubectl version</code>):<br>
<code class="notranslate">Client Version: version.Info{Major:"1", Minor:"4", GitVersion:"v1.4.0", GitCommit:"a16c0a7f71a6f93c7e0f222d961f4675cd97a46b", GitTreeState:"clean", BuildDate:"2016-09-26T18:16:57Z", GoVersion:"go1.6.3", Compiler:"gc", Platform:"windows/amd64"}</code></p>
<p dir="auto"><code class="notranslate">Server Version: version.Info{Major:"1", Minor:"4", GitVersion:"v1.4.0", GitCommit:"a16c0a7f71a6f93c7e0f222d961f4675cd97a46b", GitTreeState:"clean", BuildDate:"1970-01-01T00:00:00Z", GoVersion:"go1.7.1", Compiler:"gc", Platform:"linux/amd64"}</code></p>
<p dir="auto"><code class="notranslate">minikube version: v0.11.0</code></p>
<p dir="auto"><strong>Environment</strong>:</p>
<ul dir="auto">
<li><strong>Cloud provider or hardware configuration</strong>: minikube</li>
<li><strong>OS</strong> (e.g. from /etc/os-release): windows</li>
<li><strong>Kernel</strong> (e.g. <code class="notranslate">uname -a</code>): minikube</li>
<li><strong>Install tools</strong>: minikube</li>
<li><strong>Others</strong>:</li>
</ul>
<p dir="auto"><strong>What happened</strong>:<br>
Tried to create two endpoints with the same name, in different namespaces. The first endpoint was created successfully within the first namespace. The second endpoint was not created in a second namespace with error <code class="notranslate">Error from server: error when creating "app-2/origin-endpoint.json": endpoints "origin" already exists</code></p>
<p dir="auto"><strong>What you expected to happen</strong>:<br>
The second endpoint should have been created in the second namespace</p>
<p dir="auto"><strong>How to reproduce it</strong> (as minimally and precisely as possible):<br>
Follow instructions here: <a href="http://kubernetes.io/docs/user-guide/services/#services-without-selectors" rel="nofollow">http://kubernetes.io/docs/user-guide/services/#services-without-selectors</a></p>
<ol dir="auto">
<li>Create two namespaces</li>
<li>Create first endpoint in first namespace</li>
<li>Create second endpoint in second namespace <- fails due to name collision</li>
</ol>
<p dir="auto"><strong>Anything else do we need to know</strong>:</p> | 0 |
<h1 dir="auto">Environment</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: 10.0.18975.0
Windows Terminal version: 0.5.2622.0"><pre lang="none" class="notranslate"><code class="notranslate">Windows build number: 10.0.18975.0
Windows Terminal version: 0.5.2622.0
</code></pre></div>
<h1 dir="auto">Steps to reproduce</h1>
<ol dir="auto">
<li>Run wt.exe to start an instance of Windows Terminal</li>
<li>Press Ctrl-t 4 or 5 times to open a few tabs (running PowerShell)</li>
<li>In each tab, run <code class="notranslate">dir c:\ -rec</code></li>
<li>Wait a few seconds, then click the 'x' on one of the tabs to close it while it is writing text to the console</li>
</ol>
<h1 dir="auto">Expected behavior</h1>
<p dir="auto">The tab closes.</p>
<h1 dir="auto">Actual behavior</h1>
<p dir="auto">The terminal crashes with an Access Violation due to a null pointer dereference in <code class="notranslate">TerminalControl!winrt::impl::consume_Windows_UI_Xaml_Controls_Primitives_IRangeBase<winrt::Windows::UI::Xaml::Controls::Primitives::ScrollBar>::Maximum</code></p>
<h1 dir="auto">Notes</h1>
<p dir="auto">I can reproduce this consistently. Let me know if you would like a memory dump.</p>
<p dir="auto">Here is a link to the feedback issue I opened:<br>
<a href="https://aka.ms/AA65up1" rel="nofollow">https://aka.ms/AA65up1</a></p>
<h1 dir="auto">Call stack</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="rax=0000d0e9f60fae3a rbx=00000000000002d6 rcx=0000000000000000
rdx=0000000000000000 rsi=00000000000002d6 rdi=000000000000001c
rip=00007ffd75b073d1 rsp=00000095845ff250 rbp=000001afa9234f70
r8=0000000010000000 r9=0000000000000000 r10=0000000000000000
r11=0000000000000246 r12=0000000000000000 r13=000000000000001c
r14=00007ffda8394d10 r15=0000000000000000
iopl=0 nv up ei pl zr na po nc
cs=0033 ss=002b ds=002b es=002b fs=0053 gs=002b efl=00010246
TerminalControl!winrt::impl::consume_Windows_UI_Xaml_Controls_Primitives_IRangeBase<winrt::Windows::UI::Xaml::Controls::Primitives::ScrollBar>::Maximum+0x51:
00007ffd`75b073d1 488b01 mov rax,qword ptr [rcx] ds:00000000`00000000=????????????????
Child-SP RetAddr Call Site
00 00000095`845ff250 00007ffd`75b1812c TerminalControl!winrt::impl::consume_Windows_UI_Xaml_Controls_Primitives_IRangeBase<winrt::Windows::UI::Xaml::Controls::Primitives::ScrollBar>::Maximum+0x51 [E:\BA\35\s\src\cascadia\TerminalControl\Generated Files\winrt\Windows.UI.Xaml.Controls.Primitives.h @ 2838]
01 (Inline Function) --------`-------- TerminalControl!winrt::Microsoft::Terminal::TerminalControl::implementation::TermControl::_ScrollbarUpdater+0x14 [E:\BA\35\s\src\cascadia\TerminalControl\TermControl.cpp @ 1373]
02 (Inline Function) --------`-------- TerminalControl!winrt::Microsoft::Terminal::TerminalControl::implementation::TermControl::_TerminalScrollPositionChanged::__l2::<lambda_d4673cfb40ab3bbddd63d78386fc20ac>::operator()+0x43 [E:\BA\35\s\src\cascadia\TerminalControl\TermControl.cpp @ 1396]
03 00000095`845ff2c0 00007ffd`9f91c471 TerminalControl!winrt::impl::delegate<winrt::Windows::UI::Core::DispatchedHandler,<lambda_d4673cfb40ab3bbddd63d78386fc20ac> >::Invoke+0x5c [E:\BA\35\s\src\cascadia\TerminalControl\Generated Files\winrt\windows.ui.core.h @ 1275]
04 (Inline Function) --------`-------- Windows_UI!Windows::UI::Core::CDispatcher::EnqueueAsyncWork::__l16::<lambda_59517943c03487243f9bea31c6c1a784>::operator()+0x67 [onecoreuap\windows\advcore\winrt\onecoreiwindow\corewindow\common\dispatcher.cpp @ 908]
05 00000095`845ff310 00007ffd`a8394d26 Windows_UI!Microsoft::WRL::Details::DelegateArgTraits<long (__cdecl Windows::System::IDispatcherQueueHandler::*)(void)>::DelegateInvokeHelper<Microsoft::WRL::Implements<Microsoft::WRL::RuntimeClassFlags<2>,Windows::System::IDispatcherQueueHandler,Microsoft::WRL::FtmBase>,<lambda_59517943c03487243f9bea31c6c1a784>,-1>::Invoke+0x71 [onecore\external\sdk\inc\wrl\event.h @ 245]
06 00000095`845ff340 00007ffd`a836423b CoreMessaging!Windows::System::DispatcherQueue::DeferInvokeCallback+0x16 [mincore\coreui\dev\dispatcherqueue\WrtDispatcherQueue.cpp @ 893]
07 00000095`845ff370 00007ffd`a8361d64 CoreMessaging!Microsoft__CoreUI__Dispatch__TimeoutHandler$CallbackThunk+0x11b [temp\42829c929effddb13f17f63c5ec49c58\Common__DllInterop.cpp @ 505]
08 (Inline Function) --------`-------- CoreMessaging!System::Action::Invoke+0x1a [mincore\cn\cnruntime\lib\fullstr\fre\objfre\amd64\CnRuntime\Common__Delegate.cpp @ 91]
09 00000095`845ff3f0 00007ffd`a83616fe CoreMessaging!Microsoft::CoreUI::Dispatch::DeferredCall::Callback_Dispatch+0x2c4 [mincore\CoreUI\Dev\System\Dispatch\DeferredCall.cs @ 62]
0a 00000095`845ff4b0 00007ffd`a8368d1a CoreMessaging!Microsoft::CoreUI::Dispatch::DeferredCallDispatcher::Callback_OnDispatch+0x15e [mincore\CoreUI\Dev\System\Dispatch\DeferredCallDispatcher.cs @ 337]
0b (Inline Function) --------`-------- CoreMessaging!Microsoft::CoreUI::Dispatch::Dispatcher::DispatchNextItem+0x685 [mincore\CoreUI\Dev\System\Dispatch\Dispatcher.cs @ 892]
0c (Inline Function) --------`-------- CoreMessaging!Microsoft::CoreUI::Dispatch::Dispatcher::Callback_DispatchLoop+0x7d7 [mincore\CoreUI\Dev\System\Dispatch\Dispatcher.cs @ 465]
0d 00000095`845ff520 00007ffd`a8367df6 CoreMessaging!Microsoft::CoreUI::Dispatch::EventLoop::Callback_RunCoreLoop+0xada [mincore\CoreUI\Dev\System\Dispatch\EventLoop.cs @ 779]
0e (Inline Function) --------`-------- CoreMessaging!Microsoft::CoreUI::Dispatch::UserAdapterBase::DrainCoreMessagingQueue+0x143 [mincore\CoreUI\Dev\System\Dispatch\UserAdapterBase.cs @ 674]
0f 00000095`845ff640 00007ffd`a83668d1 CoreMessaging!Microsoft::CoreUI::Dispatch::UserAdapter::OnUserDispatch+0x1d6 [mincore\CoreUI\Dev\System\Dispatch\minwin\UserAdapter.cs @ 224]
10 (Inline Function) --------`-------- CoreMessaging!Microsoft::CoreUI::Dispatch::UserAdapter::OnUserDispatchRaw+0x9c [mincore\CoreUI\Dev\System\Dispatch\minwin\UserAdapter.cs @ 153]
11 00000095`845ff730 00007ffd`a83666f3 CoreMessaging!Microsoft::CoreUI::Dispatch::UserAdapter_DoWork+0xf1 [mincore\CoreUI\Dev\System\Dispatch\minwin\UserAdapterN.cpp @ 424]
12 00000095`845ff810 00007ffd`ac99f903 CoreMessaging!Microsoft::CoreUI::Dispatch::UserAdapter_WindowProc+0xa3 [mincore\CoreUI\Dev\System\Dispatch\minwin\UserAdapterN.cpp @ 659]
13 00000095`845ff890 00007ffd`ac99f2ac USER32!UserCallWinProcCheckWow+0x4e3 [clientcore\windows\core\ntuser\client\clmsg.cxx @ 279]
14 00000095`845ffa20 00007ffd`ac9b4543 USER32!DispatchClientMessage+0x9c [clientcore\windows\core\ntuser\client\daytona\objfre\amd64\client.cxx @ 3444]
15 00000095`845ffa80 00007ffd`add30664 USER32!__fnDWORD+0x33 [onecoreuap\internal\windows\inc\ntuser\inc\ntcb.h @ 1214]
16 00000095`845ffae0 00007ffd`abc01104 ntdll!KiUserCallbackDispatcherContinue [minkernel\ntos\rtl\amd64\trampoln.asm @ 601]
17 00000095`845ffb68 00007ffd`ac9b54ee win32u!ZwUserGetMessage+0x14 [onecoreuap\windows\core\umode\moderncore\objfre\amd64\usrstubs.asm @ 190]
18 00000095`845ffb70 00007ff7`3bbe46c6 USER32!GetMessageW+0x2e [onecoreuap\internal\windows\inc\private\core\ntuser\client\ntcftxt.h @ 538]
19 00000095`845ffbd0 00007ff7`3bbecc42 WindowsTerminal!wWinMain+0x1c6 [E:\BA\35\s\src\cascadia\WindowsTerminal\main.cpp @ 150]
1a (Inline Function) --------`-------- WindowsTerminal!invoke_main+0x21 [d:\agent\_work\3\s\src\vctools\crt\vcstartup\src\startup\exe_common.inl @ 118]
1b 00000095`845ffce0 00007ffd`aced7034 WindowsTerminal!__scrt_common_main_seh+0x106 [d:\agent\_work\3\s\src\vctools\crt\vcstartup\src\startup\exe_common.inl @ 288]
1c 00000095`845ffd20 00007ffd`adcfb1b1 KERNEL32!BaseThreadInitThunk+0x14 [clientcore\base\win32\client\thread.c @ 64]
1d 00000095`845ffd50 00000000`00000000 ntdll!RtlUserThreadStart+0x21 [minkernel\ntdll\rtlstrt.c @ 1153] "><pre class="notranslate"><code class="notranslate">rax=0000d0e9f60fae3a rbx=00000000000002d6 rcx=0000000000000000
rdx=0000000000000000 rsi=00000000000002d6 rdi=000000000000001c
rip=00007ffd75b073d1 rsp=00000095845ff250 rbp=000001afa9234f70
r8=0000000010000000 r9=0000000000000000 r10=0000000000000000
r11=0000000000000246 r12=0000000000000000 r13=000000000000001c
r14=00007ffda8394d10 r15=0000000000000000
iopl=0 nv up ei pl zr na po nc
cs=0033 ss=002b ds=002b es=002b fs=0053 gs=002b efl=00010246
TerminalControl!winrt::impl::consume_Windows_UI_Xaml_Controls_Primitives_IRangeBase<winrt::Windows::UI::Xaml::Controls::Primitives::ScrollBar>::Maximum+0x51:
00007ffd`75b073d1 488b01 mov rax,qword ptr [rcx] ds:00000000`00000000=????????????????
Child-SP RetAddr Call Site
00 00000095`845ff250 00007ffd`75b1812c TerminalControl!winrt::impl::consume_Windows_UI_Xaml_Controls_Primitives_IRangeBase<winrt::Windows::UI::Xaml::Controls::Primitives::ScrollBar>::Maximum+0x51 [E:\BA\35\s\src\cascadia\TerminalControl\Generated Files\winrt\Windows.UI.Xaml.Controls.Primitives.h @ 2838]
01 (Inline Function) --------`-------- TerminalControl!winrt::Microsoft::Terminal::TerminalControl::implementation::TermControl::_ScrollbarUpdater+0x14 [E:\BA\35\s\src\cascadia\TerminalControl\TermControl.cpp @ 1373]
02 (Inline Function) --------`-------- TerminalControl!winrt::Microsoft::Terminal::TerminalControl::implementation::TermControl::_TerminalScrollPositionChanged::__l2::<lambda_d4673cfb40ab3bbddd63d78386fc20ac>::operator()+0x43 [E:\BA\35\s\src\cascadia\TerminalControl\TermControl.cpp @ 1396]
03 00000095`845ff2c0 00007ffd`9f91c471 TerminalControl!winrt::impl::delegate<winrt::Windows::UI::Core::DispatchedHandler,<lambda_d4673cfb40ab3bbddd63d78386fc20ac> >::Invoke+0x5c [E:\BA\35\s\src\cascadia\TerminalControl\Generated Files\winrt\windows.ui.core.h @ 1275]
04 (Inline Function) --------`-------- Windows_UI!Windows::UI::Core::CDispatcher::EnqueueAsyncWork::__l16::<lambda_59517943c03487243f9bea31c6c1a784>::operator()+0x67 [onecoreuap\windows\advcore\winrt\onecoreiwindow\corewindow\common\dispatcher.cpp @ 908]
05 00000095`845ff310 00007ffd`a8394d26 Windows_UI!Microsoft::WRL::Details::DelegateArgTraits<long (__cdecl Windows::System::IDispatcherQueueHandler::*)(void)>::DelegateInvokeHelper<Microsoft::WRL::Implements<Microsoft::WRL::RuntimeClassFlags<2>,Windows::System::IDispatcherQueueHandler,Microsoft::WRL::FtmBase>,<lambda_59517943c03487243f9bea31c6c1a784>,-1>::Invoke+0x71 [onecore\external\sdk\inc\wrl\event.h @ 245]
06 00000095`845ff340 00007ffd`a836423b CoreMessaging!Windows::System::DispatcherQueue::DeferInvokeCallback+0x16 [mincore\coreui\dev\dispatcherqueue\WrtDispatcherQueue.cpp @ 893]
07 00000095`845ff370 00007ffd`a8361d64 CoreMessaging!Microsoft__CoreUI__Dispatch__TimeoutHandler$CallbackThunk+0x11b [temp\42829c929effddb13f17f63c5ec49c58\Common__DllInterop.cpp @ 505]
08 (Inline Function) --------`-------- CoreMessaging!System::Action::Invoke+0x1a [mincore\cn\cnruntime\lib\fullstr\fre\objfre\amd64\CnRuntime\Common__Delegate.cpp @ 91]
09 00000095`845ff3f0 00007ffd`a83616fe CoreMessaging!Microsoft::CoreUI::Dispatch::DeferredCall::Callback_Dispatch+0x2c4 [mincore\CoreUI\Dev\System\Dispatch\DeferredCall.cs @ 62]
0a 00000095`845ff4b0 00007ffd`a8368d1a CoreMessaging!Microsoft::CoreUI::Dispatch::DeferredCallDispatcher::Callback_OnDispatch+0x15e [mincore\CoreUI\Dev\System\Dispatch\DeferredCallDispatcher.cs @ 337]
0b (Inline Function) --------`-------- CoreMessaging!Microsoft::CoreUI::Dispatch::Dispatcher::DispatchNextItem+0x685 [mincore\CoreUI\Dev\System\Dispatch\Dispatcher.cs @ 892]
0c (Inline Function) --------`-------- CoreMessaging!Microsoft::CoreUI::Dispatch::Dispatcher::Callback_DispatchLoop+0x7d7 [mincore\CoreUI\Dev\System\Dispatch\Dispatcher.cs @ 465]
0d 00000095`845ff520 00007ffd`a8367df6 CoreMessaging!Microsoft::CoreUI::Dispatch::EventLoop::Callback_RunCoreLoop+0xada [mincore\CoreUI\Dev\System\Dispatch\EventLoop.cs @ 779]
0e (Inline Function) --------`-------- CoreMessaging!Microsoft::CoreUI::Dispatch::UserAdapterBase::DrainCoreMessagingQueue+0x143 [mincore\CoreUI\Dev\System\Dispatch\UserAdapterBase.cs @ 674]
0f 00000095`845ff640 00007ffd`a83668d1 CoreMessaging!Microsoft::CoreUI::Dispatch::UserAdapter::OnUserDispatch+0x1d6 [mincore\CoreUI\Dev\System\Dispatch\minwin\UserAdapter.cs @ 224]
10 (Inline Function) --------`-------- CoreMessaging!Microsoft::CoreUI::Dispatch::UserAdapter::OnUserDispatchRaw+0x9c [mincore\CoreUI\Dev\System\Dispatch\minwin\UserAdapter.cs @ 153]
11 00000095`845ff730 00007ffd`a83666f3 CoreMessaging!Microsoft::CoreUI::Dispatch::UserAdapter_DoWork+0xf1 [mincore\CoreUI\Dev\System\Dispatch\minwin\UserAdapterN.cpp @ 424]
12 00000095`845ff810 00007ffd`ac99f903 CoreMessaging!Microsoft::CoreUI::Dispatch::UserAdapter_WindowProc+0xa3 [mincore\CoreUI\Dev\System\Dispatch\minwin\UserAdapterN.cpp @ 659]
13 00000095`845ff890 00007ffd`ac99f2ac USER32!UserCallWinProcCheckWow+0x4e3 [clientcore\windows\core\ntuser\client\clmsg.cxx @ 279]
14 00000095`845ffa20 00007ffd`ac9b4543 USER32!DispatchClientMessage+0x9c [clientcore\windows\core\ntuser\client\daytona\objfre\amd64\client.cxx @ 3444]
15 00000095`845ffa80 00007ffd`add30664 USER32!__fnDWORD+0x33 [onecoreuap\internal\windows\inc\ntuser\inc\ntcb.h @ 1214]
16 00000095`845ffae0 00007ffd`abc01104 ntdll!KiUserCallbackDispatcherContinue [minkernel\ntos\rtl\amd64\trampoln.asm @ 601]
17 00000095`845ffb68 00007ffd`ac9b54ee win32u!ZwUserGetMessage+0x14 [onecoreuap\windows\core\umode\moderncore\objfre\amd64\usrstubs.asm @ 190]
18 00000095`845ffb70 00007ff7`3bbe46c6 USER32!GetMessageW+0x2e [onecoreuap\internal\windows\inc\private\core\ntuser\client\ntcftxt.h @ 538]
19 00000095`845ffbd0 00007ff7`3bbecc42 WindowsTerminal!wWinMain+0x1c6 [E:\BA\35\s\src\cascadia\WindowsTerminal\main.cpp @ 150]
1a (Inline Function) --------`-------- WindowsTerminal!invoke_main+0x21 [d:\agent\_work\3\s\src\vctools\crt\vcstartup\src\startup\exe_common.inl @ 118]
1b 00000095`845ffce0 00007ffd`aced7034 WindowsTerminal!__scrt_common_main_seh+0x106 [d:\agent\_work\3\s\src\vctools\crt\vcstartup\src\startup\exe_common.inl @ 288]
1c 00000095`845ffd20 00007ffd`adcfb1b1 KERNEL32!BaseThreadInitThunk+0x14 [clientcore\base\win32\client\thread.c @ 64]
1d 00000095`845ffd50 00000000`00000000 ntdll!RtlUserThreadStart+0x21 [minkernel\ntdll\rtlstrt.c @ 1153]
</code></pre></div> | <p dir="auto">NOTE: This is different from, but may be related to, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="476508524" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/2230" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/2230/hovercard" href="https://github.com/microsoft/terminal/issues/2230">#2230</a></p>
<h1 dir="auto">Environment</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: Microsoft Windows [Version 10.0.18362.175]
Windows Terminal version: 0.3.2142.0"><pre lang="none" class="notranslate"><code class="notranslate">Windows build number: Microsoft Windows [Version 10.0.18362.175]
Windows Terminal version: 0.3.2142.0
</code></pre></div>
<h1 dir="auto">Steps to reproduce</h1>
<ol dir="auto">
<li>Open a new Windows Terminal instance</li>
<li>Open a second tab using either the "+" button</li>
<li>Close the new tab using CTRL+W, middle clicking the tab, or clicking the tab's "x"</li>
</ol>
<p dir="auto">Repeat steps 2-3 as fast as possible.</p>
<h1 dir="auto">Expected behavior</h1>
<p dir="auto">Tabs continue to open and close.</p>
<h1 dir="auto">Actual behavior</h1>
<p dir="auto"><strong>PowerShell</strong> - Most of the time, WT stops responding and interacting with it shows the "WindowsTerminal.exe is not responding" modal</p>
<p dir="auto"><strong>CMD / WSL</strong> - WT stops responding for about 1 second and then exits (also happens for PowerShell sometimes)</p> | 1 |
<p dir="auto"><code class="notranslate">matmul</code> (aka <code class="notranslate">@</code>) is extremely slow when one of the two arrays is the real or imaginary part of a complex array extracted with <code class="notranslate">.real</code> or <code class="notranslate">.imag</code>.</p>
<p dir="auto">This was already observed in <a href="https://github.com/numpy/numpy/issues/13229" data-hovercard-type="issue" data-hovercard-url="/numpy/numpy/issues/13229/hovercard">this issue</a>, but was not marked as a bug, while I think this should be.</p>
<h3 dir="auto">Reproducing code example:</h3>
<p dir="auto">Consider the following benchmark.</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import numpy as np
from timeit import repeat
A = np.random.rand(200, 1000) + 0j
B = np.random.rand(1000, 50000)
def time(stmt):
print(f'testing {stmt}')
res = repeat(stmt, globals={'A':A,'B':B, 'np':np}, number=1, repeat=10)
res = np.array(res)*1000
print(f'{np.mean(res):.0f} ms ± {np.std(res):.0f} ms per loop (mean ± std. dev. of 10 runs, 1 loop each)')
time('A @ B')
time('A.real @ B')
time('A.imag @ B')
time('A.astype(np.float64()) @ B')
time('A.real.astype(np.float64()) @ B')
time('A.real.copy() @ B')"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span>
<span class="pl-k">from</span> <span class="pl-s1">timeit</span> <span class="pl-k">import</span> <span class="pl-s1">repeat</span>
<span class="pl-v">A</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-s1">random</span>.<span class="pl-en">rand</span>(<span class="pl-c1">200</span>, <span class="pl-c1">1000</span>) <span class="pl-c1">+</span> <span class="pl-c1">0j</span>
<span class="pl-v">B</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-s1">random</span>.<span class="pl-en">rand</span>(<span class="pl-c1">1000</span>, <span class="pl-c1">50000</span>)
<span class="pl-k">def</span> <span class="pl-en">time</span>(<span class="pl-s1">stmt</span>):
<span class="pl-en">print</span>(<span class="pl-s">f'testing <span class="pl-s1"><span class="pl-kos">{</span><span class="pl-s1">stmt</span><span class="pl-kos">}</span></span>'</span>)
<span class="pl-s1">res</span> <span class="pl-c1">=</span> <span class="pl-en">repeat</span>(<span class="pl-s1">stmt</span>, <span class="pl-s1">globals</span><span class="pl-c1">=</span>{<span class="pl-s">'A'</span>:<span class="pl-v">A</span>,<span class="pl-s">'B'</span>:<span class="pl-v">B</span>, <span class="pl-s">'np'</span>:<span class="pl-s1">np</span>}, <span class="pl-s1">number</span><span class="pl-c1">=</span><span class="pl-c1">1</span>, <span class="pl-s1">repeat</span><span class="pl-c1">=</span><span class="pl-c1">10</span>)
<span class="pl-s1">res</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">array</span>(<span class="pl-s1">res</span>)<span class="pl-c1">*</span><span class="pl-c1">1000</span>
<span class="pl-en">print</span>(<span class="pl-s">f'<span class="pl-s1"><span class="pl-kos">{</span><span class="pl-s1">np</span>.<span class="pl-en">mean</span>(<span class="pl-s1">res</span>):.0f<span class="pl-kos">}</span></span> ms ± <span class="pl-s1"><span class="pl-kos">{</span><span class="pl-s1">np</span>.<span class="pl-en">std</span>(<span class="pl-s1">res</span>):.0f<span class="pl-kos">}</span></span> ms per loop (mean ± std. dev. of 10 runs, 1 loop each)'</span>)
<span class="pl-en">time</span>(<span class="pl-s">'A @ B'</span>)
<span class="pl-en">time</span>(<span class="pl-s">'A.real @ B'</span>)
<span class="pl-en">time</span>(<span class="pl-s">'A.imag @ B'</span>)
<span class="pl-en">time</span>(<span class="pl-s">'A.astype(np.float64()) @ B'</span>)
<span class="pl-en">time</span>(<span class="pl-s">'A.real.astype(np.float64()) @ B'</span>)
<span class="pl-en">time</span>(<span class="pl-s">'A.real.copy() @ B'</span>)</pre></div>
<p dir="auto">On my PC the results are:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="testing A @ B
1046 ms ± 73 ms per loop (mean ± std. dev. of 10 runs, 1 loop each)
testing A.real @ B
21980 ms ± 4978 ms per loop (mean ± std. dev. of 10 runs, 1 loop each)
testing A.imag @ B
18140 ms ± 970 ms per loop (mean ± std. dev. of 10 runs, 1 loop each)
testing A.astype(np.float64()) @ B
<string>:6: ComplexWarning: Casting complex values to real discards the imaginary part
161 ms ± 16 ms per loop (mean ± std. dev. of 10 runs, 1 loop each)
testing A.real.astype(np.float64()) @ B
166 ms ± 12 ms per loop (mean ± std. dev. of 10 runs, 1 loop each)
testing A.real.copy() @ B
150 ms ± 11 ms per loop (mean ± std. dev. of 10 runs, 1 loop each)"><pre class="notranslate"><code class="notranslate">testing A @ B
1046 ms ± 73 ms per loop (mean ± std. dev. of 10 runs, 1 loop each)
testing A.real @ B
21980 ms ± 4978 ms per loop (mean ± std. dev. of 10 runs, 1 loop each)
testing A.imag @ B
18140 ms ± 970 ms per loop (mean ± std. dev. of 10 runs, 1 loop each)
testing A.astype(np.float64()) @ B
<string>:6: ComplexWarning: Casting complex values to real discards the imaginary part
161 ms ± 16 ms per loop (mean ± std. dev. of 10 runs, 1 loop each)
testing A.real.astype(np.float64()) @ B
166 ms ± 12 ms per loop (mean ± std. dev. of 10 runs, 1 loop each)
testing A.real.copy() @ B
150 ms ± 11 ms per loop (mean ± std. dev. of 10 runs, 1 loop each)
</code></pre></div>
<p dir="auto">Note how the most trivial/elegant/obvious solution <code class="notranslate">A.real @ B</code> (and <code class="notranslate">A.imag @ B</code> depending on what you have to do) is 120 times slower than <code class="notranslate">A.real.copy() @ B</code></p>
<p dir="auto">Also <code class="notranslate">A@B</code> is much slower, but I suspect this has to be with the fact that in this case <code class="notranslate">A</code> is complex bringing <code class="notranslate">matmul</code> on a different path, even if <code class="notranslate">A.imag</code> is all 0.</p>
<h3 dir="auto">NumPy/Python version information:</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import sys, numpy; print(numpy.__version__, sys.version)
1.18.1 3.7.4 (default, Aug 9 2019, 18:34:13) [MSC v.1915 64 bit (AMD64)]"><pre class="notranslate"><code class="notranslate">import sys, numpy; print(numpy.__version__, sys.version)
1.18.1 3.7.4 (default, Aug 9 2019, 18:34:13) [MSC v.1915 64 bit (AMD64)]
</code></pre></div> | <h3 dir="auto">Describe the issue:</h3>
<p dir="auto">Hi there,</p>
<p dir="auto">Let me go straight to the point. I have a list of arrays which I want to apply np.argsort() to. I was finding wrong answers using the <code class="notranslate">axis</code> option, so I tried to debug it with a simple loop, printing everything.</p>
<p dir="auto">The results clearly don't match expectations in some rows, and frankly it's very weird. I am pasting the code (and output in a comment) below.</p>
<p dir="auto">Thanks in advance.</p>
<h3 dir="auto">Reproduce the code example:</h3>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="mat = np.array([[0.00514059, 0.00506887, 0.00574913, 0.00531327, 0.00518162],
[0.00494017, 0.00489627, 0.00566709, 0.00454714, 0.00499841],
[0.00493342, 0.00488984, 0.00564926, 0.00505881, 0.00494269],
[0.00491196, 0.00488021, 0.00528805, 0.00511658, 0.00481696],
[0.00487965, 0.00483828, 0.00538671, 0.004878 , 0.00493741]])
for m in mat:
print(m)
print(np.argsort(m)
'''
[0.00514059 0.00506887 0.00574913 0.00531327 0.00518162]
[1 0 4 3 2]
[0.00494017 0.00489627 0.00566709 0.00454714 0.00499841]
[3 1 0 4 2]
[0.00493342 0.00488984 0.00564926 0.00505881 0.00494269]
[1 0 4 3 2]
[0.00491196 0.00488021 0.00528805 0.00511658 0.00481696]
[4 1 0 3 2]
[0.00487965 0.00483828 0.00538671 0.004878 0.00493741]
[1 3 0 4 2]
'''"><pre class="notranslate"><span class="pl-s1">mat</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">array</span>([[<span class="pl-c1">0.00514059</span>, <span class="pl-c1">0.00506887</span>, <span class="pl-c1">0.00574913</span>, <span class="pl-c1">0.00531327</span>, <span class="pl-c1">0.00518162</span>],
[<span class="pl-c1">0.00494017</span>, <span class="pl-c1">0.00489627</span>, <span class="pl-c1">0.00566709</span>, <span class="pl-c1">0.00454714</span>, <span class="pl-c1">0.00499841</span>],
[<span class="pl-c1">0.00493342</span>, <span class="pl-c1">0.00488984</span>, <span class="pl-c1">0.00564926</span>, <span class="pl-c1">0.00505881</span>, <span class="pl-c1">0.00494269</span>],
[<span class="pl-c1">0.00491196</span>, <span class="pl-c1">0.00488021</span>, <span class="pl-c1">0.00528805</span>, <span class="pl-c1">0.00511658</span>, <span class="pl-c1">0.00481696</span>],
[<span class="pl-c1">0.00487965</span>, <span class="pl-c1">0.00483828</span>, <span class="pl-c1">0.00538671</span>, <span class="pl-c1">0.004878</span> , <span class="pl-c1">0.00493741</span>]])
<span class="pl-k">for</span> <span class="pl-s1">m</span> <span class="pl-c1">in</span> <span class="pl-s1">mat</span>:
<span class="pl-en">print</span>(<span class="pl-s1">m</span>)
<span class="pl-s1">print</span>(<span class="pl-s1">np</span>.<span class="pl-en">argsort</span>(<span class="pl-s1">m</span>)
<span class="pl-s">'''</span>
<span class="pl-s">[0.00514059 0.00506887 0.00574913 0.00531327 0.00518162]</span>
<span class="pl-s">[1 0 4 3 2]</span>
<span class="pl-s">[0.00494017 0.00489627 0.00566709 0.00454714 0.00499841]</span>
<span class="pl-s">[3 1 0 4 2]</span>
<span class="pl-s">[0.00493342 0.00488984 0.00564926 0.00505881 0.00494269]</span>
<span class="pl-s">[1 0 4 3 2]</span>
<span class="pl-s">[0.00491196 0.00488021 0.00528805 0.00511658 0.00481696]</span>
<span class="pl-s">[4 1 0 3 2]</span>
<span class="pl-s">[0.00487965 0.00483828 0.00538671 0.004878 0.00493741]</span>
<span class="pl-s">[1 3 0 4 2]</span>
<span class="pl-s">'''</span></pre></div>
<h3 dir="auto">Error message:</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">NumPy/Python version information:</h3>
<p dir="auto">1.20.3 3.9.7 (default, Aug 31 2021, 13:28:12)<br>
[GCC 11.1.0]</p> | 0 |
<p dir="auto">Describe what you were doing when the bug occurred:</p>
<ol dir="auto">
<li>Went from Flamegraph to the ranked view.<br>
This doesn't reproduce consistently</li>
</ol>
<hr>
<h2 dir="auto">Please do not remove the text below this line</h2>
<p dir="auto">DevTools version: 4.2.1-3816ae7c3</p>
<p dir="auto">Call stack: at chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:157108<br>
at Map.forEach ()<br>
at commitIndex (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:157054)<br>
at e.getRankedChartData (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:157577)<br>
at vl (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:314907)<br>
at gi (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:32:59907)<br>
at jl (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:32:107381)<br>
at Lc (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:32:92715)<br>
at Pc (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:32:92640)<br>
at wc (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:32:89544)</p>
<p dir="auto">Component stack: in vl<br>
in div<br>
in div<br>
in div<br>
in wo<br>
in Unknown<br>
in n<br>
in Unknown<br>
in div<br>
in div<br>
in Li<br>
in $e<br>
in dn<br>
in Ca<br>
in Pc</p> | <p dir="auto">Describe what you were doing when the bug occurred:</p>
<ol dir="auto">
<li>Recording with the Profiler</li>
<li>Clicking on the "Ranked Chart"</li>
</ol>
<hr>
<h2 dir="auto">Please do not remove the text below this line</h2>
<p dir="auto">DevTools version: 4.2.1-3816ae7c3</p>
<p dir="auto">Call stack: at chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:157108<br>
at Map.forEach ()<br>
at commitIndex (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:157054)<br>
at e.getRankedChartData (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:157577)<br>
at vl (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:314907)<br>
at gi (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:32:59907)<br>
at el (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:32:68139)<br>
at jl (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:32:108547)<br>
at Lc (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:32:92715)<br>
at Pc (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:32:92640)</p>
<p dir="auto">Component stack: in vl<br>
in div<br>
in div<br>
in div<br>
in wo<br>
in Unknown<br>
in n<br>
in Unknown<br>
in div<br>
in div<br>
in Li<br>
in $e<br>
in dn<br>
in Ca<br>
in Pc</p> | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.