Skip to content
#

Iris

iris logo

Iris is a free, open source, cross platform backend web framework intended for the development of modern web applications.

Here are 409 public repositories matching this topic...

rcomer
rcomer commented Nov 12, 2021

🐛 Bug Report

If the scalar coord passed to iris.util.new_axis is already a dimension coordinate, an anonymous new dimension is created.

How To Reproduce

import iris
import iris.cube

print(iris.__version__)

cube = iris.cube.Cube(1)
coord = iris.coords.DimCoord(1, long_name="spam")
cube.add_aux_coord(coord)
Type: Bug New: Issue Good First Issue
neffos
baa-god
baa-god commented May 12, 2020

I want to do something when closing, or interrupting the client connection, such as cleaning up. I call conn.Close() on ws.OnConnect{} without triggering ws.OnDisconnect{}. what should I do?

package main

import (
    "fmt"
    "github.com/kataras/iris/v12"
    "github.com/kataras/iris/v12/websocket"
    "github.com/kataras/neffos"
)

func main() {
    app := iris.Default
enhancement good first issue

Created by Gerasimos Maropoulos

Released March 2016

Latest release about 1 month ago

Repository
kataras/iris
Website
iris-go.com

Related Topics

framework go