Skip to content
#

event-management

Here are 317 public repositories matching this topic...

whytewolf
whytewolf commented Apr 12, 2022

Description

file.replace with backslash_literal throwing the following traceback.

Traceback (most recent call last):
  File "/usr/lib/python3/dist-packages/salt/cli/caller.py", line 218, in call
    ret["return"] = self.minion.executors[fname](
  File "/usr/lib/python3/dist-packages/salt/loader/lazy.py", line 149, in __call__
    return self.loader.run(run_func, *args, **kwargs
Bug severity-medium help-wanted good first issue
RelicOfTesla
RelicOfTesla commented Mar 24, 2021
func makeFn(a int) event.ListenerFunc {
	return func(e event.Event) error {
		fmt.Println(a)
		return nil
	}
}
func main() {
	evBus := event.NewManager("")
	f1 := makeFn(11)
	evBus.On("evt1", f1)
	f2 := makeFn(22)
	evBus.On("evt1", f2)
	evBus.RemoveListener("evt1", f1) // DON'T REMOVE ALL !!!
	evBus.MustFire("evt1", event.M{"arg0": "val0", "arg1": "val1"})
}
bug good first issue
kuraobi
kuraobi commented Nov 8, 2019

Current Behavior

CS fixer is locked to v2.14 in composer.lock, but the CI uses the latest v2.16 which has updated rules for @Symfony. These now include for example no_superfluous_phpdoc_tags and ordered_imports (keradus/PHP-CS-Fixer@a0df282).

How to reproduce scenario

Submit any PR that is not compliant with th

enhancement good first issue

Improve this page

Add a description, image, and links to the event-management topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the event-management topic, visit your repo's landing page and select "manage topics."

Learn more