<!-- 
RSS generated by JIRA (9.7.1#970001-sha1:2222b88b221c4928ef0de3161136cc90c8356a66) at Thu Feb 08 08:34:58 UTC 2024

It is possible to restrict the fields that are returned in this document by specifying the 'field' parameter in your request.
For example, to request only the issue key and summary append 'field=key&field=summary' to the URL of your request.
-->
<rss version="0.92" >
<channel>
    <title>MongoDB Jira</title>
    <link>https://jira.mongodb.org</link>
    <description>This file is an XML representation of an issue</description>
    <language>en-us</language>    <build-info>
        <version>9.7.1</version>
        <build-number>970001</build-number>
        <build-date>13-04-2023</build-date>
    </build-info>


<item>
            <title>[GODRIVER-786] Panic during Disconnect()</title>
                <link>https://jira.mongodb.org/browse/GODRIVER-786</link>
                <project id="14289" key="GODRIVER">Go Driver</project>
                    <description>&lt;p&gt;When invoking defer client.Disconnect(nil), I get this panic:&lt;/p&gt;

&lt;p/&gt;
&lt;div id=&quot;syntaxplugin&quot; class=&quot;syntaxplugin&quot; style=&quot;border: 1px dashed #bbb; border-radius: 5px !important; overflow: auto; max-height: 30em;&quot;&gt;
&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot; width=&quot;100%&quot; style=&quot;font-size: 1em; line-height: 1.4em !important; font-weight: normal; font-style: normal; color: black;&quot;&gt;
		&lt;tbody &gt;
				&lt;tr id=&quot;syntaxplugin_code_and_gutter&quot;&gt;
						&lt;td  style=&quot; line-height: 1.4em !important; padding: 0em; vertical-align: top;&quot;&gt;
					&lt;pre style=&quot;font-size: 1em; margin: 0 10px;  margin-top: 10px;   width: auto; padding: 0;&quot;&gt;&lt;span style=&quot;color: black; font-family: &apos;Consolas&apos;, &apos;Bitstream Vera Sans Mono&apos;, &apos;Courier New&apos;, Courier, monospace !important;&quot;&gt;panic: runtime error: invalid memory address or nil pointer dereference[signal SIGSEGV: segmentation violation code=0x1 addr=0x20 pc=0x137641e]&lt;/span&gt;&lt;/pre&gt;
			&lt;/td&gt;
		&lt;/tr&gt;
				&lt;tr id=&quot;syntaxplugin_code_and_gutter&quot;&gt;
						&lt;td  style=&quot; line-height: 1.4em !important; padding: 0em; vertical-align: top;&quot;&gt;
					&lt;pre style=&quot;font-size: 1em; margin: 0 10px;   width: auto; padding: 0;&quot;&gt;&lt;span style=&quot;color: black; font-family: &apos;Consolas&apos;, &apos;Bitstream Vera Sans Mono&apos;, &apos;Courier New&apos;, Courier, monospace !important;&quot;&gt;goroutine 1 [running]:github.com/mongodb/mongo-go-driver/x/mongo/driver/topology.(*Topology).selectServer(0xc0000cee60, 0x0, 0x0, 0xc000091860, 0x15c92a0, 0xc0001b28d0, 0xc000091800, 0x1886780, 0xbf0beda82116f280, 0xc0000b85f8, ...) /Users/fgm/src/go/src/github.com/mongodb/mongo-go-driver/x/mongo/driver/topology/topology.go:303 +0x1aegithub.com/mongodb/mongo-go-driver/x/mongo/driver/topology.(*Topology).SelectServer(0xc0000cee60, 0x0, 0x0, 0x15c92a0, 0xc0001b28d0, 0x0, 0x0, 0x0) /Users/fgm/src/go/src/github.com/mongodb/mongo-go-driver/x/mongo/driver/topology/topology.go:252 +0x12bgithub.com/mongodb/mongo-go-driver/x/mongo/driver.EndSessions(0x0, 0x0, 0xc0000c0800, 0x18a3f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /Users/fgm/src/go/src/github.com/mongodb/mongo-go-driver/x/mongo/driver/end_sessions.go:27 +0xa2github.com/mongodb/mongo-go-driver/mongo.(*Client).endSessions(0xc000156500, 0x0, 0x0) /Users/fgm/src/go/src/github.com/mongodb/mongo-go-driver/mongo/client.go:170 +0x134github.com/mongodb/mongo-go-driver/mongo.(*Client).Disconnect(0xc000156500, 0x0, 0x0, 0xc0001bcec0, 0xc00011df60) /Users/fgm/src/go/src/github.com/mongodb/mongo-go-driver/mongo/client.go:103 +0x43main.close(0xc000156500) /Users/fgm/src/go/src/code.osinet.fr/fgm/go__course__exercises/mongodb_official/mongodb.go:90 +0x33main.main() /Users/fgm/src/go/src/code.osinet.fr/fgm/go__course__exercises/mongodb_official/mongodb.go:105 +0x99&lt;/span&gt;&lt;/pre&gt;
			&lt;/td&gt;
		&lt;/tr&gt;
				&lt;tr id=&quot;syntaxplugin_code_and_gutter&quot;&gt;
						&lt;td  style=&quot; line-height: 1.4em !important; padding: 0em; vertical-align: top;&quot;&gt;
					&lt;pre style=&quot;font-size: 1em; margin: 0 10px;   margin-bottom: 10px;  width: auto; padding: 0;&quot;&gt;&lt;span style=&quot;color: black; font-family: &apos;Consolas&apos;, &apos;Bitstream Vera Sans Mono&apos;, &apos;Courier New&apos;, Courier, monospace !important;&quot;&gt;Process finished with exit code 2&lt;/span&gt;&lt;/pre&gt;
			&lt;/td&gt;
		&lt;/tr&gt;
			&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;p/&gt;


&lt;p&gt;The issue can be fixed by calling &lt;tt&gt;client.Disconnect(context.Background())&lt;/tt&gt; instead, but this feel like an error, and @craig wilson sait to file it here.&lt;/p&gt;</description>
                <environment>macOS Mojave, Go 1.11.5</environment>
        <key id="679002">GODRIVER-786</key>
            <summary>Panic during Disconnect()</summary>
                <type id="1" iconUrl="https://jira.mongodb.org/secure/viewavatar?size=xsmall&amp;avatarId=14703&amp;avatarType=issuetype">Bug</type>
                                            <priority id="3" iconUrl="https://jira.mongodb.org/images/icons/priorities/major.svg">Major - P3</priority>
                        <status id="6" iconUrl="https://jira.mongodb.org/images/icons/statuses/closed.png" description="The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.">Closed</status>
                    <statusCategory id="3" key="done" colorName="success"/>
                                    <resolution id="3">Duplicate</resolution>
                                        <assignee username="-1">Unassigned</assignee>
                                    <reporter username="fgm@osinet.fr">Fr&#233;d&#233;ric G. MARAND</reporter>
                        <labels>
                    </labels>
                <created>Mon, 28 Jan 2019 17:19:53 +0000</created>
                <updated>Fri, 7 Apr 2023 14:34:10 +0000</updated>
                            <resolved>Mon, 28 Jan 2019 21:19:38 +0000</resolved>
                                                                    <component>Connections</component>
                                        <votes>0</votes>
                                    <watches>1</watches>
                                                                                                                    <issuelinks>
                            <issuelinktype id="10010">
                    <name>Duplicate</name>
                                            <outwardlinks description="duplicates">
                                        <issuelink>
            <issuekey id="672880">GODRIVER-767</issuekey>
        </issuelink>
                            </outwardlinks>
                                                        </issuelinktype>
                    </issuelinks>
                <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                                                                                                                                                                                                                                                                                                                                                <customfield id="customfield_15850" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <customfield id="customfield_12550" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>2|huabj3:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10558" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>9223372036854775807</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            </customfields>
    </item>
</channel>
</rss>